1
- # WALLET
1
+ # WALLET [Required]
2
2
# ------
3
3
# Either a private key
4
4
WALLET_PRIVATE_KEY = <your_admin_wallet_private_key>
@@ -8,13 +8,13 @@ AWS_SECRET_ACCESS_KEY=<your_aws_secret_access_key>
8
8
AWS_KMS_KEY_ID = <your_aws_kms_key_id>
9
9
AWS_REGION = <your_aws_region>
10
10
11
- # THIRDWEB SDK SECRET KEY
11
+ # THIRDWEB SDK SECRET KEY [Required]
12
12
# -----------------------
13
13
# Obtain an Secret Key from thirdweb.com/dashboard
14
14
# this enables you to use the default RPCs and extra features
15
15
THIRDWEB_SDK_SECRET_KEY = <your_thirdweb_sdk_secret_key>
16
16
17
- # DATABASE OPTIONS
17
+ # DATABASE OPTIONS [Required]
18
18
# ----------------
19
19
POSTGRES_HOST = localhost
20
20
POSTGRES_DATABASE_NAME = postgres
@@ -23,13 +23,13 @@ POSTGRES_PASSWORD=postgres
23
23
POSTGRES_PORT = 5432
24
24
POSTGRES_USE_SSL = false
25
25
26
- # SERVING OPTIONS
26
+ # SERVING OPTIONS [Optional]
27
27
# ---------------
28
28
PORT = 3005
29
29
HOST = localhost
30
30
OPENAPI_BASE_ORIGIN = http://localhost:3005
31
31
32
- # CONFIGURATION OPTIONS
32
+ # CONFIGURATION OPTIONS [Optional]
33
33
# ----------------------
34
34
# the number of transactions to queue for before starting processing
35
35
MIN_TRANSACTION_TO_PROCESS = 1
@@ -40,7 +40,7 @@ TRANSACTIONS_TO_BATCH=10
40
40
# See example config file: chain-overrides.example.json
41
41
CHAIN_OVERRIDES = <path_or_url_to_file>
42
42
43
- # CORS OPTIONS
43
+ # CORS OPTIONS [Optional]
44
44
# ------------
45
45
# Configures the Access-Control-Allow-Origin CORS header. Defaults to * (Allow All)
46
46
# The value of origin could be of different types:
@@ -55,7 +55,7 @@ CHAIN_OVERRIDES=<path_or_url_to_file>
55
55
ACCESS_CONTROL_ALLOW_ORIGIN = *
56
56
57
57
58
- # benchmark vars
58
+ # benchmark vars [Optional]
59
59
BENCHMARK_HOST = ' http://localhost:3005'
60
60
BENCHMARK_URL_PATH = ' /contract/mumbai/0xc8be6265C06aC376876b4F62670adB3c4d72EABA/write'
61
61
BENCHMARK_POST_BODY = '{
0 commit comments