IERC Document
  • ๐Ÿ“œIERC Protocol
    • Overview
    • Why use IERC 20?
    • Use Cases and Features
    • Roadmap
  • ๐ŸŒ User's Guide
    • Explore IERC-20
    • How To Mine
    • How To Deploy
    • How To Transfer
    • Market
      • How To Buy
      • How To List
      • How To Bulk Buy
  • ๐Ÿ”IERC Swap
    • How to IERC Swap
    • How to add Liquidity
    • Liquidity providers (LPs)
    • FAQ
  • ๐Ÿ”ฅNew Features
    • PoW&DPoS
    • ๐Ÿ”จHow to PoW&DPoS Mining
    • IERC PoW
      • Phrase I: PoW - Base
      • โ›๏ธHow to Mine
      • Phase II: PoW - Advanced
      • ๐ŸคHow to Participate
    • IERC DPoS
      • ๐Ÿ“’Staking Rules
      • ๐Ÿ’ฆHow to Stake
      • ๐ŸŽRewards Program
    • Tokenomics
    • FAQ
  • ๐Ÿ’ปDevs
    • IERC-20
      • Deploy
      • Mint
      • Transfer
      • Freeze Sell
      • Proxy Transfer
      • Stake
      • Unstake
      • More
    • DINX EVM (beta)
      • RPC
      • Add Token
      • Explorer
      • API
  • ๐ŸคตAmbassador Program
  • โ“FAQ
Powered by GitBook
On this page
  1. Devs
  2. IERC-20

Unstake

In unstake, just like in Stake. It is necessary to send to the address: 0x0000000000000000000000000000000000000000. The following data are mandatory fields. Please enter the correct staking pool ID and its corresponding tick.

Key
Required
Description

p

yes

protocol name๏ผŒierc-20

op

yes

unstake

pool

yes

staking pool address

id

yes

staking pool id

details

yes

Unstaking Pool Details, including the tick name and the amt quantity.

Requires attention:

Tthe details include the tick name corresponding to the unstake, as well as the quantity to be unstaked (amt).

For example:

// unstake; send 0eth from self to 0x0000000000000000000000000000000000000000;
 {
     "p": "ierc-20",
     "op": "unstake",
     "pool": "0x0000000000000000000000000000000000000000",
     "id": "1",
     "details": [
       {
         "tick": "ethi",
         "amt": "10000"
       }
     ]
 }
PreviousStakeNextMore

Last updated 1 year ago

๐Ÿ’ป