Transaction Hash:
Block:
15440617 at Aug-30-2022 01:30:13 PM +UTC
Transaction Fee:
0.00128927842065965 ETH
$3.25
Gas Used:
46,610 Gas / 27.660983065 Gwei
Emitted Events:
181 |
FLOKI.Approval( owner=[Sender] 0xdfbd404827813e2f597286d2824ac2eb7e09ab6e, spender=0x68b34658...D8665Fc45, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0xcf0C122c...Be62b6a2E | |||||
0xDfBd4048...B7E09ab6e |
0.010542712792117455 Eth
Nonce: 89
|
0.009253434371457805 Eth
Nonce: 90
| 0.00128927842065965 | ||
0xEA674fdD...16B898ec8
Miner
| (Ethermine) | 726.261376377351032634 Eth | 726.261446292351032634 Eth | 0.000069915 |
Execution Trace
FLOKI.approve( spender=0x68b3465833fb72A70ecDF485E0e4C7bD8665Fc45, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( True )
approve[FLOKI (ln:129)]
_approve[FLOKI (ln:130)]
Approval[FLOKI (ln:361)]
_msgSender[FLOKI (ln:130)]
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity 0.8.11;import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "@openzeppelin/contracts/access/Ownable.sol";import "./governance/IGovernanceToken.sol";import "./tax/ITaxHandler.sol";import "./treasury/ITreasuryHandler.sol";/*** @title Floki token contract* @dev The Floki token has modular systems for tax and treasury handler as well as governance capabilities.*/contract FLOKI is IERC20, IGovernanceToken, Ownable {/// @dev Registry of user token balances.mapping(address => uint256) private _balances;/// @dev Registry of addresses users have given allowances to.mapping(address => mapping(address => uint256)) private _allowances;/// @notice Registry of user delegates for governance.mapping(address => address) public delegates;/// @notice Registry of nonces for vote delegation.mapping(address => uint256) public nonces;/// @notice Registry of the number of balance checkpoints an account has.mapping(address => uint32) public numCheckpoints;/// @notice Registry of balance checkpoints per account.mapping(address => mapping(uint32 => Checkpoint)) public checkpoints;/// @notice The EIP-712 typehash for the contract's domain.bytes32 public constant DOMAIN_TYPEHASH =