UNPKG

astra-sdk-core

Version:

⚒️ An SDK for building applications on top of Astra CL

9 lines (8 loc) 258 B
import { BaseCurrency } from './baseCurrency'; /** * Represents the native currency of the chain on which it resides */ export declare abstract class NativeCurrency extends BaseCurrency { readonly isNative: true; readonly isToken: false; }