UNPKG

@cranberry-money/shared-types

Version:

Shared TypeScript type definitions for Blueberry platform

15 lines 346 B
export interface ChainInfo { code: string; name: string; shortName: string; isActive: boolean; } export interface GetBatchBalanceRequest { addresses: string[]; chain: 'ETH' | 'BTC'; } export interface BatchBalanceResponse { balances: Record<string, string>; errors?: string[]; } //# sourceMappingURL=chain.d.ts.map