UNPKG

blockchain-api-client

Version:

Blockchain Api Client which maps Results of all supported Blockchain API's into a unified interface

5 lines (4 loc) 345 B
import { Balance, Transaction } from '../../../base/types'; import { BlockCypherBalance, BlockCypherBalanceFull } from './blockcypher-bitcoin-types'; export declare const mapBlockCypherBalance: (balance: BlockCypherBalance) => Balance; export declare const mapBlockCypherTransactions: (transaction: BlockCypherBalanceFull) => Transaction[];