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.
// 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.
Last updated