Transaction Hash:
Block:
21971206 at Mar-04-2025 04:42:11 AM +UTC
Transaction Fee:
0.000162258730859544 ETH
$0.60
Gas Used:
127,576 Gas / 1.271859369 Gwei
Emitted Events:
199 |
Renzo.Transfer( from=[Receiver] 0x2e1a7ef12d0adeebf6009f0aa964cf686364b01f, to=[Sender] 0x6d76ac1013cf80230e120012d09a41fdbf3a1d88, value=204840000000000000000 )
|
200 |
0x2e1a7ef12d0adeebf6009f0aa964cf686364b01f.0x9c91da9f102663943dfb86d851c76de06c2fe178d18a58e45dd7a9cbeea0bb35( 0x9c91da9f102663943dfb86d851c76de06c2fe178d18a58e45dd7a9cbeea0bb35, 0x0000000000000000000000006d76ac1013cf80230e120012d09a41fdbf3a1d88, 00000000000000000000000000000000000000000000000b1ab9deb60f040000, 0000000000000000000000000000000000000000000000000000000067605c90, 0000000000000000000000000000000000000000000000000000000000000000, 0000000000000000000000000000000000000000000000000000000000000000, 00000000000000000000000000000000000000000000000b1ab9deb60f040000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2e1a7EF1...86364B01f | (Liquifi: Renzo Airdrop) | ||||
0x3B508054...0b23FA6F9 | |||||
0x6d76aC10...dBF3a1d88 |
0.007402629588916702 Eth
Nonce: 156
|
0.007240370858057158 Eth
Nonce: 157
| 0.000162258730859544 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 17.035149212987972005 Eth | 17.035213000987972005 Eth | 0.000063788 |
Execution Trace
Liquifi: Renzo Airdrop.8132b321( )
0xb7486b5bd2d14714950b082eafebe9822a1d96ee.8132b321( )
-
Renzo.balanceOf( account=0x2e1a7EF12d0aDeEbF6009F0Aa964cf686364B01f ) => ( 53400764510000000000000000 )
-
0xc76b81d835a6ef88fb9b841c22ed492473577ac3.ad9c499b( )
-
Renzo.transfer( to=0x6d76aC1013cf80230e120012D09A41fdBF3a1d88, value=204840000000000000000 ) => ( True )
-
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);}}