-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.sample.yml
69 lines (58 loc) · 1.39 KB
/
config.sample.yml
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
63
64
65
66
67
68
69
mongodb:
uri: "mongodb+srv://<mongodb-user>:<mongodb-password>@<mongodb-host>:<mongodb-port>/<mongodb-database>"
database: "mongodb-database"
timeout_ms: 2000
ethereum:
start_block_number: 0
confirmations: 0
private_key: "1234"
rpc_url: "https://<eth-node-host>:<eth-node-port>"
chain_id: "5"
rpc_timeout_ms: 2000
wrapped_pocket_address: "0x1234"
mint_controller_address: "0x1234"
validator_addresses:
- "0x1234"
- "0x1234"
- "0x1234"
pocket:
start_height: 0
confirmations: 0
private_key: "1234"
rpc_url: "https://<pokt-node-host>:<pokt-node-port>"
chain_id: "testnet"
rpc_timeout_ms: 2000
tx_fee: 10000
vault_address: "1234"
multisig_public_keys:
- "1234"
- "1234"
- "1234"
mint_monitor:
enabled: false
interval_ms: 5000
mint_signer:
enabled: false
interval_ms: 5000
mint_executor:
enabled: false
interval_ms: 5000
burn_monitor:
enabled: false
interval_ms: 5000
burn_signer:
enabled: false
interval_ms: 5000
burn_executor:
enabled: false
interval_ms: 5000
health_check:
interval_ms: 5000
read_last_health: false
logger:
level: "info"
google_secret_manager:
enabled: false
mongo_secret_name: "projects/<project-id>/secrets/<secret-name>/versions/latest"
pokt_secret_name: "projects/<project-id>/secrets/<secret-name>/versions/latest"
eth_secret_name: "projects/<project-id>/secrets/<secret-name>/versions/latest"