Transaction Hash:
Block:
22681244 at Jun-11-2025 12:13:23 PM +UTC
Transaction Fee:
0.00015510744108706 ETH
$0.57
Gas Used:
46,310 Gas / 3.349329326 Gwei
Emitted Events:
467 |
FLOKI.Approval( owner=[Sender] 0xfbb335ce9e30352541b28568e968538f2bc3168d, spender=0x65c8F5C0...60EDD54E4, value=607981269428058 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 9.800499181835766408 Eth | 9.800503812835766408 Eth | 0.000004631 | |
0xcf0C122c...Be62b6a2E | |||||
0xfBB335CE...f2BC3168D |
0.024401256184638348 Eth
Nonce: 362
|
0.024246148743551288 Eth
Nonce: 363
| 0.00015510744108706 |
Execution Trace
FLOKI.approve( spender=0x65c8F5C0dab4d7e6911B602BA08c22460EDD54E4, amount=607981269428058 ) => ( 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 =