ETH Price: $2,522.11 (-0.43%)
Gas: 0.45 Gwei

Transaction Decoder

Block:
22542587 at May-23-2025 02:28:23 AM +UTC
Transaction Fee:
0.000127523580740464 ETH $0.32
Gas Used:
30,071 Gas / 4.240749584 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Lido: Execution Layer Rewards Vault)
73.423238271197479928 Eth73.423298413197479928 Eth0.000060142
0x41e55600...E20e94E45
0xf26A42d1...5526F0F6C
1.063233452159539299 Eth
Nonce: 154
1.063105928578798835 Eth
Nonce: 155
0.000127523580740464

Execution Trace

CentrallyIssuedToken.transfer( _to=0xe3031C1BfaA7825813c562CbDCC69d96FCad2087, _value=15783895016 ) => ( 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) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX