-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathbitcoin.json
71 lines (71 loc) · 1.26 KB
/
bitcoin.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
63
64
65
66
67
68
69
70
71
{
"network": {
"blockchain": "Bitcoin",
"network": "Testnet3"
},
"data_directory": "bitcoin-data",
"http_timeout": 300,
"tip_delay": 1800,
"construction": {
"currency": {
"symbol": "BTC",
"decimals": 8
},
"minimum_balance": "600",
"maximum_fee": "500",
"curve_type": "secp256k1",
"accounting_model": "utxo",
"scenario": [
{
"operation_identifier": {
"index": 0
},
"type": "Vin",
"status": "",
"account": {
"address": "{{ SENDER }}"
},
"amount": {
"value": "{{ SENDER_VALUE }}",
"currency": null
},
"coin_change": {
"coin_action": "coin_spent",
"coin_identifier": {
"identifier": "{{ COIN_IDENTIFIER }}"
}
}
},
{
"operation_identifier": {
"index": 1
},
"type": "Vout",
"status": "",
"account": {
"address": "{{ RECIPIENT }}"
},
"amount": {
"value": "{{ RECIPIENT_VALUE }}",
"currency": null
}
}
],
"confirmation_depth": 1,
"stale_depth": 1,
"change_scenario": {
"operation_identifier": {
"index": 2
},
"type": "Vout",
"status": "",
"account": {
"address": "{{ CHANGE_ADDRESS }}"
},
"amount": {
"value": "{{ CHANGE_VALUE }}",
"currency": null
}
}
}
}