airgap-coin-lib
Version:
The airgap-coin-lib is a protocol agnostic library to prepare, sign and broadcast cryptocurrency transactions.
6 lines (5 loc) • 351 B
TypeScript
import { ICoinProtocol } from '../protocols/ICoinProtocol';
declare const supportedProtocols: () => ICoinProtocol[];
declare const addSupportedProtocol: (newProtocol: ICoinProtocol) => void;
declare const removeSupportedProtocol: (protocolToRemove: ICoinProtocol) => void;
export { addSupportedProtocol, removeSupportedProtocol, supportedProtocols };