ETH Price: $2,516.73 (-8.91%)

Transaction Decoder

Block:
17377496 at May-31-2023 07:53:23 AM +UTC
Transaction Fee:
0.004893084565969582 ETH $12.31
Gas Used:
183,179 Gas / 26.712038858 Gwei

Account State Difference:

  Address   Before After State Difference Code
0xc5CB5390...86973d7dA
0.006388926261012698 Eth
Nonce: 44
0.001495841695043116 Eth
Nonce: 45
0.004893084565969582
(Fee Recipient: 0xe68...127)
1,078.973921856223337018 Eth1,078.973940174123337018 Eth0.0000183179

Execution Trace

DefusionAiFactoryProxy.3e5d877b( )
  • DefusionAiFactory.mint( _tokenId=762956631, _airdropAmount=1000000000000000000, _mintTo=0xc5CB539016d7BB5001De0dAb5574F1686973d7dA, dummyNum=209109, aigcType=2, _signature=0x14C0559CBC27BE92C69A380E8E222C097CF4F8AEA1EBD60F7165EE93860665A447C128D7E7C0DA5B72C0A1DED316FCBFA53D9A821A29F381614143FDF6ED110B1B, proj=0x0000000000000000000000000000000000000000, num=0, affCode= )
    • Null: 0x000...001.1956aeda( )
    • DefusionAiProxy.3b4d820e( )
      • DefusionAi.mint( to=0xc5CB539016d7BB5001De0dAb5574F1686973d7dA, tokenId=762956631, tokenInfo=[{name:aigcType, type:uint256, order:1, indexed:false, value:2, valueString:2}, {name:proj, type:address, order:2, indexed:false, value:0x0000000000000000000000000000000000000000, valueString:0x0000000000000000000000000000000000000000}, {name:num, type:uint256, order:3, indexed:false, value:0, valueString:0}, {name:boosts, type:uint256, order:4, indexed:false, value:209109, valueString:209109}, {name:timestamp, type:uint256, order:5, indexed:false, value:1685519603, valueString:1685519603}] )
        File 1 of 4: DefusionAiFactoryProxy
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        /***
        *
        *
        ██████╗ ███████╗███████╗██╗ ██╗███████╗██╗ ██████╗ ███╗ ██╗ █████╗ ██╗
        ██╔══██╗██╔════╝██╔════╝██║ ██║██╔════╝██║██╔═══██╗████╗ ██║██╔══██╗██║
        ██║ ██║█████╗ █████╗ ██║ ██║███████╗██║██║ ██║██╔██╗ ██║███████║██║
        ██║ ██║██╔══╝ ██╔══╝ ██║ ██║╚════██║██║██║ ██║██║╚██╗██║██╔══██║██║
        ██████╔╝███████╗██║ ╚██████╔╝███████║██║╚██████╔╝██║ ╚████║██║ ██║██║
        ╚═════╝ ╚══════╝╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═══╝╚═╝ ╚═╝╚═╝
        *
        * https://defusion.ai
        * MIT License
        * ===========
        *
        * Copyright (c) 2023 defusionai
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 2 of 4: DefusionAiFactory
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        pragma solidity ^0.8.0;
        // SPDX-License-Identifier: MIT
        import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
        import "@openzeppelin/contracts/access/Ownable.sol";
        import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
        import "../library/ECDSA.sol";
        import "../library/EIP712.sol";
        import "../interface/IDefusionAi.sol";
        import "../interface/IPlayerBook.sol";
        interface IAIGC {
        function mint(address to, uint256 amount) external;
        function transferFrom(
        address from,
        address to,
        uint256 amount
        ) external returns (bool);
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 3 of 4: DefusionAiProxy
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        /***
        *
        *
        ██████╗ ███████╗███████╗██╗ ██╗███████╗██╗ ██████╗ ███╗ ██╗ █████╗ ██╗
        ██╔══██╗██╔════╝██╔════╝██║ ██║██╔════╝██║██╔═══██╗████╗ ██║██╔══██╗██║
        ██║ ██║█████╗ █████╗ ██║ ██║███████╗██║██║ ██║██╔██╗ ██║███████║██║
        ██║ ██║██╔══╝ ██╔══╝ ██║ ██║╚════██║██║██║ ██║██║╚██╗██║██╔══██║██║
        ██████╔╝███████╗██║ ╚██████╔╝███████║██║╚██████╔╝██║ ╚████║██║ ██║██║
        ╚═════╝ ╚══════╝╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═══╝╚═╝ ╚═╝╚═╝
        *
        * https://defusion.ai
        * MIT License
        * ===========
        *
        * Copyright (c) 2023 defusionai
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 4 of 4: DefusionAi
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        pragma solidity ^0.8.0;
        // SPDX-License-Identifier: MIT
        import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
        import "@openzeppelin/contracts/access/Ownable.sol";
        import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
        import "@openzeppelin/contracts/utils/Strings.sol";
        import "@openzeppelin/contracts/access/AccessControl.sol";
        import "../interface/IDefusionAi.sol";
        contract DefusionAi is
        IDefusionAi,
        AccessControl,
        ERC721Enumerable,
        Ownable,
        ReentrancyGuard
        {
        using Strings for uint256;
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX