UNPKG

@tatumio/tatum

Version:

Tatum JS SDK

12 lines (11 loc) 390 B
import type { AccountAddress } from './AccountAddress'; import type { JettonMetadata } from './JettonMetadata'; import type { JettonVerificationType } from './JettonVerificationType'; export type JettonInfo = { mintable: boolean; total_supply: string; admin?: AccountAddress; metadata: JettonMetadata; verification: JettonVerificationType; holders_count: number; };