Transaction Hash:
Block:
22638183 at Jun-05-2025 11:42:47 AM +UTC
Transaction Fee:
0.000185092949454504 ETH
$0.55
Gas Used:
53,599 Gas / 3.453291096 Gwei
Emitted Events:
52 |
SpaceIDToken.Transfer( from=[Sender] 0x1d96c7bb6d7f8059315dc75277b0c7cacb511e0c, to=0xFE9529b753b412941127Fea1981E5cE0A85C101E, value=67667291908140020000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x1D96c7bb...aCB511E0c |
2.664878928925300476 Eth
Nonce: 1663
|
2.664693835975845972 Eth
Nonce: 1664
| 0.000185092949454504 | ||
0x2dfF88A5...F5f766406 | |||||
0x400B6e59...c784b8485
Miner
| (MEV Builder: 0x400b...485) | 1.559579211854190148 Eth | 1.559686409854190148 Eth | 0.000107198 |
Execution Trace
SpaceIDToken.transfer( to=0xFE9529b753b412941127Fea1981E5cE0A85C101E, amount=67667291908140020000000 ) => ( 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}:** ```