5 lines
305 B
TypeScript
5 lines
305 B
TypeScript
export const binaryName = "cosmwasm-faucet";
|
|
export const concurrency: number = Number.parseInt(process.env.FAUCET_CONCURRENCY || "", 10) || 5;
|
|
export const port: number = Number.parseInt(process.env.FAUCET_PORT || "", 10) || 8000;
|
|
export const mnemonic: string | undefined = process.env.FAUCET_MNEMONIC;
|