@tangany/waas
Version:
node.js SDK for Tangany Wallet as a Service API
14 lines (13 loc) • 882 B
TypeScript
import { BitcoinNetwork, BlockchainTxConfirmations, BitcoinTxSpeed, EthereumPublicNetwork, EthereumTxSpeed, ApiVersion, TezosNetwork } from "./waas";
import * as Errors from "./errors";
export { Waas } from "./waas";
export declare const errors: typeof Errors;
export declare const ETHEREUM_TX_CONFIRMATIONS: typeof BlockchainTxConfirmations;
export declare const ETHEREUM_TX_SPEED: typeof EthereumTxSpeed;
export declare const ETHEREUM_PUBLIC_NETWORK: typeof EthereumPublicNetwork;
export declare const BITCOIN_NETWORK: typeof BitcoinNetwork;
export declare const BITCOIN_TX_CONFIRMATIONS: typeof BlockchainTxConfirmations;
export declare const BITCOIN_TX_SPEED: typeof BitcoinTxSpeed;
export declare const TEZOS_NETWORK: typeof TezosNetwork;
export declare const TEZOS_OPERATION_CONFIRMATION: typeof BlockchainTxConfirmations;
export declare const API_VERSION: typeof ApiVersion;