Transaction Hash:
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:
234 |
Comp.Transfer( from=[Sender] 0x6cff5097186b7d35708336b9c01bb778515ba280, to=0x7EE244cf0A11d48466aA6C8FaaE24843C492CF4D, amount=149242590000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1aD91ee0...dA6B45836
Miner
| (Hiveon Pool) | 5,776.412945648043439449 Eth | 5,776.413190422862247405 Eth | 0.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)]
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