ETH Price: $2,493.68 (-0.21%)

Transaction Decoder

Block:
13215868 at Sep-13-2021 06:54:28 AM +UTC
Transaction Fee:
0.0024895882 ETH $6.21
Gas Used:
52,634 Gas / 47.3 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(Hiveon Pool)
5,776.412945648043439449 Eth5,776.413190422862247405 Eth0.000244774818807956
0x6CFF5097...8515ba280
0.004938941813519994 Eth
Nonce: 2
0.002449353613519994 Eth
Nonce: 3
0.0024895882
0xc00e94Cb...4A7f26888

Execution Trace

Comp.transfer( dst=0x7EE244cf0A11d48466aA6C8FaaE24843C492CF4D, rawAmount=149242590000000000 ) => ( 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