> For the complete documentation index, see [llms.txt](https://asx-1.gitbook.io/asx-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://asx-1.gitbook.io/asx-docs/rwa-nft/contracts/001-mountain-view-apts.md).

# 001 - Mountain View Apts

CA: 0x649eDd9Af91646348aa4BA197D71eB05B9546d5a\
\
More information on the ASXRWA001 contract can be found using the link below.

{% embed url="<https://portal.thirdweb.com/contracts/build/base-contracts/erc-721/drop>" %}

```
// 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
        )
    {}
}
```
