Transaction Hash:
Block:
7529563 at Apr-08-2019 08:18:30 PM +UTC
Transaction Fee:
0.00018692 ETH
$0.48
Gas Used:
37,384 Gas / 5 Gwei
Emitted Events:
43 |
Token.Transfer( from=[Sender] 0xff769076f946ae0015ae6009615f2e833710d4f4, to=0x908C964AEa358F807dD58328eD9b1B80272Fa7d6, value=50000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x61D0407E...9c1472da6 | |||||
0x829BD824...93333A830
Miner
| (F2Pool Old) | 4,625.540737111161526225 Eth | 4,625.540924031161526225 Eth | 0.00018692 | |
0xFf769076...33710D4f4 |
0.000469629 Eth
Nonce: 35
|
0.000282709 Eth
Nonce: 36
| 0.00018692 |
Execution Trace
Token.transfer( _to=0x908C964AEa358F807dD58328eD9b1B80272Fa7d6, _value=50000000000000000000 )
transfer[Token (ln:82)]
revert[Token (ln:83)]
revert[Token (ln:84)]
revert[Token (ln:85)]
sub[Token (ln:86)]
add[Token (ln:87)]
Transfer[Token (ln:88)]
1234567891011121314151617181920212223242526pragma solidity ^ 0.4.15;/***library name : SafeMath*purpose : be the library for the smart contract for the swap between the godz and ether*goal : to achieve the secure basic math operations*/library SafeMath {/*function name : mul*//*purpose : be the funcion for safe multiplicate*/function mul(uint256 a, uint256 b) internal constant returns (uint256) {uint256 c = a * b;/*assert(a == 0 || c / a == b);*/return c;}/*function name : div*//*purpose : be the funcion for safe division*/function div(uint256 a, uint256 b) internal constant returns (uint256) {uint256 c = a / b;return c;}/*function name : sub*//*purpose : be the funcion for safe substract*/