Transaction Hash:
Block:
20346900 at Jul-20-2024 09:39:23 AM +UTC
Transaction Fee:
0.000130767548822503 ETH
$0.56
Gas Used:
46,573 Gas / 2.807797411 Gwei
Emitted Events:
464 |
PIXFI.Approval( owner=[Sender] 0xc585bb6aa586fb39b175e5a1df8936bc8f26b60e, spender=0x1729F8Cc...b724f19fB, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 6.805727437740471309 Eth | 6.805732095040471309 Eth | 0.0000046573 | |
0xC585Bb6A...C8f26b60E |
0.000164485323449769 Eth
Nonce: 1
|
0.000033717774627266 Eth
Nonce: 2
| 0.000130767548822503 | ||
0xd795eb12...b5f5C70Aa |
Execution Trace
PIXFI.approve( spender=0x1729F8Cc02237bD360c94c15a8ee41ab724f19fB, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
approve[ERC20 (ln:121)]
_msgSender[ERC20 (ln:122)]
_approve[ERC20 (ln:123)]
Approval[ERC20 (ln:278)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)pragma solidity ^0.8.0;import "./IERC20.sol";import "./extensions/IERC20Metadata.sol";import "../../utils/Context.sol";/*** @dev Implementation of the {IERC20} interface.** This implementation is agnostic to the way tokens are created. This means* that a supply mechanism has to be added in a derived contract using {_mint}.* For a generic mechanism see {ERC20PresetMinterPauser}.** TIP: For a detailed writeup see our guide* https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How* to implement supply mechanisms].** The default value of {decimals} is 18. To change this, you should override* this function so it returns a different value.** We have followed general OpenZeppelin Contracts guidelines: functions revert* instead returning `false` on failure. This behavior is nonetheless* conventional and does not conflict with the expectations of ERC20* applications.** Additionally, an {Approval} event is emitted on calls to {transferFrom}.