Transaction Hash:
Block:
20530839 at Aug-15-2024 01:46:23 AM +UTC
Transaction Fee:
0.000092694979066404 ETH
$0.23
Gas Used:
35,121 Gas / 2.639303524 Gwei
Emitted Events:
122 |
Renzo.Transfer( from=[Sender] 0x7ae6427dffb34e071e554cdcca466f3d503d6d05, to=0xbD4F460C2C4da234cA9cCE36a3D6D7aB605D3C14, value=568120000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3B508054...0b23FA6F9 | |||||
0x7ae6427D...D503D6D05 |
2.961405177119914314 Eth
Nonce: 86
|
2.96131248214084791 Eth
Nonce: 87
| 0.000092694979066404 | ||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 12.375330522164902178 Eth | 12.375377160718072193 Eth | 0.000046638553170015 |
Execution Trace
Renzo.transfer( to=0xbD4F460C2C4da234cA9cCE36a3D6D7aB605D3C14, value=568120000000000000000 ) => ( 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);}}