ERA-20
  • Inscriptions
    • What are Inscriptions?
    • Story of Inscriptions
  • Era-20
    • What is Calldata?
    • Is era-20 decentralized?
    • Is era-20 trustless?
  • What are ERIPs?
    • ERIP-1
    • ERIP-2
    • ERIP-3
    • ERIP-4
    • ERIP-5
    • ERIP-6
    • ERIP-7
  • Explorer
Powered by GitBook
On this page
  1. What are ERIPs?

ERIP-7

Release Date : 12.21.2023 Specification: Era-20 Burn format

from: deployer wallet 
to: deployer wallet 

interface Burn {
   p: string;
   op: string;
   tick: string;
   amt: int;
}
//Example :
{
   "p": "era-20",
   "op": "burn",
   "tick": "token",
   "amt": "1000000"
}




To burn some token, the wallet must create an inscription transaction in accordance with the Burn interface when sending (can be zero) Ethereum to itself.

The amount to be burned must be less than the max value in the deploy inscription code and greater than the number of minted tokens. Otherwise the operation fails.

// Types
"p" => Protocol
"op" => Operation
"tick" => Token Ticker
"amt" => Burn Amount
PreviousERIP-6

Last updated 1 year ago