Transaction Hash:
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 | ||
---|---|---|---|---|---|
0x15cABad1...8db9BCd65 | 1.173096307980973891 Eth | 1.316721307980973891 Eth | 0.143625 | ||
0x5A0b54D5...D3E029c4c
Miner
| (Spark Pool) | 113.50120233290715495 Eth | 113.51202558290715495 Eth | 0.01082325 | |
0x66945134...913A38eb1 |
0.444147825141975307 Eth
Nonce: 8
|
0.283324575141975307 Eth
Nonce: 9
| 0.16082325 | ||
0xF4985070...c9a2dd9e2 | (Axie Infinity: Axie Clock Auction) | 707.90776199656975476 Eth | 707.91413699656975476 Eth | 0.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( )
-
bid[AxieClockAuction (ln:387)]
_bid[AxieClockAuction (ln:396)]
_isOnAuction[AxieClockAuction (ln:614)]
_getCurrentPrice[AxieClockAuction (ln:618)]
_computeCurrentPrice[AxieClockAuction (ln:465)]
_removeAuction[AxieClockAuction (ln:627)]
_computeCut[AxieClockAuction (ln:634)]
transfer[AxieClockAuction (ln:645)]
transfer[AxieClockAuction (ln:658)]
AuctionSuccessful[AxieClockAuction (ln:662)]
_transfer[AxieClockAuction (ln:397)]
_getNftContract[AxieClockAuction (ln:580)]
transferFrom[AxieClockAuction (ln:583)]
File 1 of 2: AxieClockAuction
File 2 of 2: AxieCore
12345678910111213141516pragma 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 0x6466353cinterface 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
File 2 of 2: AxieCore
12345678910111213141516pragma 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.mdinterface 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` otherwisefunction supportsInterface(bytes4 interfaceID) external view returns (bool);}