ETH Price: $4,698.27 (+6.62%)

Transaction Decoder

Block:
21336798 at Dec-05-2024 02:09:23 PM +UTC
Transaction Fee:
0.0013085224119016 ETH $6.15
Gas Used:
46,550 Gas / 28.110041072 Gwei

Emitted Events:

521 FLOKI.Approval( owner=[Sender] 0xd601092c775d56a4c77ede36cf02c4cb4ae8fb86, spender=0x00000000...43aC78BA3, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
13.634242843661167237 Eth13.634344442766870437 Eth0.0001015991057032
0xcf0C122c...Be62b6a2E
0xD601092C...b4ae8FB86
0.041929124388401477 Eth
Nonce: 149
0.040620601976499877 Eth
Nonce: 150
0.0013085224119016

Execution Trace

FLOKI.approve( spender=0x000000000022D473030F116dDEE9F6B43aC78BA3, amount=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( 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