mint_tokens
Call parameters
type mint_gov_tok_type is [@layout:comb] record [
receiver : address;
amount : nat;
]
type mint_gov_toks_type is list(mint_gov_tok_type)Field
Type
Description
Usage
const proxyMinterAddress = "KT1...";
const receiver = "tz1.../KT1...";
const amount = 100;
const mintParams = [
{ receiver, amount },
...
];
const proxyMinter = await tezos.contract.at(proxyMinterAddress);
const operation = await proxyMinter.methods.mint_tokens(mintParams).send();
await operation.confirmation();Errors
Last updated