UNPKG

maia-core-sdk

Version:

⚒️ An SDK for building applications on top of Maia DAO Ecosytem

7 lines (6 loc) 294 B
import { NativeCurrency } from '../nativeCurrency'; import { NativeToken } from '../nativeToken'; /** * Represents a currency that's native to a given chain, either a native currency (gas token) or a token (regular ERC20) */ export declare type Currency = NativeCurrency | NativeToken;