interface Snip20InitMsg {
    admin: string;
    config: Snip20InitConfig;
    decimals: number;
    initial_balances?: {
        address: string;
        amount: string;
    }[];
    name: string;
    prng_seed: string;
    symbol: string;
    [name: string]: unknown;
}

Hierarchy (view full)

Indexable

[name: string]: unknown

Properties

admin: string

The admin of the token.

The settings for the token.

decimals: number

The decimal precision of the token.

initial_balances?: {
    address: string;
    amount: string;
}[]

Initial balances.

Type declaration

  • address: string
  • amount: string
name: string

The full name of the token.

prng_seed: string

The PRNG seed for the token.

symbol: string

The market symbol of the token.

Generated using TypeDoc