Transaction Hash:
Block:
22548320 at May-23-2025 09:43:35 PM +UTC
Transaction Fee:
0.000128882191888539 ETH
$0.33
Gas Used:
57,021 Gas / 2.260258359 Gwei
Emitted Events:
229 |
Renzo.Transfer( from=[Sender] 0x39ed671ab729138e72ad218f493295078990021c, to=0xb247251c4a8bA108554c8542Ab73E5EAaA65634C, value=2353700000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x39ED671A...78990021C |
197.25416386056515382 Eth
Nonce: 16155
|
197.254034978373265281 Eth
Nonce: 16156
| 0.000128882191888539 | ||
0x3B508054...0b23FA6F9 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 6.757831384459058104 Eth | 6.757888405459058104 Eth | 0.000057021 |
Execution Trace
Renzo.transfer( to=0xb247251c4a8bA108554c8542Ab73E5EAaA65634C, value=2353700000000000000000 ) => ( 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);}}