ETH Price: $2,610.81 (+2.55%)

Transaction Decoder

Block:
17799964 at Jul-29-2023 04:43:59 PM +UTC
Transaction Fee:
0.00280223410453552 ETH $7.32
Gas Used:
112,894 Gas / 24.82181608 Gwei

Emitted Events:

405 ERC1967Proxy.0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef( 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef, 0x00000000000000000000000008c7676680f187a31241e83e6d44c03a98adab05, 0x00000000000000000000000099af4fdf55d3a82193176c126d5f1aa4ad8f0ff0, 00000000000000000000000000000000000000000000000ab3e25398a24d6af0 )
406 Airdrop.Claimed( account=0x99aF4Fdf...4Ad8f0ff0, amount=197429455329644342000 )

Account State Difference:

  Address   Before After State Difference Code
0x08c76766...A98AdaB05
(Arkham: Airdrop)
0x6E2a43be...482b8b050
(beaverbuild)
8.628188461526419476 Eth8.628199073562419476 Eth0.000010612036
0xf9C7671C...26F97b6eA
0.011168011785888318 Eth
Nonce: 2
0.008365777681352798 Eth
Nonce: 3
0.00280223410453552

Execution Trace

Airdrop.claim( )
  • ERC1967Proxy.a9059cbb( )
    • ARKM.transfer( to=0x99aF4Fdf55d3a82193176C126D5F1aa4Ad8f0ff0, amount=197429455329644342000 ) => ( True )
      File 1 of 3: Airdrop
      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.9.0) (access/Ownable.sol)
      pragma solidity ^0.8.0;
      import "../utils/Context.sol";
      /**
      * @dev Contract module which provides a basic access control mechanism, where
      * there is an account (an owner) that can be granted exclusive access to
      * specific functions.
      *
      * By default, the owner account will be the one that deploys the contract. This
      * can later be changed with {transferOwnership}.
      *
      * This module is used through inheritance. It will make available the modifier
      * `onlyOwner`, which can be applied to your functions to restrict their use to
      * the owner.
      */
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 2 of 3: 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 3 of 3: ARKM
      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.7.0) (access/Ownable.sol)
      pragma solidity ^0.8.0;
      import "../utils/ContextUpgradeable.sol";
      import "../proxy/utils/Initializable.sol";
      /**
      * @dev Contract module which provides a basic access control mechanism, where
      * there is an account (an owner) that can be granted exclusive access to
      * specific functions.
      *
      * By default, the owner account will be the one that deploys the contract. This
      * can later be changed with {transferOwnership}.
      *
      * This module is used through inheritance. It will make available the modifier
      * `onlyOwner`, which can be applied to your functions to restrict their use to
      * the owner.
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX