ETH Price: $2,815.23 (+1.45%)

Transaction Decoder

Block:
20531024 at Aug-15-2024 02:23:35 AM +UTC
Transaction Fee:
0.00007613494036575 ETH $0.21
Gas Used:
46,965 Gas / 1.62109955 Gwei

Emitted Events:

483 Renzo.Approval( owner=[Sender] 0x9d915ceb820b5243d4a609f149799b540ecd5c67, spender=0x1736011D...68Ea830A6, value=1100750000000000000000 )

Account State Difference:

  Address   Before After State Difference Code
0x3B508054...0b23FA6F9
(beaverbuild)
15.372258103245843749 Eth15.372260451495843749 Eth0.00000234825
0x9D915Ceb...40ecD5c67
0.119273958422297276 Eth
Nonce: 57
0.119197823481931526 Eth
Nonce: 58
0.00007613494036575

Execution Trace

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