Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x46AACAE0...32cc371A4 |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 1
| |||
0x76F948E5...Bf524805E | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 5.997667951716588621 Eth | 5.997669347360838621 Eth | 0.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 )
-
deployProxyByImplementation[TWCloneFactory (ln:21)]
_msgSender[TWCloneFactory (ln:26)]
_msgSender[TWCloneFactory (ln:35)]
isTrustedForwarder[ERC2771Context (ln:77)]
_msgSender[ERC2771Context (ln:84)]
cloneDeterministic[TWCloneFactory (ln:27)]
ProxyDeployed[TWCloneFactory (ln:28)]
_msgSender[TWCloneFactory (ln:28)]
_msgSender[TWCloneFactory (ln:35)]
isTrustedForwarder[ERC2771Context (ln:77)]
_msgSender[ERC2771Context (ln:84)]
functionCall[TWCloneFactory (ln:31)]
functionCall[Address (ln:256)]
File 1 of 3: TWCloneFactory
File 2 of 3: Airdrop
File 3 of 3: Airdrop
12345678910111213141516// SPDX-License-Identifier: Apache-2.0pragma 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 {
File 2 of 3: Airdrop
123456789101112131415// SPDX-License-Identifier: Apache-2.0pragma solidity ^0.8.0;/**@title ERC-1155 Multi Token Standard@dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1155.mdNote: 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 orburning (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.
File 3 of 3: Airdrop
123456789101112131415// SPDX-License-Identifier: Apache-2.0pragma solidity ^0.8.0;/**@title ERC-1155 Multi Token Standard@dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1155.mdNote: 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 orburning (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.