How do we remove NFT’s from our AstroDAO wallet? #655
-
We would love to remove an NFT from our DAO NFT wallet but can’t seem to figure out how. Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 12 replies
-
Hey, you should be able to do this via custom function in Astro. By removing do you mean burn the NFT? |
Beta Was this translation helpful? Give feedback.
-
Checking out the assets of the DAO in question, for reference: https://app.astrodao.com/dao/near-nft-dao.sputnik-dao.near/treasury/nfts Gather info for Custom Function CallIt's not possible to get the Until that feature ships, we can work around this by viewing the DAO treasury in Paras: https://paras.id/near-nft-dao.sputnik-dao.near/collectibles Let's say we want to transfer this NEAR Misfit: https://paras.id/token/misfits.tenk.near::163 Let's remember https://explorer.near.org/accounts/misfits.tenk.near What we're really interested in is a transfer 🔍 https://explorer.near.org/transactions/7TqiHddWiHqCUW7dD1vBUub7Y3ZBNyxNdxsbKeHgAV8U This function call of Now we have: Contract: Except you'd want to replace Make
|
Beta Was this translation helpful? Give feedback.
Checking out the assets of the DAO in question, for reference:
https://app.astrodao.com/dao/near-nft-dao.sputnik-dao.near/treasury/nfts
Gather info for Custom Function Call
It's not possible to get the
token_id
from the interface, which is a tracked feature enhancement that will be in verseion 3.0.3:#670
Until that feature ships, we can work around this by viewing the DAO treasury in Paras:
https://paras.id/near-nft-dao.sputnik-dao.near/collectibles
Let's say we want to transfer this NEAR Misfit:
https://paras.id/token/misfits.tenk.near::163
Let's remember
163
which is thetoken_id
. The data we need to make a custom function call are the contract and it's parameters. Off to the explorer …