-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcospend.toml.example
More file actions
44 lines (38 loc) · 1.02 KB
/
cospend.toml.example
File metadata and controls
44 lines (38 loc) · 1.02 KB
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
[simulation]
seed = 42
max_timestep = 15
num_payment_obligations = 5
# Takers: have payment obligations, build cospend proposals using the order book
[[wallet_types]]
name = "taker"
count = 1
strategies = ["TakerStrategy"]
script_type = "p2wpkh"
[wallet_types.scorer]
fee_savings_weight = 1.0
privacy_weight = 1.0
payment_obligation_weight = 2.0
coordination_weight = 1.0
# Makers: register UTXOs in the order book and participate in cospends
[[wallet_types]]
name = "maker"
count = 3
strategies = ["MakerStrategy"]
script_type = "p2wpkh"
[wallet_types.scorer]
fee_savings_weight = 0.5
privacy_weight = 1.0
payment_obligation_weight = 1.0
coordination_weight = 2.0
# Aggregators: create aggregate proposals from pending interests
# For now they are a distinct role that should not have payment obligations
[[wallet_types]]
name = "aggregator"
count = 1
strategies = ["AggregatorStrategy"]
script_type = "p2wpkh"
[wallet_types.scorer]
fee_savings_weight = 0.0
privacy_weight = 0.0
payment_obligation_weight = 0.0
coordination_weight = 0.0