Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x08c76766...A98AdaB05 | (Arkham: Airdrop) | ||||
0x6E2a43be...482b8b050 | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 8.628188461526419476 Eth | 8.628199073562419476 Eth | 0.000010612036 | |
0xf9C7671C...26F97b6eA |
0.011168011785888318 Eth
Nonce: 2
|
0.008365777681352798 Eth
Nonce: 3
| 0.00280223410453552 |
Execution Trace
claim[Airdrop (ln:397)]
verify[Airdrop (ln:400)]
processProof[MerkleProof (ln:188)]
_hashPair[MerkleProof (ln:209)]
_efficientHash[MerkleProof (ln:362)]
_efficientHash[MerkleProof (ln:362)]
transfer[Airdrop (ln:402)]
Claimed[Airdrop (ln:403)]
File 1 of 3: Airdrop
File 2 of 3: ERC1967Proxy
File 3 of 3: ARKM
12345678910111213141516// 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.*/
File 2 of 3: ERC1967Proxy
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 3 of 3: ARKM
12345678910111213141516// 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.