Transaction Hash:
Block:
22681193 at Jun-11-2025 12:03:11 PM +UTC
Transaction Fee:
0.000287073091232022 ETH
$1.23
Gas Used:
67,503 Gas / 4.252745674 Gwei
Emitted Events:
112 |
FLOKI.Transfer( from=[Sender] 0x23d4df4631aa3ca30653d3c29c0eeef607b1d9fd, to=0x22af984f13DFB5C80145E3F9eE1050Ae5a5FB651, value=462671233733000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x23D4dF46...607b1d9Fd |
5.982753703541996094 Eth
Nonce: 4762
|
5.982466630450764072 Eth
Nonce: 4763
| 0.000287073091232022 | ||
0xcf0C122c...Be62b6a2E | |||||
0xdadB0d80...24f783711
Miner
| (BuilderNet) | 161.538700530290236202 Eth | 161.538835536290236202 Eth | 0.000135006 |
Execution Trace
FLOKI.transfer( recipient=0x22af984f13DFB5C80145E3F9eE1050Ae5a5FB651, amount=462671233733000000 ) => ( True )
-
TreasuryHandlerAlpha.beforeTransferHandler( benefactor=0x23D4dF4631aa3CA30653D3c29c0eEeF607b1d9Fd, beneficiary=0x22af984f13DFB5C80145E3F9eE1050Ae5a5FB651, amount=462671233733000000 )
-
DynamicTaxHandler.getTax( benefactor=0x23D4dF4631aa3CA30653D3c29c0eEeF607b1d9Fd, beneficiary=0x22af984f13DFB5C80145E3F9eE1050Ae5a5FB651, amount=462671233733000000 ) => ( 0 )
-
TreasuryHandlerAlpha.afterTransferHandler( benefactor=0x23D4dF4631aa3CA30653D3c29c0eEeF607b1d9Fd, beneficiary=0x22af984f13DFB5C80145E3F9eE1050Ae5a5FB651, amount=462671233733000000 )
transfer[FLOKI (ln:105)]
_transfer[FLOKI (ln:106)]
beforeTransferHandler[FLOKI (ln:378)]
getTax[FLOKI (ln:379)]
_moveDelegates[FLOKI (ln:383)]
_writeCheckpoint[FLOKI (ln:316)]
Checkpoint[FLOKI (ln:342)]
DelegateVotesChanged[FLOKI (ln:345)]
_writeCheckpoint[FLOKI (ln:322)]
Checkpoint[FLOKI (ln:342)]
DelegateVotesChanged[FLOKI (ln:345)]
_moveDelegates[FLOKI (ln:386)]
_writeCheckpoint[FLOKI (ln:316)]
Checkpoint[FLOKI (ln:342)]
DelegateVotesChanged[FLOKI (ln:345)]
_writeCheckpoint[FLOKI (ln:322)]
Checkpoint[FLOKI (ln:342)]
DelegateVotesChanged[FLOKI (ln:345)]
Transfer[FLOKI (ln:387)]
afterTransferHandler[FLOKI (ln:389)]
Transfer[FLOKI (ln:390)]
_msgSender[FLOKI (ln:106)]
File 1 of 3: FLOKI
File 2 of 3: TreasuryHandlerAlpha
File 3 of 3: DynamicTaxHandler
12345678910111213141516// 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;
File 2 of 3: TreasuryHandlerAlpha
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity 0.8.11;import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "@openzeppelin/contracts/utils/Address.sol";import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol";import "../utils/ExchangePoolProcessor.sol";import "../utils/LenientReentrancyGuard.sol";import "./ITreasuryHandler.sol";/*** @title Treasury handler alpha contract* @dev Sells tokens that have accumulated through taxes and sends the resulting ETH to the treasury. If* `liquidityBasisPoints` has been set to a non-zero value, then that percentage will instead be added to the designated* liquidity pool.*/contract TreasuryHandlerAlpha is ITreasuryHandler, LenientReentrancyGuard, ExchangePoolProcessor {using Address for address payable;
File 3 of 3: DynamicTaxHandler
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity 0.8.11;import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";import "./ITaxHandler.sol";import "../utils/ExchangePoolProcessor.sol";/*** @title Dynamic tax handler* @notice Processes tax for a given token transfer. Checks for the following:* - Is the address on the static blacklist? If so, it can only transfer to the* `receiver` address. In all other cases, the transfer will fail.* - Is the address exempt from taxes, if so, the number of taxed tokens is* always zero.* - Is it a transfer between "regular" users? This means they are not on the* list of either blacklisted or exempt addresses, nor are they an address* designated as an exchange pool.