UNPKG

@thinkincoin-libs/sdk-core

Version:

⚒️ An SDK for building applications on top of Uniswap V3

10 lines (8 loc) 271 B
import { BaseCurrency } from './baseCurrency' /** * Represents the native currency of the chain on which it resides, e.g. */ export abstract class NativeCurrency extends BaseCurrency { public readonly isNative: true = true public readonly isToken: false = false }