Transaction Hash:
Block:
22613359 at Jun-02-2025 12:14:59 AM +UTC
Transaction Fee:
0.000021795988304426 ETH
$0.08
Gas Used:
35,318 Gas / 0.617135407 Gwei
Emitted Events:
690 |
Uni.Transfer( from=[Sender] 0x548f27e2c1eb0c90c9c0ef3a4a61a6ae60038f02, to=0x698a0BA3a79207585ee7Edda5ffbB7d7F4D8Df14, amount=745084059340000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9840a8...C4201F984 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 5.88040582687666297 Eth | 5.88040943728658442 Eth | 0.00000361040992145 | |
0x548f27e2...E60038f02 | (Upbit Dep: 0x548f27e2c1eb0c90C9C0EF3a4A61a6aE60038f02) |
46.127085920323550647 Eth
Nonce: 24080
|
46.127064124335246221 Eth
Nonce: 24081
| 0.000021795988304426 |
Execution Trace
Uni.transfer( dst=0x698a0BA3a79207585ee7Edda5ffbB7d7F4D8Df14, rawAmount=745084059340000000000 ) => ( True )
transfer[Uni (ln:396)]
safe96[Uni (ln:397)]
_transferTokens[Uni (ln:398)]
sub96[Uni (ln:518)]
add96[Uni (ln:519)]
Transfer[Uni (ln:520)]
_moveDelegates[Uni (ln:522)]
sub96[Uni (ln:530)]
_writeCheckpoint[Uni (ln:531)]
safe32[Uni (ln:544)]
Checkpoint[Uni (ln:549)]
DelegateVotesChanged[Uni (ln:553)]
add96[Uni (ln:537)]
_writeCheckpoint[Uni (ln:538)]
safe32[Uni (ln:544)]
Checkpoint[Uni (ln:549)]
DelegateVotesChanged[Uni (ln:553)]
1234567891011121314151617181920212223242526/***Submitted for verification at Etherscan.io on 2020-09-15*/pragma solidity ^0.5.16;pragma experimental ABIEncoderV2;// From https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/math/Math.sol// Subject to the MIT license./*** @dev Wrappers over Solidity's arithmetic operations with added overflow* checks.** Arithmetic operations in Solidity wrap on overflow. This can easily result* in bugs, because programmers usually assume that an overflow raises an* error, which is the standard behavior in high level programming languages.* `SafeMath` restores this intuition by reverting the transaction when an* operation overflows.** Using this library instead of the unchecked operations eliminates an entire* class of bugs, so it's recommended to use it always.*/library SafeMath {/*** @dev Returns the addition of two unsigned integers, reverting on overflow.