-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.ts
30 lines (30 loc) · 926 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
export default {
DEFAULT_LIMIT_OPTS: {
lmdb: {
minEntriesPerContract: 10,
maxEntriesPerContract: 100,
},
redis: {
minEntriesPerContract: 10,
maxEntriesPerContract: 100,
},
},
ARWEAVE_PORT: 3169,
REDIS_URL: 'redis://default:redispw@localhost:6379',
PROVERS: {
groth16: {
HOLLOWDB: {
WASM_PATH: './config/circuits/hollow-authz-groth16/hollow-authz.wasm',
PROVERKEY_PATH: './config/circuits/hollow-authz-groth16/prover_key.zkey',
VERIFICATIONKEY_PATH: './config/circuits/hollow-authz-groth16/verification_key.json',
},
},
plonk: {
HOLLOWDB: {
WASM_PATH: './config/circuits/hollow-authz-plonk/hollow-authz.wasm',
PROVERKEY_PATH: './config/circuits/hollow-authz-plonk/prover_key.zkey',
VERIFICATIONKEY_PATH: './config/circuits/hollow-authz-plonk/verification_key.json',
},
},
},
} as const;