UNPKG

@airgap/etherlink

Version:

The @airgap/etherlink package is an implementation of the ICoinProtocol interface from @airgap/coinlib-core.

6 lines (5 loc) 539 B
import { EtherlinkInfoClient, EtherlinkInfoClientTransactionsResult, EtherlinkTransactionCursor } from './EtherlinkInfoClient'; export declare class BlockscoutInfoClient extends EtherlinkInfoClient { fetchTransactions(address: string, limit: number, cursor?: EtherlinkTransactionCursor | undefined): Promise<EtherlinkInfoClientTransactionsResult>; fetchContractTransactions(contractAddress: string, address: string, limit: number, cursor?: EtherlinkTransactionCursor | undefined): Promise<EtherlinkInfoClientTransactionsResult>; }