ETH Price: $2,645.23 (+1.03%)

Transaction Decoder

Block:
21060538 at Oct-28-2024 12:25:11 AM +UTC
Transaction Fee:
0.00017800680699612 ETH $0.47
Gas Used:
30,120 Gas / 5.909920551 Gwei

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
15.81144573998440601 Eth15.81147585998440601 Eth0.00003012
0xB64ef51C...fBC0Ab8aC
0xe88690eC...7C1C76d68
0.00032305625 Eth
Nonce: 659
0.00014504944300388 Eth
Nonce: 660
0.00017800680699612

Execution Trace

CentrallyIssuedToken.transfer( _to=0xA9D1e08C7793af67e9d92fe308d5697FB81d3E43, _value=2392109000000 ) => ( success=True )
transfer[ERC20 (ln:10)]
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
/*
* ERC20 interface
* see https://github.com/ethereum/EIPs/issues/20
*/
contract ERC20 {
uint public totalSupply;
function balanceOf(address who) constant returns (uint);
function allowance(address owner, address spender) constant returns (uint);
function transfer(address to, uint value) returns (bool ok);
function transferFrom(address from, address to, uint value) returns (bool ok);
function approve(address spender, uint value) returns (bool ok);
event Transfer(address indexed from, address indexed to, uint value);
event Approval(address indexed owner, address indexed spender, uint value);
}
/**
* Math operations with safety checks
*/
contract SafeMath {
function safeMul(uint a, uint b) internal returns (uint) {
uint c = a * b;
assert(a == 0 || c / a == b);
return c;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX