ETH Price: $2,690.74 (+0.87%)

Transaction Decoder

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 Code
0x0Cfb7962...25dF52656
0.037339452971751582 Eth
Nonce: 19
0.036882476396634526 Eth
Nonce: 20
0.000456976575117056
(Titan Builder)
5.335534956868336273 Eth5.335552662443640005 Eth0.000017705575303732
0xd1d2Eb1B...262C87cae

Execution Trace

ERC1967Proxy.a9059cbb( )
  • Gala.transfer( to=0x0B4b0e21A96B39f0df60245aE5cE696bf54201cE, amount=13917430454830 ) => ( True )
    File 1 of 2: ERC1967Proxy
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // SPDX-License-Identifier: MIT
    pragma 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: MIT
    pragma solidity ^0.8.0;
    import "./IBeacon.sol";
    import "../Proxy.sol";
    import "../ERC1967/ERC1967Upgrade.sol";
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    File 2 of 2: Gala
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    // 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
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX