UNPKG

blockbook-client

Version:

Client for interacting with Trezor's blockbook API

9 lines (8 loc) 744 B
import { BaseBlockbook } from './BaseBlockbook'; import { BlockbookConfig, NormalizedTxEthereum, SpecificTxEthereum, BlockInfoEthereum, AddressDetailsEthereumBasic, AddressDetailsEthereumTokens, AddressDetailsEthereumTokenBalances, AddressDetailsEthereumTxids, AddressDetailsEthereumTxs } from './types'; export declare class BlockbookEthereum extends BaseBlockbook<NormalizedTxEthereum, SpecificTxEthereum, BlockInfoEthereum, AddressDetailsEthereumBasic, AddressDetailsEthereumTokens, AddressDetailsEthereumTokenBalances, AddressDetailsEthereumTxids, AddressDetailsEthereumTxs> { constructor(config: BlockbookConfig); getXpubDetails(): Promise<never>; getUtxosForAddress(): Promise<never>; getUtxosForXpub(): Promise<never>; }