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-1

Release Date : 12.21.2023 Specification: Era-20 Deployment format

from: deployer wallet 
to: deployer wallet  
value: service fee

interface Deploy {
   p: string;
   op: string;
   tick: string;
   max: integer;
   lim: int;
}
// Example :
{
   "p": "era-20",
   "op": "deploy",
   "tick": "tokenname",
   "max": "10000000",
   "lim": "100",
}

To deploy a new token, the wallet must create an inscription transaction in accordance with the Deploy interface when sending Ethereum to itself.

The amount sent (value) determines the service fee to be sent when minting the token. Transactions that do not follow this format will be considered failed.

// Types
"p" => Protocol
"op" => Operation
"tick" => Token Ticker
"max" => Maximum Supply
"lim" => Mint Limit per Transaction

*Important : If 2 deploy inscriptions are created with the same tick name, the first one written to the blockchain will be valid.

PreviousWhat are ERIPs?NextERIP-2

Last updated 1 year ago