Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x0B9EaAaa...a889a08d7 |
0.17289164991089152 Eth
Nonce: 2
|
0.07020246591089152 Eth
Nonce: 3
| 0.102689184 | ||
0x158F3A8D...7Ecef0AD4 | (GameFlipWallet) | 4,620.281985863687127846 Eth | 4,620.381985863687127846 Eth | 0.1 | |
0x3a1Bda28...20F79BcD3 | |||||
0x6E3Bc8F5...2eB5E37F5 | (GameFlip: Token Sale) | ||||
0x829BD824...93333A830
Miner
| (F2Pool Old) | 3,956.968732067589035767 Eth | 3,956.971421251589035767 Eth | 0.002689184 |
Execution Trace
[Crowdsale (ln:79)]
buyTokens[Crowdsale (ln:80)]
validPurchase[Crowdsale (ln:86)]
mul[Crowdsale (ln:91)]
add[Crowdsale (ln:94)]
mint[Crowdsale (ln:96)]
TokenPurchase[Crowdsale (ln:97)]
forwardFunds[Crowdsale (ln:99)]
transfer[Crowdsale (ln:105)]
File 1 of 3: MainSale
File 2 of 3: FlipToken
File 3 of 3: MultiSigWalletWithDailyLimit
12345678910111213141516pragma 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 0uint256 c = a / b;// assert(a == b * c + a % b); // There is no case in which this doesn't holdreturn c;}
File 2 of 3: FlipToken
12345678910111213141516pragma 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 0uint256 c = a / b;// assert(a == b * c + a % b); // There is no case in which this doesn't holdreturn c;}
File 3 of 3: MultiSigWalletWithDailyLimit
12345678910111213141516pragma 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);