Transaction Hash:
Block:
22645970 at Jun-06-2025 01:53:11 PM +UTC
Transaction Fee:
0.000163815182376524 ETH
$0.49
Gas Used:
48,614 Gas / 3.369712066 Gwei
Emitted Events:
370 |
Amp.ApprovalByPartition( partition=0000000000000000000000000000000000000000000000000000000000000000, owner=[Sender] 0x6a12d1fac905dbd1fa2496d6baf9e8c2d46824bf, spender=0x5d2725fd...c031d675f, value=4811567552226061055812883 )
|
371 |
Amp.Approval( owner=[Sender] 0x6a12d1fac905dbd1fa2496d6baf9e8c2d46824bf, spender=0x5d2725fd...c031d675f, value=4811567552226061055812883 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x6a12d1Fa...2D46824Bf |
0.261982143417888522 Eth
Nonce: 5
|
0.261818328235511998 Eth
Nonce: 6
| 0.000163815182376524 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 15.73732893758164401 Eth | 15.73733379898164401 Eth | 0.0000048614 | |
0xfF208177...8D11095C2 |
Execution Trace
Amp.approve( _spender=0x5d2725fdE4d7Aa3388DA4519ac0449Cc031d675f, _value=4811567552226061055812883 ) => ( 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.