Transaction Hash:
Block:
22548707 at May-23-2025 11:01:59 PM +UTC
Transaction Fee:
0.000131279552567793 ETH
$0.34
Gas Used:
39,957 Gas / 3.285520749 Gwei
Emitted Events:
33 |
Renzo.Transfer( from=[Sender] 0x28c6c06298d514db089934071355e5743bf21d60, to=0x21a31Ee1afC51d94C2eFcCAa2092aD1028285549, value=11323170527475980000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x28C6c062...43bf21d60 | (Binance 14) |
72,416.413277685245273592 Eth
Nonce: 12419689
|
72,416.413146405692705799 Eth
Nonce: 12419690
| 0.000131279552567793 | |
0x3B508054...0b23FA6F9 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 7.707612386859803874 Eth | 7.707692300859803874 Eth | 0.000079914 |
Execution Trace
Renzo.transfer( to=0x21a31Ee1afC51d94C2eFcCAa2092aD1028285549, value=11323170527475980000000000 ) => ( 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);}}