forked from BitcoinMechanic/bitcoind-startos
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmanifest.yaml
More file actions
384 lines (384 loc) · 11.4 KB
/
Copy pathmanifest.yaml
File metadata and controls
384 lines (384 loc) · 11.4 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
id: bitcoind
title: "Bitcoin Knots"
version: 29.4.0
eos-version: 0.3.5.1
release-notes: |
* Latest release from Knots - see full release notes [here](https://github.com/bitcoinknots/bitcoin/releases/tag/v29.4.knots20260508)
license: MIT
wrapper-repo: https://github.com/Retropex/knots-startos
upstream-repo: https://github.com/bitcoinknots/bitcoin/
support-site: https://github.com/bitcoinknots/bitcoin/issues
marketing-site: https://bitcoinknots.org
build: ["make"]
description:
short: A Bitcoin Full Node by Bitcoin Knots
long: Bitcoin Knots is a feature-rich version of Bitcoin software that offers greater control, privacy, and customization than standard Bitcoin Core. With unique features like advanced transaction filters, optimized data handling, and additional privacy settings, Bitcoin Knots empowers users to run a lean, efficient, and resilient node. Built on Bitcoin’s open-source foundation, Knots is designed for those who value a streamlined, spam-resistant network and want more flexibility in managing transactions. By choosing Bitcoin Knots, you’re opting for a powerful tool that unlocks Bitcoin’s full potential with settings tailored to advanced and privacy-conscious users.
assets:
license: LICENSE
icon: icon.png
instructions: instructions.md
main:
type: docker
image: main
entrypoint: "docker_entrypoint.sh"
args: []
mounts:
main: /root/.bitcoin
compat: /mnt/assets
sigterm-timeout: 5m
health-checks:
rpc:
name: RPC
success-message: The RPC server is ready for connections
type: docker
image: main
system: false
entrypoint: check-rpc.sh
args: []
mounts: {}
io-format: yaml
inject: true
synced:
name: Synced
success-message: Bitcoin Knots is synced with the network
type: docker
image: main
system: false
entrypoint: check-synced.sh
args: []
mounts: {}
io-format: yaml
inject: true
config:
get:
type: script
set:
type: script
properties:
type: script
volumes:
main:
type: data
compat:
type: assets
alerts:
uninstall: Uninstalling Bitcoin Knots will result in permanent loss of data. Without a backup, any funds stored on your node's default hot wallet will be lost forever. If you are unsure, we recommend making a backup, just to be safe.
restore: Restoring Bitcoin Knots will overwrite its current data. You will lose any transactions recorded in watch-only wallets, and any funds you have received to the hot wallet, since the last backup.
interfaces:
rpc:
name: RPC Interface
description: Listens for JSON-RPC commands
tor-config:
port-mapping:
8332: "8332"
lan-config:
443:
ssl: true
internal: 8332
ui: false
protocols:
- tcp
- http
- json-rpc
peer:
name: Peer Interface
description: Listens for incoming connections from peers on the bitcoin network
tor-config:
port-mapping:
8333: "8333"
ui: false
protocols:
- tcp
- bitcoin
zmq:
name: ZeroMQ Interface
description: Listens for subscriptions to the ZeroMQ raw block and raw transaction event streams
tor-config:
port-mapping:
28332: "28332"
28333: "28333"
ui: false
protocols:
- tcp
- zmq
dependencies: {}
backup:
create:
type: docker
image: compat
system: true
entrypoint: compat
args:
- duplicity
- create
- /mnt/backup
- /root/.bitcoin
mounts:
BACKUP: /mnt/backup
main: /root/.bitcoin
restore:
type: docker
image: compat
system: true
entrypoint: compat
args:
- duplicity
- restore
- /mnt/backup
- /root/.bitcoin
mounts:
BACKUP: /mnt/backup
main: /root/.bitcoin
actions:
reindex:
name: "Reindex Blockchain"
description: "Rebuilds the block and chainstate databases starting from genesis. If blocks already exist on disk, these are used rather than being redownloaded. For pruned nodes, this means downloading the entire blockchain over again."
warning: Blocks not stored on disk will be redownloaded in order to rebuild the database. If your node is pruned, this action is equivalent to syncing the node from scratch, so this process could take a couple of weeks.
allowed-statuses:
- running
- stopped
implementation:
type: docker
image: main
system: false
entrypoint: reindex.sh
args: []
mounts:
main: /root/.bitcoin
io-format: json
reindex-chainstate:
name: "Reindex Chainstate"
description: "Rebuilds the chainstate database using existing block index data; as the block index is not rebuilt, 'reindex_chainstate' should be strictly faster than 'reindex'. This action should only be used in the case of chainstate corruption; if the blocks stored on disk are corrupted, the 'reindex' action will need to be run instead."
warning: While faster than 'Reindex', 'Reindex Chainstate' can still take several days or more to complete. Pruned nodes do not allow 'reindex-chainstate'; if you are running a pruned node and suspect chainstate corruption the 'reindex' action (requiring redownloading the entire Blockchain) should be run instead.
allowed-statuses:
- running
- stopped
implementation:
type: docker
image: main
system: false
entrypoint: reindex_chainstate.sh
args: []
mounts:
main: /root/.bitcoin
io-format: json
delete-txindex:
name: "Delete Transaction Index"
description: "Deletes the Transaction Index (txindex) in case it gets corrupted."
warning: The Transaction Index will be rebuilt once Bitcoin Knots is started again, unless you deactivate it in the config settings. Please don't do this unless instructed to by Start9 support staff.
allowed-statuses:
- stopped
implementation:
type: script
delete-coinstatsindex:
name: "Delete Coinstats Index"
description: "Deletes the Coinstats Index (coinstatsindex) in case it gets corrupted."
warning: The Coinstats Index will be rebuilt once Bitcoin Core is started again, unless you deactivate it in the config settings. Please don't do this unless instructed to by Start9 support staff.
allowed-statuses:
- stopped
implementation:
type: script
delete-peers:
name: "Delete Peer List"
description: "Deletes the Peer List (peers.dat) in case it gets corrupted."
allowed-statuses:
- stopped
implementation:
type: script
prioritise-transaction:
name: "Prioritise Transaction"
description: "Prioritise or de-prioritise a transaction by telling your node to treat it as though it has a higher/lower priority or fee and construct templates accordingly."
allowed-statuses:
- running
implementation:
type: docker
image: main
system: false
entrypoint: prioritise-transaction.sh
args: []
io-format: json
mounts:
main: /root/.bitcoin
inject: true
input-spec:
txid:
type: string
name: Transaction ID
description: "The ID of the transaction you wish to prioritise."
placeholder: ""
nullable: false
priority-delta:
type: number
name: Priority Delta
description: "The priority to add or subtract."
nullable: true
integral: true
range: "[-1000000,1000000]"
default: 0
nullable: true
fee-delta:
type: number
name: Fee Delta
description: "The fee value (in satoshis) to add (or subtract, if negative)."
nullable: true
integral: true
range: "[-1000000,1000000]"
default: 0
nullable: true
getaddress:
name: "Get new address"
description: "Get a new Bitcoin address."
allowed-statuses:
- running
implementation:
type: docker
image: main
system: false
entrypoint: getaddress.sh
args: []
io-format: json
mounts:
main: /root/.bitcoin
inject: true
getbalance:
name: "Get wallet balance"
description: "Get wallet balance."
allowed-statuses:
- running
implementation:
type: docker
image: main
system: false
entrypoint: getbalance.sh
args: []
io-format: json
mounts:
main: /root/.bitcoin
inject: true
sendcoin:
name: "Send bitcoin"
description: "Send bitcoin to an address."
allowed-statuses:
- running
implementation:
type: docker
image: main
system: false
entrypoint: sendcoin.sh
args: []
io-format: json
mounts:
main: /root/.bitcoin
inject: true
input-spec:
address:
type: string
name: Address
description: "The bitcoin address you want to send your bitcoins."
placeholder: ""
nullable: false
amount:
type: number
name: Amount (BTC)
description: "The amount of bitcoin you want to send to the address."
integral: false
range: "[0,21000000]"
default: 0
nullable: false
fee:
type: number
name: Fee (sat/vbytes)
description: "The amount of fee you want to pay for this transaction (in sat per vbytes)"
integral: false
range: "[0,1000000]"
default: 0
nullable: false
sendall:
name: "Send all bitcoin"
description: "Send ALL bitcoin in the wallet."
allowed-statuses:
- running
implementation:
type: docker
image: main
system: false
entrypoint: sendall.sh
args: []
io-format: json
mounts:
main: /root/.bitcoin
inject: true
input-spec:
address:
type: string
name: Address
description: "The bitcoin address you want to send your bitcoins."
placeholder: ""
nullable: false
fee:
type: number
name: Fee (sat/vbytes)
description: "The amount of fee you want to pay for this transaction (in sat per vbytes)"
integral: false
range: "[0,1000000]"
default: 0
nullable: false
signmessage:
name: "Sign message"
description: "Sign a message with a bitcoin address."
allowed-statuses:
- running
implementation:
type: docker
image: main
system: false
entrypoint: signmessage.sh
args: []
io-format: json
mounts:
main: /root/.bitcoin
inject: true
input-spec:
address:
type: string
name: Address
description: "The bitcoin address to use to sign the message."
placeholder: ""
nullable: false
message:
type: string
name: Message
description: "The message to sign."
placeholder: ""
nullable: false
assumeutxo:
name: "Assume UTXO"
description: "Use an UTXO snapshot for instant use of your node."
allowed-statuses:
- running
implementation:
type: docker
image: main
system: false
entrypoint: assumeutxo.sh
args: []
io-format: json
mounts:
main: /root/.bitcoin
inject: true
input-spec:
location:
type: string
name: "Snapshot URL"
description: "The URL where we download the snapshot"
placeholder: ""
nullable: false
migrations:
from:
"*":
type: script
args: ["from"]
to:
"*":
type: script
args: ["to"]