Transaction Hash:
Block:
17533760 at Jun-22-2023 07:44:47 AM +UTC
Transaction Fee:
0.000460683007053871 ETH
$1.72
Gas Used:
31,699 Gas / 14.533045429 Gwei
Emitted Events:
27 |
SpaceIDToken.Transfer( from=[Sender] 0xa622a91d794c38183ba6d84d569880df04ec4a19, to=0x6cC5F688a315f3dC28A7781717a9A798a59fDA7b, value=22971122397000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2dfF88A5...F5f766406 | |||||
0x333333f3...986D6E203
Miner
| (MEV Builder: 0x333...203) | 4.047870988501246156 Eth | 4.047934386501246156 Eth | 0.000063398 | |
0xA622A91d...f04EC4A19 | (OKX Dep: 0xA622A91d794C38183BA6d84D569880Df04EC4A19) |
0.00312 Eth
Nonce: 0
|
0.002659316992946129 Eth
Nonce: 1
| 0.000460683007053871 |
Execution Trace
SpaceIDToken.transfer( to=0x6cC5F688a315f3dC28A7781717a9A798a59fDA7b, amount=22971122397000000000000 ) => ( True )
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol)pragma solidity ^0.8.0;import "./IAccessControl.sol";import "../utils/Context.sol";import "../utils/Strings.sol";import "../utils/introspection/ERC165.sol";/*** @dev Contract module that allows children to implement role-based access* control mechanisms. This is a lightweight version that doesn't allow enumerating role* members except through off-chain means by accessing the contract event logs. Some* applications may benefit from on-chain enumerability, for those cases see* {AccessControlEnumerable}.** Roles are referred to by their `bytes32` identifier. These should be exposed* in the external API and be unique. The best way to achieve this is by* using `public constant` hash digests:** ```* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");* ```** Roles can be used to represent a set of permissions. To restrict access to a* function call, use {hasRole}:** ```