airgap-coin-lib
Version:
The airgap-coin-lib is a protocol agnostic library to prepare, sign and broadcast cryptocurrency transactions.
9 lines (8 loc) • 499 B
TypeScript
import { BaseEthereumProtocol } from './BaseEthereumProtocol';
import { EtherscanInfoClient } from './clients/info-clients/EtherscanInfoClient';
import { AirGapNodeClient } from './clients/node-clients/AirGapNodeClient';
import { EthereumProtocolOptions } from './EthereumProtocolOptions';
export declare class EthereumProtocol extends BaseEthereumProtocol<AirGapNodeClient, EtherscanInfoClient> {
readonly options: EthereumProtocolOptions;
constructor(options?: EthereumProtocolOptions);
}