UNPKG

@nfps.dev/cli

Version:

CLI for NFP development, inspection, and manipulation

35 lines 1.02 kB
export const X_GAS_PRICE_DEFAULT = 0.0125; export const H_OPTS_EXEC = { gas: { type: 'number', desc: 'amount of GAS to use for tx', }, price: { type: 'number', desc: 'gas price to use when calculating fee', }, yes: { type: 'boolean', alias: 'y', desc: 'automatically confirm prompts such as broadcasting txs and saving to .env', }, }; export const H_DEFAULT_NETWORKS = { 'secret-4': { title: 'Mainnet', lcds: 'https://lcd.secret.express', rpcs: 'https://rpc.secret.express', price: 0.15, }, 'pulsar-3': { title: 'Testnet', lcds: 'https://lcd.testnet.secretsaturn.net,https://api.pulsar3.scrttestnet.com', rpcs: 'https://rpc.testnet.secretsaturn.net,https://rpc.pulsar3.scrttestnet.com', }, 'secretdev-1': { title: 'Localsecret', lcds: 'http://localhost:1317', rpcs: 'http://localhost:26657', }, }; //# sourceMappingURL=constants.js.map