Type Alias: TokenInfo

type TokenInfo = {
  adminContractsCode: string[];
  description: string;
  discord: string;
  facebook: string;
  imageBase64: string;
  imageUrl: string;
  instagram: string;
  name: string;
  symbol: string;
  telegram: string;
  tokenContractCode: string;
  twitter: string;
  website: string;
};

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

Type declaration

adminContractsCode?

optional adminContractsCode: string[];

Optional. Code for the admin contracts.

description?

optional description: string;

Optional. Description of the token.

discord?

optional discord: string;

Optional. Discord link associated with the token.

facebook?

optional facebook: string;

Optional. Facebook page associated with the token.

imageBase64?

optional imageBase64: string;

Optional. Base64-encoded image data (max 1 MB).

imageUrl?

optional imageUrl: string;

Optional. URL of the token image.

instagram?

optional instagram: string;

Optional. Instagram handle associated with the token.

name?

optional name: string;

Optional. The name of the token.

symbol?

optional symbol: string;

The symbol of the token.

telegram?

optional telegram: string;

Optional. Telegram link associated with the token.

tokenContractCode?

optional tokenContractCode: string;

Optional. Code for the token contract.

twitter?

optional twitter: string;

Optional. Twitter handle associated with the token.

website?

optional website: string;

Optional. Official website of the token.