Transaction Hash:
Block:
20531051 at Aug-15-2024 02:28:59 AM +UTC
Transaction Fee:
0.00008160010532007 ETH
$0.22
Gas Used:
52,233 Gas / 1.56223279 Gwei
Emitted Events:
241 |
Renzo.Transfer( from=[Sender] 0x0942bd4268aea672d20d3d12294a9d2f20b96cb8, to=0x5a428a9B27ba7Bd94A0fA022eE5944a09c6c5087, value=12519790000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0942Bd42...f20b96CB8 |
0.031139645182724017 Eth
Nonce: 15
|
0.031058045077403947 Eth
Nonce: 16
| 0.00008160010532007 | ||
0x3B508054...0b23FA6F9 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 15.436472442996851622 Eth | 15.436475576976851622 Eth | 0.00000313398 |
Execution Trace
Renzo.transfer( to=0x5a428a9B27ba7Bd94A0fA022eE5944a09c6c5087, value=12519790000000000000000 ) => ( 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);}}