add_minter

An entrypoint that adds or removes minters that can interact with mint_tokens entrypoint.

Call parameters

type add_minter_type    is [@layout:comb] record [
  minter                  : address;
  register                : bool;
]
FieldTypeDescription

minter

address

An address of a minter to add or remove

register

bool

Flag that indicates: admin adds a minter or removes

Usage

const proxyMinterAddress = "KT1...";
const params = {
    minter: "tz1.../KT1...",
    add: true, // false - to remove a minter
};
const proxyMinter = await tezos.contract.at(proxyMinterAddress);
const operation = await proxyMinter.methodsObject.add_minter(params).send();

await operation.confirmation();

Errors

  • Not-admin - sender of the transaction is not current administrator.

Last updated