Transaction Hash:
Block:
18005452 at Aug-27-2023 10:37:23 AM +UTC
Transaction Fee:
0.003891889854181122 ETH
$18.14
Gas Used:
307,774 Gas / 12.645284703 Gwei
Emitted Events:
109 |
TWCloneFactory.ProxyDeployed( implementation=AirdropERC20, proxy=AirdropERC20, deployer=[Sender] 0xcc4ba2fc6ba57f6286e0310bc2d371c686f423a7 )
|
110 |
AirdropERC20.ContractURIUpdated( prevURI=, newURI=ipfs://QmYhkXZLjwr1jKkfbTCxfpSGYuLxHM3szT5N41W2zL5c2R/0 )
|
111 |
AirdropERC20.RoleGranted( role=0000000000000000000000000000000000000000000000000000000000000000, account=[Sender] 0xcc4ba2fc6ba57f6286e0310bc2d371c686f423a7, sender=[Receiver] TWCloneFactory )
|
112 |
AirdropERC20.Initialized( version=1 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x76F948E5...Bf524805E | |||||
0xaB6B4b11...7Dd78F14E
Miner
| 36.708454359288582657 Eth | 36.708854465488582657 Eth | 0.0004001062 | ||
0xCc4BA2Fc...686f423A7 |
0.071681348846619368 Eth
Nonce: 89
|
0.067789458992438246 Eth
Nonce: 90
| 0.003891889854181122 | ||
0xfaFE3E0a...573Be0fE1 |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 1
|
Execution Trace
TWCloneFactory.deployProxyByImplementation( _implementation=0xBF0604e52Be144e519104f19b068D3ca0af75Aad, _data=0x3A105CFB000000000000000000000000CC4BA2FC6BA57F6286E0310BC2D371C686F423A7000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000C00000000000000000000000000000000000000000000000000000000000000037697066733A2F2F516D59686B585A4C6A7772316A4B6B66625443786670534759754C78484D33737A54354E343157327A4C356332522F300000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000C82BBE41F2CF04E3A8EFA18F7032BDD7F6D98A8100000000000000000000000084A0856B038EAAD1CC7E297CF34A7E72685A8693, _salt=3138303035343530000000000000000000000000000000000000000000000000 ) => ( deployedProxy=0xfaFE3E0aD02567C7517DAe624092121573Be0fE1 )
-
AirdropERC20.3d602d80( )
AirdropERC20.initialize( _defaultAdmin=0xCc4BA2Fc6BA57f6286E0310bC2d371c686f423A7, _contractURI=ipfs://QmYhkXZLjwr1jKkfbTCxfpSGYuLxHM3szT5N41W2zL5c2R/0, _trustedForwarders=[0xc82BbE41f2cF04e3a8efA18F7032BDD7f6d98a81, 0x84a0856b038eaAd1cC7E297cF34A7e72685A8693] )
-
AirdropERC20.initialize( _defaultAdmin=0xCc4BA2Fc6BA57f6286E0310bC2d371c686f423A7, _contractURI=ipfs://QmYhkXZLjwr1jKkfbTCxfpSGYuLxHM3szT5N41W2zL5c2R/0, _trustedForwarders=[0xc82BbE41f2cF04e3a8efA18F7032BDD7f6d98a81, 0x84a0856b038eaAd1cC7E297cF34A7e72685A8693] )
-
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: AirdropERC20
File 3 of 3: AirdropERC20
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: AirdropERC20
12345678910111213141516// SPDX-License-Identifier: Apache-2.0pragma solidity ^0.8.11;/// @author thirdweb// $$\\ $$\\ $$\\ $$\\ $$\\// $$ | $$ | \\__| $$ | $$ |// $$$$$$\\ $$$$$$$\\ $$\\ $$$$$$\\ $$$$$$$ |$$\\ $$\\ $$\\ $$$$$$\\ $$$$$$$\\// \\_$$ _| $$ __$$\\ $$ |$$ __$$\\ $$ __$$ |$$ | $$ | $$ |$$ __$$\\ $$ __$$\\// $$ | $$ | $$ |$$ |$$ | \\__|$$ / $$ |$$ | $$ | $$ |$$$$$$$$ |$$ | $$ |// $$ |$$\\ $$ | $$ |$$ |$$ | $$ | $$ |$$ | $$ | $$ |$$ ____|$$ | $$ |// \\$$$$ |$$ | $$ |$$ |$$ | \\$$$$$$$ |\\$$$$$\\$$$$ |\\$$$$$$$\\ $$$$$$$ |// \\____/ \\__| \\__|\\__|\\__| \\_______| \\_____\\____/ \\_______|\\_______/// ========== External imports ==========import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol";import "@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol";// ========== Internal imports ==========import "../interfaces/airdrop/IAirdropERC20.sol";
File 3 of 3: AirdropERC20
12345678910111213141516// SPDX-License-Identifier: Apache-2.0pragma solidity ^0.8.11;/// @author thirdweb// $$\\ $$\\ $$\\ $$\\ $$\\// $$ | $$ | \\__| $$ | $$ |// $$$$$$\\ $$$$$$$\\ $$\\ $$$$$$\\ $$$$$$$ |$$\\ $$\\ $$\\ $$$$$$\\ $$$$$$$\\// \\_$$ _| $$ __$$\\ $$ |$$ __$$\\ $$ __$$ |$$ | $$ | $$ |$$ __$$\\ $$ __$$\\// $$ | $$ | $$ |$$ |$$ | \\__|$$ / $$ |$$ | $$ | $$ |$$$$$$$$ |$$ | $$ |// $$ |$$\\ $$ | $$ |$$ |$$ | $$ | $$ |$$ | $$ | $$ |$$ ____|$$ | $$ |// \\$$$$ |$$ | $$ |$$ |$$ | \\$$$$$$$ |\\$$$$$\\$$$$ |\\$$$$$$$\\ $$$$$$$ |// \\____/ \\__| \\__|\\__|\\__| \\_______| \\_____\\____/ \\_______|\\_______/// ========== External imports ==========import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol";import "@openzeppelin/contracts-upgradeable/utils/MulticallUpgradeable.sol";// ========== Internal imports ==========import "../interfaces/airdrop/IAirdropERC20.sol";