Transaction Hash:
Block:
17550088 at Jun-24-2023 02:51:35 PM +UTC
Transaction Fee:
0.000726064214161102 ETH
$2.18
Gas Used:
53,587 Gas / 13.549260346 Gwei
Emitted Events:
199 |
SpaceIDToken.Transfer( from=[Sender] 0xc149e565e07bf023e0b687be019fe61deccbf81a, to=0x6051C05295f7C5282a1cAc18524EbB67ebA5876D, value=29919360000000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2dfF88A5...F5f766406 | |||||
0x88ac8722...8aAafa48E
Miner
| 1.15461337684075276 Eth | 1.15461873554075276 Eth | 0.0000053587 | ||
0xC149E565...DeCCBf81a |
1.956648644871877496 Eth
Nonce: 50
|
1.955922580657716394 Eth
Nonce: 51
| 0.000726064214161102 |
Execution Trace
SpaceIDToken.transfer( to=0x6051C05295f7C5282a1cAc18524EbB67ebA5876D, amount=29919360000000000000000 ) => ( 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}:** ```