Transaction Hash:
Block:
20531030 at Aug-15-2024 02:24:47 AM +UTC
Transaction Fee:
0.00007715072249253 ETH
$0.20
Gas Used:
46,965 Gas / 1.642728042 Gwei
Emitted Events:
317 |
Renzo.Approval( owner=[Sender] 0xbb8eab8da7792cf59ad2c053d6b49b4636a507dc, spender=0x1231DEB6...7486F4EaE, value=1100200000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x3B508054...0b23FA6F9 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 15.36867800309353645 Eth | 15.36868035134353645 Eth | 0.00000234825 | |
0xbB8eab8d...636a507DC |
0.02636874001867947 Eth
Nonce: 487
|
0.02629158929618694 Eth
Nonce: 488
| 0.00007715072249253 |
Execution Trace
Renzo.approve( spender=0x1231DEB6f5749EF6cE6943a275A1D3E7486F4EaE, value=1100200000000000000000 ) => ( 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);}}