UNPKG

@array.inc/sdk

Version:

🛠 An SDK for building applications on top of Array.

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