ETH Price: $3,555.80 (+2.59%)

Transaction Decoder

Block:
20531295 at Aug-15-2024 03:18:23 AM +UTC
Transaction Fee:
0.00010730155855281 ETH $0.38
Gas Used:
47,265 Gas / 2.270211754 Gwei

Emitted Events:

45 Renzo.Approval( owner=[Sender] 0x5d4b08e8df3a791db328310f598a13fc786afa41, spender=0x40aA958d...a374bcD7f, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )

Account State Difference:

  Address   Before After State Difference Code
(Fee Recipient: 0x2b5c...a88)
4.277970400344615056 Eth4.278014954526947381 Eth0.000044554182332325
0x3B508054...0b23FA6F9
0x5D4B08e8...C786aFa41
0.017581920041579642 Eth
Nonce: 89
0.017474618483026832 Eth
Nonce: 90
0.00010730155855281

Execution Trace

Renzo.approve( spender=0x40aA958dd87FC8305b97f2BA922CDdCa374bcD7f, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( 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