Transaction Hash:
Block:
20531291 at Aug-15-2024 03:17:35 AM +UTC
Transaction Fee:
0.000163698350292045 ETH
$0.42
Gas Used:
47,265 Gas / 3.463415853 Gwei
Emitted Events:
428 |
Renzo.Approval( owner=[Sender] 0xc0b45c9242529a6a38900b607cd078af2c6a3b1e, spender=0x881D4023...dC08D300C, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3B508054...0b23FA6F9 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 5.570987787351355905 Eth | 5.571082317351355905 Eth | 0.00009453 | |
0xc0B45C92...f2c6A3b1E |
0.029519361902084053 Eth
Nonce: 33
|
0.029355663551792008 Eth
Nonce: 34
| 0.000163698350292045 |
Execution Trace
Renzo.approve( spender=0x881D40237659C251811CEC9c364ef91dC08D300C, value=115792089237316195423570985008687907853269984665640564039457584007913129639935 ) => ( 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);}}