Transaction Hash:
Block:
22547812 at May-23-2025 08:00:59 PM +UTC
Transaction Fee:
0.000090124624933122 ETH
$0.23
Gas Used:
52,221 Gas / 1.725831082 Gwei
Emitted Events:
199 |
Renzo.Transfer( from=[Sender] 0xb79d793d453704c1d0bfe4a352179ec089a966aa, to=0xb2873Eb53efdd7811cd7e148Bf099bDef4F9357A, value=4211130000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3B508054...0b23FA6F9 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 10.856264764901058036 Eth | 10.856292206164415115 Eth | 0.000027441263357079 | |
0xb79d793d...089a966aa |
0.01225167088783599 Eth
Nonce: 58
|
0.012161546262902868 Eth
Nonce: 59
| 0.000090124624933122 |
Execution Trace
Renzo.transfer( to=0xb2873Eb53efdd7811cd7e148Bf099bDef4F9357A, value=4211130000000000000000 ) => ( 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);}}