@0xtemple/client
Version:
Tookit for interacting with vara eps framework
11 lines (10 loc) • 362 B
TypeScript
import { Network } from '../../types';
/**
* @description Get the default fullnode and faucet url for the given network type
* @param networkType, 'testnet' | 'mainnet' | 'localnet', default is 'testnet'
* @returns { fullNode: string, faucet?: string }
*/
export declare const getDefaultURL: (networkType?: Network) => {
ws: string;
http: string;
};