Transaction Hash:
Block:
22406907 at May-04-2025 12:43:23 AM +UTC
Transaction Fee:
0.000062797741552215 ETH
$0.16
Gas Used:
47,835 Gas / 1.312799029 Gwei
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x00c90751...9a9cC3d8E |
0.013012213954081762 Eth
Nonce: 77
|
0.012949416212529547 Eth
Nonce: 78
| 0.000062797741552215 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 15.241640593717048351 Eth | 15.241686993667048351 Eth | 0.00004639995 |
Execution Trace
Liquifi: Renzo Airdrop.8132b321( )
0xb7486b5bd2d14714950b082eafebe9822a1d96ee.8132b321( )
-
Renzo.balanceOf( account=0x2e1a7EF12d0aDeEbF6009F0Aa964cf686364B01f ) => ( 0 )
-
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// Compatible with OpenZeppelin Contracts ^5.0.0pragma solidity ^0.8.20;import "@openzeppelin/contracts@5.0.2/token/ERC20/ERC20.sol";import "@openzeppelin/contracts@5.0.2/token/ERC20/extensions/ERC20Permit.sol";import "@openzeppelin/contracts@5.0.2/token/ERC20/extensions/ERC20Votes.sol";contract Renzo is ERC20, ERC20Permit, ERC20Votes {constructor() ERC20("Renzo", "REZ") ERC20Permit("Renzo") {_mint(0xc1d9178C600B15151Ec366C008993a87C1216C38, 10_000_000_000 * 10 ** decimals());}// The following functions are overrides required by Solidity.function _update(address from, address to, uint256 value)internaloverride(ERC20, ERC20Votes){super._update(from, to, value);}function nonces(address owner)publicviewoverride(ERC20Permit, Nonces)returns (uint256){return super.nonces(owner);}}