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

Freeze Sell

Freeze funds, generally used with proxy, send the inscription to zero address, or platform address.

Key
Required
Description

p

yes

protocol name,ierc-20, there is no difference between the two.

op

yes

proxy_transfer

freeze

yes

array object, Agent information.

For example:

// The buyer is buying and the seller's token is frozen;  send x eth from self to 0x0000000000000000000000000000000000000000 or 0x33302dbff493ed81ba2e7e35e2e8e833db023333 or platform address
{
  "p": "ierc-20",
  "op": "freeze_sell",
  "freeze": [
    {
      "tick": "ethi", // Seller Signature Information
      "nonce": (+new Date()).toString(), // Seller Signature Information
      "platform": "0x33302dbff493ed81ba2e7e35e2e8e833db023333", // Seller signature information: corresponding platform
      "seller": "0x22222222222222222222222222222222222222222222", // Freeze the corresponding seller
      "amt": "333", // Seller Signature Information
      "value": "0.001", // Seller Signature Information
      "gasPrice": "33988168450", // gasPrice
      "sign": sign // The seller authorizes the signature to verify the use
    }
  ]
}

PreviousTransferNextProxy Transfer

Last updated 1 year ago

πŸ’»