ETH Price: $3,732.87 (+0.74%)
Gas: 0.23 Gwei

Transaction Decoder

Block:
22711841 at Jun-15-2025 06:51:59 PM +UTC
Transaction Fee:
0.00002453373261372 ETH $0.09
Gas Used:
46,310 Gas / 0.529771812 Gwei

Emitted Events:

276 FLOKI.Approval( owner=[Sender] 0x96bde3b45905c5a1a27961dca1941f2b6b635cb5, spender=0x11111112...73A960582, value=320102432778489 )

Account State Difference:

  Address   Before After State Difference Code
(beaverbuild)
7.967591800486425416 Eth7.967596431486425416 Eth0.000004631
0x96bDE3B4...B6B635cB5
0.008732807373491399 Eth
Nonce: 47
0.008708273640877679 Eth
Nonce: 48
0.00002453373261372
0xcf0C122c...Be62b6a2E

Execution Trace

FLOKI.approve( spender=0x1111111254EEB25477B68fb85Ed929f73A960582, amount=320102432778489 ) => ( True )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma 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 =
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX