ETH Price: $4,201.31 (-1.18%)

Transaction Decoder

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:

Account State Difference:

  Address   Before After State Difference Code
0x06354ce0...EdF256Ce6
(Upbit Dep: 0x06354ce08f96BC961b9f5110D513e1bEdF256Ce6)
11.854815721115988663 Eth
Nonce: 14217
11.854776634995639071 Eth
Nonce: 14218
0.000039086120349592
(beaverbuild)
17.175165354766707668 Eth17.175166017823934266 Eth0.000000663057226598
0xc00e94Cb...4A7f26888

Execution Trace

Comp.transfer( dst=0x0b92CAEc21939d94FC4e0E7372aF112fa119b7d9, rawAmount=60000000000000000000 ) => ( True )
transfer[Comp (ln:115)]
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.5.16;
pragma experimental ABIEncoderV2;
contract Comp {
/// @notice EIP-20 token name for this token
string public constant name = "Compound";
/// @notice EIP-20 token symbol for this token
string public constant symbol = "COMP";
/// @notice EIP-20 token decimals for this token
uint8 public constant decimals = 18;
/// @notice Total number of tokens in circulation
uint public constant totalSupply = 10000000e18; // 10 million Comp
/// @notice Allowance amounts on behalf of others
mapping (address => mapping (address => uint96)) internal allowances;
/// @notice Official record of token balances for each account
mapping (address => uint96) internal balances;
/// @notice A record of each accounts delegate
mapping (address => address) public delegates;
/// @notice A checkpoint for marking number of votes from a given block
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX