Files
bls-wallet/aggregator/test/env.ts
Jacob Caban-Tomski e222b53102 Improve ease and consistancy of monorepo setup
Move contract addresses from env vars to a common JSON network config.
Add io-ts to client to verify network config JSON.
Add setup.ts to bootstrap repo.
Add deploy script for use with deploying all contracts.
Add docker-compose.yml as alternative for postgres setup.
Add main README, update component READMEs.

Co-authored-by: Andrew Morris <voltrevo@gmail.com>
2021-11-29 13:06:43 -07:00

14 lines
317 B
TypeScript

import {
optionalEnv,
requireBoolEnv,
requireEnv,
} from "../src/helpers/envTools.ts";
export * from "../src/env.ts";
export const TEST_SEED = optionalEnv("TEST_SEED");
export const TEST_LOGGING = requireBoolEnv("TEST_LOGGING");
export const TEST_BLS_WALLETS_SECRET = requireEnv("TEST_BLS_WALLETS_SECRET");