LINS-20 Document
  • 🏁INTRODUCTION
    • Overview
  • 🐜GET STARTED
    • How To Mint
  • 💻DEVELOPERS
    • Mint
    • Deploy
    • Transfer
    • Proxy Transfer
    • Freeze sell
    • More
Powered by GitBook
On this page
  1. DEVELOPERS

Freeze sell

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

Key
Required
Description

p

yes

protocol name,lins-20

op

yes

proxy_transfer

freeze

yes

array object, Agent information.

like this:

// The buyer is buying and the seller's token is frozen;  send x eth from self to 0x0000000000000000000000000000000000000000 or 0x33302dbff493ed81ba2e7e35e2e8e833db023333 or platform address
{
  "p": "lins-20",
  "op": "freeze_sell",
  "freeze": [
    {
      "tick": "lins", // 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
    }
  ]
}
PreviousProxy TransferNextMore
💻