UNPKG

airgap-coin-lib

Version:

The airgap-coin-lib is a protocol agnostic library to prepare, sign and broadcast cryptocurrency transactions.

7 lines (6 loc) 268 B
export declare abstract class ProtocolBlockExplorer { readonly blockExplorer: string; constructor(blockExplorer: string); abstract getAddressLink(address: string): Promise<string>; abstract getTransactionLink(transactionId: string): Promise<string>; }