ETH Price: $2,610.48 (+2.88%)
Gas: 0.48 Gwei

Transaction Decoder

Block:
22549078 at May-24-2025 12:17:11 AM +UTC
Transaction Fee:
0.000060331632691905 ETH $0.16
Gas Used:
35,157 Gas / 1.716063165 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x3B508054...0b23FA6F9
(Titan Builder)
6.00396938965096516 Eth6.003987343054103548 Eth0.000017953403138388
0x8672a3a1...eF715Afd6
(Bitkub Dep: 0x8672a3a1C258D3a6601Be83d9505365eF715Afd6)
0.006335065051891425 Eth
Nonce: 37407
0.00627473341919952 Eth
Nonce: 37408
0.000060331632691905

Execution Trace

Renzo.transfer( to=0x6B130820c449A27b35256A3c99942adbD53AAC18, value=1599052863626290000000000 ) => ( True )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// Compatible with OpenZeppelin Contracts ^5.0.0
pragma 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)
internal
override(ERC20, ERC20Votes)
{
super._update(from, to, value);
}
function nonces(address owner)
public
view
override(ERC20Permit, Nonces)
returns (uint256)
{
return super.nonces(owner);
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX