You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
short: Your private backend server for Ashigaru, Samourai Wallet and other light wallets.
13
-
long: Dojo is the backend server for Ashigaru, Samourai Wallet and other light wallets. It provides HD account & loose addresses (BIP47) balances & transactions lists.
13
+
long:
14
+
Dojo is the backend server for Ashigaru, Samourai Wallet and other light wallets. It provides HD account & loose addresses (BIP47) balances & transactions lists.
14
15
Provides unspent output lists to the wallet. PushTX endpoint broadcasts transactions through the backing bitcoind node.
15
16
assets:
16
17
license: LICENSE.md
@@ -19,7 +20,7 @@ assets:
19
20
main:
20
21
type: docker
21
22
image: main
22
-
entrypoint: "docker_entrypoint.sh"
23
+
entrypoint: 'docker_entrypoint.sh'
23
24
args: []
24
25
mounts:
25
26
main: /root
@@ -34,7 +35,7 @@ health-checks:
34
35
success-message: Dojo API is online and ready for connections
35
36
type: docker
36
37
image: main
37
-
entrypoint: "check-api.sh"
38
+
entrypoint: 'check-api.sh'
38
39
args: []
39
40
inject: true
40
41
system: false
@@ -44,7 +45,7 @@ health-checks:
44
45
success-message: MySQL is online and ready for connections
45
46
type: docker
46
47
image: main
47
-
entrypoint: "check-mysql.sh"
48
+
entrypoint: 'check-mysql.sh'
48
49
args: []
49
50
inject: true
50
51
system: false
@@ -54,7 +55,7 @@ health-checks:
54
55
success-message: Dojo PushTx API is online and ready for connections
55
56
type: docker
56
57
image: main
57
-
entrypoint: "check-pushtx.sh"
58
+
entrypoint: 'check-pushtx.sh'
58
59
args: []
59
60
inject: true
60
61
system: false
@@ -64,7 +65,7 @@ health-checks:
64
65
success-message: Dojo is synced with the network
65
66
type: docker
66
67
image: main
67
-
entrypoint: "check-synced.sh"
68
+
entrypoint: 'check-synced.sh'
68
69
args: []
69
70
inject: true
70
71
system: false
@@ -74,7 +75,7 @@ health-checks:
74
75
success-message: Soroban P2P relay service is online and ready
75
76
type: docker
76
77
image: main
77
-
entrypoint: "check-soroban.sh"
78
+
entrypoint: 'check-soroban.sh'
78
79
args: []
79
80
inject: true
80
81
system: false
@@ -97,16 +98,16 @@ interfaces:
97
98
description: Specifies the interface to listen on for HTTP connections.
98
99
tor-config:
99
100
port-mapping:
100
-
80: "9000"
101
+
80: '9000'
101
102
ui: true
102
103
protocols:
103
104
- tcp
104
105
- http
105
106
dependencies:
106
107
bitcoind:
107
-
version: ">=0.21.1.2 <31.0.0"
108
+
version: '>=0.21.1.2 <31.0.0'
108
109
requirement:
109
-
type: "opt-out"
110
+
type: 'opt-out'
110
111
how: Use the Bitcoin Core (default)
111
112
description: Used to subscribe to new block events from a full archival node
112
113
config:
@@ -116,9 +117,9 @@ dependencies:
116
117
type: script
117
118
requires-runtime-config: true
118
119
bitcoind-testnet:
119
-
version: ">=0.21.1.2 <31.0.0"
120
+
version: '>=0.21.1.2 <31.0.0'
120
121
requirement:
121
-
type: "opt-in"
122
+
type: 'opt-in'
122
123
how: Use the Bitcoin Core Testnet4
123
124
description: Used to subscribe to new block events from a full archival node (testnet)
124
125
config:
@@ -128,15 +129,15 @@ dependencies:
128
129
type: script
129
130
requires-runtime-config: true
130
131
fulcrum:
131
-
version: ">=1.11.0"
132
+
version: '>=1.11.0'
132
133
requirement:
133
-
type: "opt-in"
134
+
type: 'opt-in'
134
135
how: Set Indexer to Fulcrum in the config
135
136
description: Used for fast scan of addresses and indexing for deep wallets.
136
137
electrs:
137
-
version: ">=0.10.7"
138
+
version: '>=0.10.7'
138
139
requirement:
139
-
type: "opt-in"
140
+
type: 'opt-in'
140
141
how: Set Indexer to Electrs in the config
141
142
description: A more stable, but less performant indexer.
0 commit comments