UNPKG

@airgap/etherlink

Version:

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

10 lines (9 loc) 420 B
import { AirGapBlockExplorer, BlockExplorerMetadata } from '@airgap/module-kit'; export declare class EtherlinkBlockExplorer implements AirGapBlockExplorer { private readonly url; private readonly metadata; constructor(url: string); getMetadata(): Promise<BlockExplorerMetadata>; createAddressUrl(address: string): Promise<string>; createTransactionUrl(transactionId: string): Promise<string>; }