import { BigNumberLike } from "@rarible/types"; import { CurrencyId } from "@rarible/types"; export type Currency = { currencyId: CurrencyId; symbol: string; abbreviation?: string; alias?: string; rate?: BigNumberLike; decimals: number; };