-
Notifications
You must be signed in to change notification settings - Fork 13
/
test_config.toml
78 lines (65 loc) · 2.9 KB
/
test_config.toml
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
70
71
72
73
74
75
76
77
78
# Host and port of the current actor (operator or verifier)
host = "127.0.0.1"
port = 17000
# Secret key of the current actor (operator or verifier)
secret_key = "3333333333333333333333333333333333333333333333333333333333333333"
# All of the verifiers public keys
num_verifiers = 7
verifiers_public_keys = [
"034f355bdcb7cc0af728ef3cceb9615d90684bb5b2ca5f859ab0f0b704075871aa",
"02466d7fcae563e5cb09a0d1870bb580344804617879a14949cf22285f1bae3f27",
"023c72addb4fdf09af94f0c94d7fe92a386a7e70cf8a1d85916386bb2535c7b1b1",
"032c0b7cf95324a07d05398b240174dc0c2be444d96b159aa6c7f7b1e668680991",
"029ac20335eb38768d2052be1dbbc3c8f6178407458e51e6b4ad22f1d91758895b",
"035ab4689e400a4a160cf01cd44730845a54768df8547dcdf073d964f109f18c30",
"037962d45b38e8bcf82fa8efa8432a01f20c9a53e24c7d3f11df197cb8e70926da",
]
# All of the operators x-only public keys.
num_operators = 3
operators_xonly_pks = [
"4f355bdcb7cc0af728ef3cceb9615d90684bb5b2ca5f859ab0f0b704075871aa",
"466d7fcae563e5cb09a0d1870bb580344804617879a14949cf22285f1bae3f27",
"3c72addb4fdf09af94f0c94d7fe92a386a7e70cf8a1d85916386bb2535c7b1b1",
]
# Operator can take funds back after this amount of blocks.
operator_takes_after = 5
# Operator reimbursement addresses after the 2 week period.
operator_wallet_addresses = [
"bcrt1pvaua4gvvglk27al5trh337xz8l8zzhgzageky0xt0dgv64xee8tqwwvzmf",
"bcrt1pvaua4gvvglk27al5trh337xz8l8zzhgzageky0xt0dgv64xee8tqwwvzmf",
"bcrt1pvaua4gvvglk27al5trh337xz8l8zzhgzageky0xt0dgv64xee8tqwwvzmf",
]
operator_withdrawal_fee_sats = 100000
operator_num_kickoff_utxos_per_tx = 10
# User can take funds back after this amount of blocks, if deposit fails.
user_takes_after = 200
# Bitcoin node configuration options
network = "regtest"
bitcoin_rpc_url = "http://127.0.0.1:18443"
bitcoin_rpc_user = "admin"
bitcoin_rpc_password = "admin"
# PostgreSQL database credentials.
db_host = "127.0.0.1"
db_port = 5432
db_user = "clementine"
db_password = "clementine"
db_name = "clementine"
bridge_amount_sats = 100000000
confirmation_threshold = 1
citrea_rpc_url = ""
bridge_contract_address = "3100000000000000000000000000000000000002"
# Testing only fields.
all_verifiers_secret_keys = [
"1111111111111111111111111111111111111111111111111111111111111111",
"2222222222222222222222222222222222222222222222222222222222222222",
"3333333333333333333333333333333333333333333333333333333333333333",
"4444444444444444444444444444444444444444444444444444444444444444",
"5555555555555555555555555555555555555555555555555555555555555555",
"6666666666666666666666666666666666666666666666666666666666666666",
"7777777777777777777777777777777777777777777777777777777777777777",
]
all_operators_secret_keys = [
"1111111111111111111111111111111111111111111111111111111111111111",
"2222222222222222222222222222222222222222222222222222222222222222",
"3333333333333333333333333333333333333333333333333333333333333333",
]