Transaction Hash:
Block:
22554500 at May-24-2025 06:31:23 PM +UTC
Transaction Fee:
0.000023777619686418 ETH
$0.10
Gas Used:
46,826 Gas / 0.507786693 Gwei
Emitted Events:
57 |
Uni.Approval( owner=[Sender] 0xde5c871ea1889e9875676e62c92d25f06b0f07b7, spender=0x6A000F20...040001068, amount=749000000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9840a8...C4201F984 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 14.15034333762161761 Eth | 14.15034333991609161 Eth | 0.000000002294474 | |
0xde5c871e...06b0f07B7 |
0.010301708281929872 Eth
Nonce: 2
|
0.010277930662243454 Eth
Nonce: 3
| 0.000023777619686418 |
Execution Trace
Uni.approve( spender=0x6A000F20005980200259B80c5102003040001068, rawAmount=749000000000000000000 ) => ( True )
approve[Uni (ln:336)]
safe96[Uni (ln:341)]
Approval[Uni (ln:346)]
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.