-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathenclave.json
62 lines (62 loc) · 2.64 KB
/
enclave.json
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"exe": "main",
"key": "testnet.pem",
"debug": true,
"heapSize": 4096,
"executableHeap": true,
"productID": 1,
"securityVersion": 1,
"mounts": [
{
"source": "/enclavedata",
"target": "/data",
"type": "hostfs",
"readOnly": false
}
],
"env": [
{
"name": "EDG_TESTMODE",
"value": "true"
},
{ "fromHost": true, "name": "ENCLAVE_DB_EDGELESSDBHOST" },
{ "fromHost": true, "name": "ENCLAVE_DB_SQLITEPATH" },
{ "fromHost": true, "name": "ENCLAVE_DB_USEINMEMORY" },
{ "fromHost": true, "name": "ENCLAVE_DEBUG_ENABLEDEBUGNAMESPACE" },
{ "fromHost": true, "name": "ENCLAVE_DEBUG_ENABLEPROFILER" },
{ "fromHost": true, "name": "ENCLAVE_ENABLEATTESTATION" },
{ "fromHost": true, "name": "ENCLAVE_L1_ENABLEBLOCKVALIDATION" },
{ "fromHost": true, "name": "ENCLAVE_L1_GENESISJSON" },
{ "fromHost": true, "name": "ENCLAVE_LOG_LEVEL" },
{ "fromHost": true, "name": "ENCLAVE_LOG_PATH" },
{ "fromHost": true, "name": "ENCLAVE_RPC_BINDADDRESS" },
{ "fromHost": true, "name": "ENCLAVE_RPC_TIMEOUT" },
{ "fromHost": true, "name": "NETWORK_BATCH_INTERVAL" },
{ "fromHost": true, "name": "NETWORK_BATCH_MAXINTERVAL" },
{ "fromHost": true, "name": "NETWORK_BATCH_MAXSIZE" },
{ "fromHost": true, "name": "NETWORK_CHAINID" },
{ "fromHost": true, "name": "NETWORK_CROSSCHAIN_INTERVAL" },
{ "fromHost": true, "name": "NETWORK_GAS_BASEFEE" },
{ "fromHost": true, "name": "NETWORK_GAS_BATCHEXECUTIONLIMIT" },
{ "fromHost": true, "name": "NETWORK_GAS_LOCALEXECUTIONCAP" },
{ "fromHost": true, "name": "NETWORK_GAS_MINGASPRICE" },
{ "fromHost": true, "name": "NETWORK_GAS_PAYMENTADDRESS" },
{ "fromHost": true, "name": "NETWORK_GENESIS" },
{ "fromHost": true, "name": "NETWORK_L1_BLOCKTIME" },
{ "fromHost": true, "name": "NETWORK_L1_CHAINID" },
{ "fromHost": true, "name": "NETWORK_L1_CONTRACTS_BRIDGE" },
{ "fromHost": true, "name": "NETWORK_L1_CONTRACTS_MANAGEMENT" },
{ "fromHost": true, "name": "NETWORK_L1_CONTRACTS_MESSAGEBUS" },
{ "fromHost": true, "name": "NETWORK_L1_STARTHASH" },
{ "fromHost": true, "name": "NETWORK_ROLLUP_INTERVAL" },
{ "fromHost": true, "name": "NETWORK_ROLLUP_MAXINTERVAL" },
{ "fromHost": true, "name": "NETWORK_ROLLUP_MAXSIZE" },
{ "fromHost": true, "name": "NETWORK_SEQUENCER_P2PADDRESS" },
{ "fromHost": true, "name": "NODE_HOSTADDRESS" },
{ "fromHost": true, "name": "NODE_ID" },
{ "fromHost": true, "name": "NODE_ISGENESIS" },
{ "fromHost": true, "name": "NODE_NAME" },
{ "fromHost": true, "name": "NODE_NODETYPE" },
{ "fromHost": true, "name": "NODE_PRIVATEKEY" }
]
}