Transaction Hash:
Block:
22641378 at Jun-05-2025 10:26:11 PM +UTC
Transaction Fee:
0.000475693041836659 ETH
$1.73
Gas Used:
31,699 Gas / 15.006563041 Gwei
Emitted Events:
860 |
SpaceIDToken.Transfer( from=[Sender] 0xe3792a9c235d434b702023b33f03c48c41631090, to=0x37C06fcd8d48C077d352ae6489ab7a744df5CdC7, value=49999999962000000000000 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x2dfF88A5...F5f766406 | |||||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 8.162208267037594291 Eth | 8.162604513209901808 Eth | 0.000396246172307517 | |
0xe3792A9c...C41631090 | (Upbit Dep: 0xe3792A9c235D434B702023b33F03C48C41631090) |
400.237501199135238498 Eth
Nonce: 56441
|
400.237025506093401839 Eth
Nonce: 56442
| 0.000475693041836659 |
Execution Trace
SpaceIDToken.transfer( to=0x37C06fcd8d48C077d352ae6489ab7a744df5CdC7, amount=49999999962000000000000 ) => ( 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}:** ```