ETH Price: $2,541.25 (+0.48%)

Transaction Decoder

Block:
22547838 at May-23-2025 08:06:23 PM +UTC
Transaction Fee:
0.00005043061191399 ETH $0.13
Gas Used:
35,133 Gas / 1.43542003 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
0x32016D42...B172640f6
(KuCoin Dep: 0x32016D42964E322bc44908e73624048B172640f6)
0.000640038654891473 Eth
Nonce: 22
0.000589608042977483 Eth
Nonce: 23
0.00005043061191399
0x3B508054...0b23FA6F9
(MEV Builder: 0x6adb...200)
5.02948376188379369 Eth5.02948411321379369 Eth0.00000035133

Execution Trace

Renzo.transfer( to=0x58edF78281334335EfFa23101bBe3371b6a36A51, value=90028800000000000000000 ) => ( 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