Options for token contract creation

Export

TokenContractOptions

interface TokenContractOptions {
    name: string;
    symbol: string;
    total_supply: string;
}

Properties

name: string

The name of the token

Memberof

TokenContractOptions

symbol: string

The symbol of the token

Memberof

TokenContractOptions

total_supply: string

The total supply of the token denominated in the whole amount of the token.

Memberof

TokenContractOptions