Withdraw Elrond NFT's

Manually withdrawing listed/staked NFT's from DR (Elrond/MultiversX)

You can withdraw your NFT’s that are listed/staked on https://elrond.deadrare.io/ by accessing the contract manually.

The ABI file and contract address are different for listed or staked NFT's

Listed NFT's

To find out which NFT’s you have listed on DR:

  • Read Endpoints - auctionsBySellerAddress - input your wallet address, run query

  • Result = NFT’s you own that are currently up for sale on DR (NFT nonces) e.g.

[

"123456”,

“234567”

]

To find out detailed info of each NFT before withdrawing:

  • Read Endpoints - getFullAuctionData - input the nonce

  • This fetches details of the NFT in question

To withdraw:

  • Write Endpoints - withdraw - input the NFT nonce you wish to withdraw

  • Send transaction and sign in your wallet.

  • repeat for each NFT

Staked NFT’s

To find out which NFT’s you have staked on DR:

  • Read Endpoints - stakedTokensByOwner - input your wallet address, run query

  • Result = NFT’s you own that are staked on DR (NFT nonces) e.g.

  • [

  • "123456”,

  • “234567”

  • ]

To find out detailed info of each NFT before withdrawing:

  • Read Endpoints - getFullStakedToken - input the nonce

  • This fetches details of the NFT in question

To withdraw:

  • Write Endpoints - withdraw - input the NFT nonce you wish to withdraw

  • Send transaction and sign in your wallet.

  • repeat for each NFT

Last updated