ETH Price: $2,988.97 (+7.05%)

Transaction Decoder

Block:
4795474 at Dec-25-2017 04:26:30 PM +UTC
Transaction Fee:
0.002689184 ETH $8.04
Gas Used:
84,037 Gas / 32 Gwei

Emitted Events:

4 FlipToken.Mint( to=[Sender] 0x0b9eaaaa27169fed6da1ca23798a4d9a889a08d7, amount=23000000000000000000 )
5 FlipToken.Transfer( from=0x0000000000000000000000000000000000000000, to=[Sender] 0x0b9eaaaa27169fed6da1ca23798a4d9a889a08d7, value=23000000000000000000 )
6 MainSale.TokenPurchase( purchaser=[Sender] 0x0b9eaaaa27169fed6da1ca23798a4d9a889a08d7, beneficiary=[Sender] 0x0b9eaaaa27169fed6da1ca23798a4d9a889a08d7, value=100000000000000000, amount=23000000000000000000 )
7 MultiSigWalletWithDailyLimit.Deposit( sender=[Receiver] MainSale, value=100000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x0B9EaAaa...a889a08d7
0.17289164991089152 Eth
Nonce: 2
0.07020246591089152 Eth
Nonce: 3
0.102689184
0x158F3A8D...7Ecef0AD4
(GameFlipWallet)
4,620.281985863687127846 Eth4,620.381985863687127846 Eth0.1
0x3a1Bda28...20F79BcD3
0x6E3Bc8F5...2eB5E37F5
(GameFlip: Token Sale)
(F2Pool Old)
3,956.968732067589035767 Eth3,956.971421251589035767 Eth0.002689184

Execution Trace

ETH 0.1 MainSale.CALL( )
  • FlipToken.CALL( )
  • FlipToken.CALL( )
  • FlipToken.mint( _to=0x0B9EaAaa27169Fed6DA1Ca23798A4D9a889a08d7, _amount=23000000000000000000 ) => ( True )
  • ETH 0.1 MultiSigWalletWithDailyLimit.CALL( )
    File 1 of 3: MainSale
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    pragma solidity ^0.4.15;
    library SafeMath {
    function mul(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
    }
    function div(uint256 a, uint256 b) internal constant returns (uint256) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return c;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 3: FlipToken
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    pragma solidity ^0.4.15;
    library SafeMath {
    function mul(uint256 a, uint256 b) internal constant returns (uint256) {
    uint256 c = a * b;
    assert(a == 0 || c / a == b);
    return c;
    }
    function div(uint256 a, uint256 b) internal constant returns (uint256) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return c;
    }
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 3 of 3: MultiSigWalletWithDailyLimit
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    pragma solidity 0.4.4;
    /// @title Multisignature wallet - Allows multiple parties to agree on transactions before execution.
    /// @author Stefan George - <stefan.george@consensys.net>
    contract MultiSigWallet {
    uint constant public MAX_OWNER_COUNT = 50;
    event Confirmation(address indexed sender, uint indexed transactionId);
    event Revocation(address indexed sender, uint indexed transactionId);
    event Submission(uint indexed transactionId);
    event Execution(uint indexed transactionId);
    event ExecutionFailure(uint indexed transactionId);
    event Deposit(address indexed sender, uint value);
    event OwnerAddition(address indexed owner);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX