Transaction Hash:
Block:
22479088 at May-14-2025 04:37:35 AM +UTC
Transaction Fee:
0.000033179003750893 ETH
$0.09
Gas Used:
47,047 Gas / 0.705231019 Gwei
Emitted Events:
291 |
Uni.Approval( owner=[Sender] 0xfd8bead0457a0fe1820c9f3126349438b1498fea, spender=0xc3d688B6...25384cdc3, amount=79228162514264337593543950335 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1f9840a8...C4201F984 | |||||
0x39634336...6fb82Aa49
Miner
| (quasarbuilder) | 31.252055359322743751 Eth | 31.252055453416743751 Eth | 0.000000094094 | |
0xfD8bead0...8B1498feA |
1.28976832059525494 Eth
Nonce: 8
|
1.289735141591504047 Eth
Nonce: 9
| 0.000033179003750893 |
Execution Trace
Uni.approve( spender=0xc3d688B66703497DAA19211EEdff47f25384cdc3, rawAmount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( 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.