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