Transaction Hash:
Block:
22556525 at May-25-2025 01:19:11 AM +UTC
Transaction Fee:
0.000022707247352349 ETH
$0.06
Gas Used:
35,157 Gas / 0.645881257 Gwei
Emitted Events:
517 |
Renzo.Transfer( from=[Sender] 0x8672a3a1c258d3a6601be83d9505365ef715afd6, to=0x6B130820c449A27b35256A3c99942adbD53AAC18, value=2138878303417170000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3B508054...0b23FA6F9 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 11.462098979484625916 Eth | 11.462106218666714756 Eth | 0.00000723918208884 | |
0x8672a3a1...eF715Afd6 | (Bitkub Dep: 0x8672a3a1C258D3a6601Be83d9505365eF715Afd6) |
0.003649848542445929 Eth
Nonce: 37488
|
0.00362714129509358 Eth
Nonce: 37489
| 0.000022707247352349 |
Execution Trace
Renzo.transfer( to=0x6B130820c449A27b35256A3c99942adbD53AAC18, value=2138878303417170000000000 ) => ( 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);}}