mirror of
https://github.com/getwax/bls-wallet.git
synced 2026-01-09 23:58:19 -05:00
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>
14 lines
317 B
TypeScript
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");
|