Transaction Hash:
Block:
22652265 at Jun-07-2025 10:58:47 AM +UTC
Transaction Fee:
0.000039086120349592 ETH
$0.16
Gas Used:
35,534 Gas / 1.099963988 Gwei
Emitted Events:
345 |
Comp.Transfer( from=[Sender] 0x06354ce08f96bc961b9f5110d513e1bedf256ce6, to=0x0b92CAEc21939d94FC4e0E7372aF112fa119b7d9, amount=60000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x06354ce0...EdF256Ce6 | (Upbit Dep: 0x06354ce08f96BC961b9f5110D513e1bEdF256Ce6) |
11.854815721115988663 Eth
Nonce: 14217
|
11.854776634995639071 Eth
Nonce: 14218
| 0.000039086120349592 | |
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 17.175165354766707668 Eth | 17.175166017823934266 Eth | 0.000000663057226598 | |
0xc00e94Cb...4A7f26888 |
Execution Trace
Comp.transfer( dst=0x0b92CAEc21939d94FC4e0E7372aF112fa119b7d9, rawAmount=60000000000000000000 ) => ( True )
transfer[Comp (ln:115)]
safe96[Comp (ln:116)]
_transferTokens[Comp (ln:117)]
sub96[Comp (ln:237)]
add96[Comp (ln:238)]
Transfer[Comp (ln:239)]
_moveDelegates[Comp (ln:241)]
sub96[Comp (ln:249)]
_writeCheckpoint[Comp (ln:250)]
safe32[Comp (ln:263)]
Checkpoint[Comp (ln:268)]
DelegateVotesChanged[Comp (ln:272)]
add96[Comp (ln:256)]
_writeCheckpoint[Comp (ln:257)]
safe32[Comp (ln:263)]
Checkpoint[Comp (ln:268)]
DelegateVotesChanged[Comp (ln:272)]
1234567891011121314151617181920212223242526pragma solidity ^0.5.16;pragma experimental ABIEncoderV2;contract Comp {/// @notice EIP-20 token name for this tokenstring public constant name = "Compound";/// @notice EIP-20 token symbol for this tokenstring public constant symbol = "COMP";/// @notice EIP-20 token decimals for this tokenuint8 public constant decimals = 18;/// @notice Total number of tokens in circulationuint public constant totalSupply = 10000000e18; // 10 million Comp/// @notice Allowance amounts on behalf of othersmapping (address => mapping (address => uint96)) internal allowances;/// @notice Official record of token balances for each accountmapping (address => uint96) internal balances;/// @notice A record of each accounts delegatemapping (address => address) public delegates;/// @notice A checkpoint for marking number of votes from a given block