@airgap/aeternity
Version:
The @airgap/aeternity is an Aeternity implementation of the ICoinProtocol interface from @airgap/coinlib-core.
10 lines (9 loc) • 420 B
TypeScript
import { AirGapBlockExplorer, BlockExplorerMetadata } from '@airgap/module-kit';
export declare class AeternityBlockExplorer implements AirGapBlockExplorer {
readonly url: string;
constructor(url: string);
private readonly metadata;
getMetadata(): Promise<BlockExplorerMetadata>;
createAddressUrl(address: string): Promise<string>;
createTransactionUrl(transactionId: string): Promise<string>;
}