ETH Price: $2,555.61 (-6.87%)

Transaction Decoder

Block:
15206973 at Jul-24-2022 06:40:03 PM +UTC
Transaction Fee:
0.000476500059141505 ETH $1.22
Gas Used:
46,235 Gas / 10.306046483 Gwei

Emitted Events:

Account State Difference:

  Address   Before After State Difference Code
(2Miners: SOLO)
25.593133505356126023 Eth25.593249092856126023 Eth0.0001155875
0x815428DD...93e6ffC74
0.027348044057562946 Eth
Nonce: 38
0.026871543998421441 Eth
Nonce: 39
0.000476500059141505
0x9db76501...6a6155545

Execution Trace

AsylumSylvester.setApprovalForAll( operator=0xAC9B747e1f6bc8b5C3A3Bac8404f80D6713C46FC, approved=True )
setApprovalForAll[ERC721A (ln:718)]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
/*
________ ______ _____
__ ___/____ ____ /__ _______________ /_____________
_____ \\__ / / /_ /__ | / / _ \\_ ___/ __/ _ \\_ ___/
____/ /_ /_/ /_ / __ |/ // __/(__ )/ /_ / __/ /
/____/ _\\__, / /_/ _____/ \\___//____/ \\__/ \\___//_/
/____/
*/
pragma solidity >=0.8.9 <0.9.0;
import "erc721a/contracts/extensions/ERC721AQueryable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
interface IASM {
function safeTransferFrom(address from, address to, uint256 tokenId) external;
function ownerOf(uint256 tokenId) external view returns (address);
function balanceOf(address ownerAddress) external view returns (uint256);
}
interface IHP {
function safeTransferFrom(address from, address to, uint256 tokenId) external;
function ownerOf(uint256 tokenId) external view returns (address);
function balanceOf(address ownerAddress) external view returns (uint256);
}
contract AsylumSylvester is ERC721AQueryable, Ownable, ReentrancyGuard {
using Strings for uint256;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX