Transaction Hash:
Block:
19775519 at May-01-2024 01:16:35 PM +UTC
Transaction Fee:
0.000456976575117056 ETH
$1.23
Gas Used:
41,284 Gas / 11.069096384 Gwei
Emitted Events:
243 |
ERC1967Proxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x0000000000000000000000000cfb79622c11cf9d34ea85a8fb1392725df52656, 0x0000000000000000000000000b4b0e21a96b39f0df60245ae5ce696bf54201ce, 00000000000000000000000000000000000000000000000000000ca8677f9a2e )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x0Cfb7962...25dF52656 |
0.037339452971751582 Eth
Nonce: 19
|
0.036882476396634526 Eth
Nonce: 20
| 0.000456976575117056 | ||
0x4838B106...B0BAD5f97
Miner
| (Titan Builder) | 5.335534956868336273 Eth | 5.335552662443640005 Eth | 0.000017705575303732 | |
0xd1d2Eb1B...262C87cae |
Execution Trace
ERC1967Proxy.a9059cbb( )

-
Gala.transfer( to=0x0B4b0e21A96B39f0df60245aE5cE696bf54201cE, amount=13917430454830 ) => ( True )
File 1 of 2: ERC1967Proxy
File 2 of 2: Gala
12345678910111213141516// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "@openzeppelin/contracts/proxy/beacon/BeaconProxy.sol";import "@openzeppelin/contracts/proxy/beacon/UpgradeableBeacon.sol";import "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";import "@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol";import "@openzeppelin/contracts/proxy/transparent/ProxyAdmin.sol";// Kept for backwards compatibility with older versions of Hardhat and Truffle plugins.contract AdminUpgradeabilityProxy is TransparentUpgradeableProxy {constructor(address logic, address admin, bytes memory data) payable TransparentUpgradeableProxy(logic, admin, data) {}}// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "./IBeacon.sol";import "../Proxy.sol";import "../ERC1967/ERC1967Upgrade.sol";
File 2 of 2: Gala
12345678910111213141516// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol)pragma solidity ^0.8.0;import "./IAccessControlUpgradeable.sol";import "../utils/ContextUpgradeable.sol";import "../utils/StringsUpgradeable.sol";import "../utils/introspection/ERC165Upgradeable.sol";import "../proxy/utils/Initializable.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