TokenMintTransactionParams

Type Alias: TokenMintTransactionParams

Properties overview

  • amount: number;
  • to: string;
type TokenMintTransactionParams = DeployedTokenTransactionBaseParams & {
  amount: number;
  to: string;
  txType: "token:mint";
};

Defined in: packages/api/src/client/types.gen.ts:462

Type declaration

amount

amount: number;

The amount of tokens to mint.

to

to: string;

The address to which tokens are to be minted.

txType?

optional txType: "token:mint";

Must be "token:mint"