Transaction Hash:
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:
184 |
AsylumSylvester.ApprovalForAll( owner=[Sender] 0x815428dd0a945fc7d8bd1edd7c82b2493e6ffc74, operator=0xAC9B747e...6713C46FC, approved=True )
|
Account State Difference:
Address | Before | After | State Difference | ||
---|---|---|---|---|---|
0x002e0800...64949070d
Miner
| (2Miners: SOLO) | 25.593133505356126023 Eth | 25.593249092856126023 Eth | 0.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)]
_msgSender[ERC721A (ln:719)]
ApproveToCaller[ERC721A (ln:719)]
_msgSender[ERC721A (ln:720)]
ApprovalForAll[ERC721A (ln:721)]
_msgSender[ERC721A (ln:721)]
1234567891011121314151617181920212223242526// 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;