Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add NFT page #16

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions docs/integrations/nft_status.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Drop NFT

Drop protocol allows you both to stake your asset and unstake them whenever you want. Unstaking process consists of:

- Unbond request
- Burning your dAsset & consequent NFT Minting
- Wait for unbonding period (usually it takes 21 day)
- Withdraw your assets through appropriate NFT item

## Get NFT Status

First, go to our [deployment docs](https://docs.drop.money/deployments/mainnet/#contracts), find your deployment and from deployment table pick up `nft_querier` and go to [celat.one](https://neutron.celat.one/neutron-1/), paste it's address into `Search` and go to contract. After that, scroll down and find `nft_state` query, click on it. In `Query Msg` field paste `nft_id` field with your NFT ID

Example of `Query Msg`:

```json
{
"nft_state": {
"nft_id": "134_neutron1waj5lmujv6dyqypntp3cts4gkpgnqcvr5ztz4n_6"
}
}
```

As the result of query you get either `ready` if NFT is ready for withdraw or `unready` in opposite case. If you enter incorrect `nft_id` you get error that says there is no such NFT ID
1 change: 1 addition & 0 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ const sidebars = {
"integrations/referral",
"integrations/lsm_staking",
"integrations/tvl",
"integrations/nft_status",
],
},
{
Expand Down