ETH Price: $3,725.34 (+2.70%)
Gas: 0.44 Gwei

Transaction Decoder

Block:
21520619 at Dec-31-2024 06:18:59 AM +UTC
Transaction Fee:
0.001073967547313661 ETH $4.00
Gas Used:
169,169 Gas / 6.348489069 Gwei

Emitted Events:

390 TWCloneFactory.ProxyDeployed( implementation=Airdrop, proxy=Airdrop, deployer=[Sender] 0xa06fcfcaef6c7c241930e76ccb574fe1499f06b3 )
391 Airdrop.OwnerUpdated( prevOwner=0x00000000...000000000, newOwner=[Sender] 0xa06fcfcaef6c7c241930e76ccb574fe1499f06b3 )
392 Airdrop.ContractURIUpdated( prevURI=, newURI=ipfs://QmRSyv2MQpdk8r6hxTseY6iqJYZy7w5EGqMa3ZH7vdZ5G1/0 )
393 Airdrop.Initialized( version=1 )

Account State Difference:

  Address   Before After State Difference Code
0x46AACAE0...32cc371A4
0 Eth
Nonce: 0
0 Eth
Nonce: 1
From: 0 To: 497590261154554171967156765956176745753150981838640007690574188739709507610203194904919922928549403121507315
0x76F948E5...Bf524805E
(beaverbuild)
5.997667951716588621 Eth5.997669347360838621 Eth0.00000139564425
0xa06FCfca...1499f06B3
0.01024342289608 Eth
Nonce: 27
0.009169455348766339 Eth
Nonce: 28
0.001073967547313661

Execution Trace

TWCloneFactory.deployProxyByImplementation( _implementation=0x5a8f7440455Ee05b77eDAbE0dc363b71bC5D2c41, _data=0xF399E22E000000000000000000000000A06FCFCAEF6C7C241930E76CCB574FE1499F06B300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000037697066733A2F2F516D52537976324D5170646B3872366878547365593669714A595A793777354547714D61335A483776645A3547312F30000000000000000000, _salt=00000000000000000000000000000000000000000000000000000000014860E7 ) => ( deployedProxy=0x46AACAE07fd49205262eE6524a3ccEC32cc371A4 )
  • Airdrop.3d602d80( )
  • Airdrop.initialize( _defaultAdmin=0xa06FCfcaeF6c7c241930e76ccb574FE1499f06B3, _contractURI=ipfs://QmRSyv2MQpdk8r6hxTseY6iqJYZy7w5EGqMa3ZH7vdZ5G1/0 )
    • Airdrop.initialize( _defaultAdmin=0xa06FCfcaeF6c7c241930e76ccb574FE1499f06B3, _contractURI=ipfs://QmRSyv2MQpdk8r6hxTseY6iqJYZy7w5EGqMa3ZH7vdZ5G1/0 )
      File 1 of 3: TWCloneFactory
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      16
      // SPDX-License-Identifier: Apache-2.0
      pragma solidity ^0.8.11;
      /// @author thirdweb
      // $$\\ $$\\ $$\\ $$\\ $$\\
      // $$ | $$ | \\__| $$ | $$ |
      // $$$$$$\\ $$$$$$$\\ $$\\ $$$$$$\\ $$$$$$$ |$$\\ $$\\ $$\\ $$$$$$\\ $$$$$$$\\
      // \\_$$ _| $$ __$$\\ $$ |$$ __$$\\ $$ __$$ |$$ | $$ | $$ |$$ __$$\\ $$ __$$\\
      // $$ | $$ | $$ |$$ |$$ | \\__|$$ / $$ |$$ | $$ | $$ |$$$$$$$$ |$$ | $$ |
      // $$ |$$\\ $$ | $$ |$$ |$$ | $$ | $$ |$$ | $$ | $$ |$$ ____|$$ | $$ |
      // \\$$$$ |$$ | $$ |$$ |$$ | \\$$$$$$$ |\\$$$$$\\$$$$ |\\$$$$$$$\\ $$$$$$$ |
      // \\____/ \\__| \\__|\\__|\\__| \\_______| \\_____\\____/ \\_______|\\_______/
      import "./extension/interface/IContractFactory.sol";
      import "@openzeppelin/contracts/metatx/ERC2771Context.sol";
      import "@openzeppelin/contracts/utils/Multicall.sol";
      import "@openzeppelin/contracts/proxy/Clones.sol";
      contract TWCloneFactory is Multicall, ERC2771Context, IContractFactory {
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 2 of 3: Airdrop
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      // SPDX-License-Identifier: Apache-2.0
      pragma solidity ^0.8.0;
      /**
      @title ERC-1155 Multi Token Standard
      @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1155.md
      Note: The ERC-165 identifier for this interface is 0xd9b67a26.
      */
      interface IERC1155 {
      /**
      @dev Either `TransferSingle` or `TransferBatch` MUST emit when tokens are transferred, including zero value transfers as well as minting or
                  burning (see "Safe Transfer Rules" section of the standard).
      The `_operator` argument MUST be msg.sender.
      The `_from` argument MUST be the address of the holder whose balance is decreased.
      The `_to` argument MUST be the address of the recipient whose balance is increased.
      The `_id` argument MUST be the token type being transferred.
      The `_value` argument MUST be the number of tokens the holder balance is decreased by and match what the recipient balance is increased by.
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

      File 3 of 3: Airdrop
      1
      2
      3
      4
      5
      6
      7
      8
      9
      10
      11
      12
      13
      14
      15
      // SPDX-License-Identifier: Apache-2.0
      pragma solidity ^0.8.0;
      /**
      @title ERC-1155 Multi Token Standard
      @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1155.md
      Note: The ERC-165 identifier for this interface is 0xd9b67a26.
      */
      interface IERC1155 {
      /**
      @dev Either `TransferSingle` or `TransferBatch` MUST emit when tokens are transferred, including zero value transfers as well as minting or
                  burning (see "Safe Transfer Rules" section of the standard).
      The `_operator` argument MUST be msg.sender.
      The `_from` argument MUST be the address of the holder whose balance is decreased.
      The `_to` argument MUST be the address of the recipient whose balance is increased.
      The `_id` argument MUST be the token type being transferred.
      The `_value` argument MUST be the number of tokens the holder balance is decreased by and match what the recipient balance is increased by.
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX