Initialize the Contract
Configure and get the contract up-and-running.
Generate JSON with arguments
> const initHash = {
name: "Poodle Coin",
symbol: "POOD",
decimals: 6,
initial_balances: [
{ address: "<validator-self-delegate-address>", amount: "12345678000"},
]
};
< undefined
> JSON.stringify(initHash);
< '{"name":"Poodle Coin","symbol":"POOD","decimals":6,"initial_balances":[{"address":"<validator-self-delegate-address>","amount":"12345678000"}]}'Instantiate the contract
Last updated
