Transaction Hash:
Block:
17534027 at Jun-22-2023 08:38:35 AM +UTC
Transaction Fee:
0.000655323015115478 ETH
$1.94
Gas Used:
48,787 Gas / 13.432328594 Gwei
Emitted Events:
309 |
SpaceIDToken.Transfer( from=[Sender] 0x80b2ec6d136520d565d056fd380f02481d56de21, to=0x72d6735960ECBb86A3A9C26573a0F8A6E0dfC672, value=120494100000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2dfF88A5...F5f766406 | |||||
0x80B2ec6d...81D56dE21 |
0.007268103152661648 Eth
Nonce: 56
|
0.00661278013754617 Eth
Nonce: 57
| 0.000655323015115478 | ||
0xf573d993...6a43a0919
Miner
| (bloXroute: Ethical Builder) | 1.382204878658013192 Eth | 1.382209757358013192 Eth | 0.0000048787 |
Execution Trace
SpaceIDToken.transfer( to=0x72d6735960ECBb86A3A9C26573a0F8A6E0dfC672, amount=120494100000000000000 ) => ( 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}:** ```