Transaction Hash:
Block:
22645681 at Jun-06-2025 12:55:11 PM +UTC
Transaction Fee:
0.000132131679600606 ETH
$0.34
Gas Used:
48,866 Gas / 2.703959391 Gwei
Emitted Events:
369 |
Amp.ApprovalByPartition( partition=0000000000000000000000000000000000000000000000000000000000000000, owner=[Sender] 0x28b425daadee6daaf830c332ec59f4ebf82afb30, spender=0xa7Ca2C86...C2b0Db22A, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
370 |
Amp.Approval( owner=[Sender] 0x28b425daadee6daaf830c332ec59f4ebf82afb30, spender=0xa7Ca2C86...C2b0Db22A, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x28B425Da...bF82AfB30 |
0.00912804115337838 Eth
Nonce: 14
|
0.008995909473777774 Eth
Nonce: 15
| 0.000132131679600606 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 15.344651209917906953 Eth | 15.344700075917906953 Eth | 0.000048866 | |
0xfF208177...8D11095C2 |
Execution Trace
Amp.approve( _spender=0xa7Ca2C8673bcFA5a26d8ceeC2887f2CC2b0Db22A, _value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
approve[Amp (ln:1128)]
_approveByPartition[Amp (ln:1129)]
ApprovalByPartition[Amp (ln:1993)]
Approval[Amp (ln:1996)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.6.10;/*** @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.** Counterpart to Solidity's `+` operator.** Requirements:* - Addition cannot overflow.