001 - Mountain View Apts
CA: 0x649eDd9Af91646348aa4BA197D71eB05B9546d5a More information on the ASXRWA001 contract can be found using the link below.
// ERC721Drop/ASXRWA001
// *********************
// This contract is an example of the deployed
// ASXRWA001 contract using the Thirdweb library.
// It inherits from the ERC721Drop base contract
// and initializes it with parameters such as
// the default admin, name, symbol, royalty recipient,
// royalty basis points, and primary sale recipient.
// SPDX-License-Identifier: Apache-2.0
pragma solidity ^0.8.0;
import "@thirdweb-dev/contracts/base/ERC721Drop.sol";
contract ASXRWA001 is ERC721Drop {
constructor(
address _defaultAdmin,
string memory _name,
string memory _symbol,
address _royaltyRecipient,
uint128 _royaltyBps,
address _primarySaleRecipient
)
ERC721Drop(
_defaultAdmin,
_name,
_symbol,
_royaltyRecipient,
_royaltyBps,
_primarySaleRecipient
)
{}
}
Last updated