ETH Price: $2,004.35 (-2.85%)

Transaction Decoder

Block:
12066470 at Mar-19-2021 02:29:34 AM +UTC
Transaction Fee:
0.01082325 ETH $21.68
Gas Used:
86,586 Gas / 125 Gwei

Emitted Events:

224 AxieClockAuction.AuctionSuccessful( _nftAddress=AxieCore, _tokenId=168269, _totalPrice=150000000000000000, _winner=[Sender] 0x66945134ad52aa1d99e047bdec534f3913a38eb1 )
225 AxieCore.Approval( _owner=[Receiver] AxieClockAuction, _approved=0x00000000...000000000, _tokenId=168269 )
226 AxieCore.Transfer( _from=[Receiver] AxieClockAuction, _to=[Sender] 0x66945134ad52aa1d99e047bdec534f3913a38eb1, _tokenId=168269 )

Account State Difference:

  Address   Before After State Difference Code
0x15cABad1...8db9BCd65 1.173096307980973891 Eth1.316721307980973891 Eth0.143625
(Spark Pool)
113.50120233290715495 Eth113.51202558290715495 Eth0.01082325
0x66945134...913A38eb1
0.444147825141975307 Eth
Nonce: 8
0.283324575141975307 Eth
Nonce: 9
0.16082325
0xF4985070...c9a2dd9e2
(Axie Infinity: Axie Clock Auction)
707.90776199656975476 Eth707.91413699656975476 Eth0.006375
0xF5b0A3eF...F3FFEcb8d

Execution Trace

ETH 0.15 AxieClockAuction.bid( _nftAddress=0xF5b0A3eFB8e8E4c201e2A935F110eAaF3FFEcb8d, _tokenId=168269 )
  • ETH 0.143625 0x15cabad1f726aa1a7d0c49e7fa3ce0d8db9bcd65.CALL( )
  • AxieCore.transferFrom( _from=0xF4985070Ce32b6B1994329DF787D1aCc9a2dd9e2, _to=0x66945134ad52aA1d99E047bDEc534F3913A38eb1, _tokenId=168269 )
    • 0xe8bd438d0383cf4d19641eaa4793eddc6cebeaf1.f7ebc39a( )
      • AxieCore.CALL( )
        File 1 of 2: AxieClockAuction
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        pragma solidity ^0.4.19;
        // File: contracts/erc/erc721/IERC721Base.sol
        /// @title ERC-721 Non-Fungible Token Standard
        /// @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-721.md
        /// Note: the ERC-165 identifier for this interface is 0x6466353c
        interface IERC721Base /* is IERC165 */ {
        /// @dev This emits when ownership of any NFT changes by any mechanism.
        /// This event emits when NFTs are created (`from` == 0) and destroyed
        /// (`to` == 0). Exception: during contract creation, any number of NFTs
        /// may be created and assigned without emitting Transfer. At the time of
        /// any transfer, the approved address for that NFT (if any) is reset to none.
        event Transfer(address indexed _from, address indexed _to, uint256 _tokenId);
        /// @dev This emits when the approved address for an NFT is changed or
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

        File 2 of 2: AxieCore
        1
        2
        3
        4
        5
        6
        7
        8
        9
        10
        11
        12
        13
        14
        15
        16
        pragma solidity ^0.4.19;
        // File: contracts/erc/erc165/IERC165.sol
        /// @title ERC-165 Standard Interface Detection
        /// @dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-165.md
        interface IERC165 {
        /// @notice Query if a contract implements an interface
        /// @param interfaceID The interface identifier, as specified in ERC-165
        /// @dev Interface identification is specified in ERC-165. This function
        /// uses less than 30,000 gas.
        /// @return `true` if the contract implements `interfaceID` and
        /// `interfaceID` is not 0xffffffff, `false` otherwise
        function supportsInterface(bytes4 interfaceID) external view returns (bool);
        }
        XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX