ETH Price: $2,640.96 (+3.56%)

Transaction Decoder

Block:
18110436 at Sep-11-2023 03:28:47 AM +UTC
Transaction Fee:
0.00611149903398232 ETH $16.14
Gas Used:
683,120 Gas / 8.946450161 Gwei

Account State Difference:

  Address   Before After State Difference Code
(Titan Builder)
24.549947895627007832 Eth24.550016207627007832 Eth0.000068312
0x751A398c...E415061df
0.034723354479658958 Eth
Nonce: 410
0.028611855445676638 Eth
Nonce: 411
0.00611149903398232

Execution Trace

TWCloneFactory.deployProxyByImplementation( _implementation=0xaE5be6d490C47c7417e91B7911d3A0Ce3553438d, _data=0xDFAD80A6000000000000000000000000751A398C5D2A19FA4C8428014DC3A35E415061DF00000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001E0000000000000000000000000751A398C5D2A19FA4C8428014DC3A35E415061DF000000000000000000000000751A398C5D2A19FA4C8428014DC3A35E415061DF000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044C696C7900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000345544800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000037697066733A2F2F516D584B42627057744B476E5A354A4565623262687776564B394259616E7A6F324161756541727273636732584A2F300000000000000000000000000000000000000000000000000000000000000000000000000000000002000000000000000000000000C82BBE41F2CF04E3A8EFA18F7032BDD7F6D98A8100000000000000000000000084A0856B038EAAD1CC7E297CF34A7E72685A8693, _salt=3138313130343237000000000000000000000000000000000000000000000000 ) => ( deployedProxy=0x0000000000000000000000000000000000000000 )
  • 0x0762745d9fd4ac31739eb9b32c950faa9aed66c7.3d602d80( )
  • 0x0762745d9fd4ac31739eb9b32c950faa9aed66c7.dfad80a6( )
    • TokenERC20.initialize( _defaultAdmin=0x751A398c5d2a19FA4c8428014Dc3A35E415061df, _name=Lily, _symbol=ETH, _contractURI=ipfs://QmXKBbpWtKGnZ5JEeb2bhwvVK9BYanzo2AaueArrscg2XJ/0, _trustedForwarders=[0xc82BbE41f2cF04e3a8efA18F7032BDD7f6d98a81, 0x84a0856b038eaAd1cC7E297cF34A7e72685A8693], _primarySaleRecipient=0x751A398c5d2a19FA4c8428014Dc3A35E415061df, _platformFeeRecipient=0x751A398c5d2a19FA4c8428014Dc3A35E415061df, _platformFeeBps=0 )
      File 1 of 2: 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 2: TokenERC20
      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.0;
      /**
      * @title ERC20 interface
      * @dev see https://github.com/ethereum/EIPs/issues/20
      */
      interface IERC20 {
      function totalSupply() external view returns (uint256);
      function balanceOf(address who) external view returns (uint256);
      function allowance(address owner, address spender) external view returns (uint256);
      function transfer(address to, uint256 value) external returns (bool);
      function approve(address spender, uint256 value) external returns (bool);
      function transferFrom(
      address from,
      address to,
      uint256 value
      XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX