Transaction Hash:
Block:
17952032 at Aug-19-2023 11:15:47 PM +UTC
Transaction Fee:
0.004178583598858892 ETH
$10.58
Gas Used:
307,774 Gas / 13.576792058 Gwei
Emitted Events:
224 |
TWCloneFactory.ProxyDeployed( implementation=AirdropERC20, proxy=AirdropERC20, deployer=[Sender] 0x32addbb05d7be89017f06da99c2160c2d1ec62f0 )
|
225 |
AirdropERC20.ContractURIUpdated( prevURI=, newURI=ipfs://QmQuxPqm7e7qDHR5TLopJpQJskMNEMvnn7UWFxUEHBLTGi/0 )
|
226 |
AirdropERC20.RoleGranted( role=0000000000000000000000000000000000000000000000000000000000000000, account=[Sender] 0x32addbb05d7be89017f06da99c2160c2d1ec62f0, sender=[Receiver] TWCloneFactory )
|
227 |
AirdropERC20.Initialized( version=1 )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x32addBB0...2D1eC62F0 |
0.043334038244563082 Eth
Nonce: 398
|
0.03915545464570419 Eth
Nonce: 399
| 0.004178583598858892 | ||
0x449f9d33...8b34D9F52 |
0 Eth
Nonce: 0
|
0 Eth
Nonce: 1
| |||
0x76F948E5...Bf524805E | |||||
0x95222290...5CC4BAfe5
Miner
| (beaverbuild) | 18.799563223514779811 Eth | 18.799594000914779811 Eth | 0.0000307774 |
Execution Trace
TWCloneFactory.deployProxyByImplementation( _implementation=0xBF0604e52Be144e519104f19b068D3ca0af75Aad, _data=0x3A105CFB00000000000000000000000032ADDBB05D7BE89017F06DA99C2160C2D1EC62F0000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000C00000000000000000000000000000000000000000000000000000000000000037697066733A2F2F516D51757850716D3765377144485235544C6F704A70514A736B4D4E454D766E6E3755574678554548424C5447692F300000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000C82BBE41F2CF04E3A8EFA18F7032BDD7F6D98A8100000000000000000000000084A0856B038EAAD1CC7E297CF34A7E72685A8693, _salt=3137393532303239000000000000000000000000000000000000000000000000 ) => ( deployedProxy=0x449f9d33BfC3C714d8f7d7DcEeE7f0a8b34D9F52 )
-
AirdropERC20.3d602d80( )
AirdropERC20.initialize( _defaultAdmin=0x32addBB05D7bE89017F06da99c2160C2D1eC62F0, _contractURI=ipfs://QmQuxPqm7e7qDHR5TLopJpQJskMNEMvnn7UWFxUEHBLTGi/0, _trustedForwarders=[0xc82BbE41f2cF04e3a8efA18F7032BDD7f6d98a81, 0x84a0856b038eaAd1cC7E297cF34A7e72685A8693] )
-
AirdropERC20.initialize( _defaultAdmin=0x32addBB05D7bE89017F06da99c2160C2D1eC62F0, _contractURI=ipfs://QmQuxPqm7e7qDHR5TLopJpQJskMNEMvnn7UWFxUEHBLTGi/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";