Response Schema for AEX9 contract

interface Aex9Response {
    contractId: `ct_${string}`;
    contractTxHash: `th_${string}`;
    decimals: number;
    eventSupply: bigint;
    extensions?: string[];
    holders: number;
    initialSupply: bigint;
    invalid: boolean;
    name: string;
    symbol: string;
}

Properties

contractId: `ct_${string}`

Id of the contract of the AEX9 tokens

contractTxHash: `th_${string}`

Transaction hash of the contract creation

decimals: number

The number of decimals for AEX9 token

eventSupply: bigint

Token supply updated on event basis (Mint, Burn, Swap)

extensions?: string[]

Extensions implemented by the contract

holders: number

Count of accounts having balance (nil when contract is not complaint)

initialSupply: bigint

Token supply right after contract's creation

invalid: boolean

True if the contract is invalid

name: string

Name of AEX9 token

symbol: string

Symbol of AEX9 token