UNPKG

@trezor/connect

Version:

High-level javascript interface for Trezor hardware wallet.

8 lines 457 B
import type { BlockchainLinkResponse, SubscriptionAccountInfo } from '@trezor/blockchain-link'; import type { CommonParamsWithCoin, Response } from '../params'; export type BlockchainSubscribe = CommonParamsWithCoin & { blocks?: boolean; accounts?: SubscriptionAccountInfo[]; }; export declare function blockchainSubscribe(params: BlockchainSubscribe): Response<BlockchainLinkResponse<'subscribe'>>; //# sourceMappingURL=blockchainSubscribe.d.ts.map