ETH Price: $2,574.46 (-2.65%)
Gas: 0.53 Gwei

Transaction Decoder

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:

Account State Difference:

  Address   Before After State Difference Code
0x61D0407E...9c1472da6
(F2Pool Old)
4,625.540737111161526225 Eth4,625.540924031161526225 Eth0.00018692
0xFf769076...33710D4f4
0.000469629 Eth
Nonce: 35
0.000282709 Eth
Nonce: 36
0.00018692

Execution Trace

Token.transfer( _to=0x908C964AEa358F807dD58328eD9b1B80272Fa7d6, _value=50000000000000000000 )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
pragma 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*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX