Skip to content

Commit 1262c8e

Browse files
authored
Merge pull request #8 from tokend/v3.6
V3.6
2 parents 223ba19 + bf15749 commit 1262c8e

5 files changed

+100
-9
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
log:
2+
level: warn
3+
# we are using sentry for error collection,
4+
# you could opt-out by disabling it on the following line
5+
disable_sentry: false
6+
7+
sentry:
8+
dsn: https://[email protected]/6
9+
10+
horizon:
11+
endpoint: http://janus
12+
signer: SAMJKTZVW5UOHCDK5INYJNORF2HRKYI72M5XSZCBYAHQHR34FFR4Z6G4
13+
14+
coinpayments:
15+
merchant_id: "6936542314febfcc8dd3955fce88e0be"
16+
address: https://www.coinpayments.net/api.php
17+
private_key: "1004f66dB4081cA6D9c3f0651A1DC64eB754158e48daFb7441c4B632D26628eC"
18+
public_key: "f1db0de9c54cac677109f9da823b9627bef1c606fa75634c776100b88170a271"
19+
ipn_secret: "supersekr1tandsecure"
20+
request_timeout: 30
21+
22+
atomic_swap_checker:
23+
signer: SAMJKTZVW5UOHCDK5INYJNORF2HRKYI72M5XSZCBYAHQHR34FFR4Z6G4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
log:
2+
level: warn
3+
# we are using sentry for error collection,
4+
# you could opt-out by disabling it on the following line
5+
disable_sentry: false
6+
7+
sentry:
8+
dsn: https://[email protected]/6
9+
10+
horizon:
11+
endpoint: http://janus
12+
signer: SAMJKTZVW5UOHCDK5INYJNORF2HRKYI72M5XSZCBYAHQHR34FFR4Z6G4
13+
14+
coinpayments:
15+
merchant_id: "6936542314febfcc8dd3955fce88e0be"
16+
address: https://www.coinpayments.net/api.php
17+
private_key: "1004f66dB4081cA6D9c3f0651A1DC64eB754158e48daFb7441c4B632D26628eC"
18+
public_key: "f1db0de9c54cac677109f9da823b9627bef1c606fa75634c776100b88170a271"
19+
ipn_secret: "supersekr1tandsecure"
20+
request_timeout: 30
21+
22+
atomic_swap_matcher:
23+
signer: SAMJKTZVW5UOHCDK5INYJNORF2HRKYI72M5XSZCBYAHQHR34FFR4Z6G4

configs/poll-closer.yaml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
log:
2+
level: warn
3+
# we are using sentry for error collection,
4+
# you could opt-out by disabling it on the following line
5+
disable_sentry: true
6+
7+
sentry:
8+
dsn: https://[email protected]/6
9+
10+
closer:
11+
source: GBA4EX43M25UPV4WIE6RRMQOFTWXZZRIPFAI5VPY6Z2ZVVXVWZ6NEOOB
12+
signer: SAMJKTZVW5UOHCDK5INYJNORF2HRKYI72M5XSZCBYAHQHR34FFR4Z6G4
13+
concurrency: 100
14+
15+
horizon:
16+
endpoint: http://janus/
17+
signer: "SAMJKTZVW5UOHCDK5INYJNORF2HRKYI72M5XSZCBYAHQHR34FFR4Z6G4"
18+
19+
listener:
20+
addr: :2324

docker-compose.yml

+33-8
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ services:
3434
volumes:
3535
- adks-data:/pgdata
3636
core:
37-
image: tokend/core:3.5.0
37+
image: tokend/core:3.5.1
3838
depends_on:
3939
- janus
4040
restart: unless-stopped
@@ -51,17 +51,18 @@ services:
5151
labels:
5252
- "autoheal=true"
5353
horizon:
54-
image: tokend/horizon:3.4.0
54+
image: tokend/horizon:3.5.0
5555
depends_on:
5656
- core
5757
restart: unless-stopped
5858
environment:
5959
- POSTGRES_USER=horizon
6060
- POSTGRES_PASSWORD=horizon
6161
- POSTGRES_DB=horizon
62-
- PGDATA=/pgdata
62+
- PGDATA=/data/pgdata
6363
volumes:
6464
- ./configs/horizon.yaml:/config.yaml
65+
- horizon-data:/data
6566
api:
6667
image: tokend/identity:4.4.0
6768
restart: unless-stopped
@@ -94,14 +95,14 @@ services:
9495
entrypoint: ""
9596
command: /opt/config/apply.sh
9697
web_client:
97-
image: tokend/web-client:1.8.0
98+
image: tokend/web-client:1.9.0
9899
restart: unless-stopped
99100
volumes:
100101
- ./configs/client.js:/usr/share/nginx/html/static/env.js
101102
ports:
102103
- 8060:80
103104
admin_client:
104-
image: tokend/admin-client:1.8.0
105+
image: tokend/admin-client:1.9.0
105106
restart: unless-stopped
106107
volumes:
107108
- ./configs/client.js:/usr/share/nginx/html/static/env.js
@@ -143,6 +144,14 @@ services:
143144
environment:
144145
- KV_VIPER_FILE=/config.yaml
145146
command: "run"
147+
poll_closer:
148+
image: tokend/poll-closer:0.1.1
149+
restart: unless-stopped
150+
environment:
151+
- KV_VIPER_FILE=/config.yaml
152+
volumes:
153+
- ./configs/poll-closer.yaml:/config.yaml
154+
command: run closer
146155

147156
## 3rd party
148157

@@ -162,29 +171,45 @@ services:
162171
## Coinpayments
163172

164173
coinpayments-deposit:
165-
image: tokend/coinpayments:0.3.0
174+
image: tokend/coinpayments:0.4.0
166175
restart: unless-stopped
167176
environment:
168177
- KV_VIPER_FILE=/config.yaml
169178
volumes:
170179
- ./configs/coinpayments-deposit.yaml:/config.yaml
171180
command: deposit
172181
coinpayments-deposit-verify:
173-
image: tokend/coinpayments:0.3.0
182+
image: tokend/coinpayments:0.4.0
174183
restart: unless-stopped
175184
environment:
176185
- KV_VIPER_FILE=/config.yaml
177186
volumes:
178187
- ./configs/coinpayments-deposit-verify.yaml:/config.yaml
179188
command: deposit-verify
180189
coinpayments-withdraw:
181-
image: tokend/coinpayments:0.3.0
190+
image: tokend/coinpayments:0.4.0
182191
restart: unless-stopped
183192
environment:
184193
- KV_VIPER_FILE=/config.yaml
185194
volumes:
186195
- ./configs/coinpayments-withdraw.yaml:/config.yaml
187196
command: withdraw
197+
coinpayments-atomic-swap-checker:
198+
image: tokend/coinpayments:0.4.0
199+
restart: unless-stopped
200+
environment:
201+
- KV_VIPER_FILE=/config.yaml
202+
volumes:
203+
- ./configs/coinpayments-atomic-swap-checker.yaml:/config.yaml
204+
command: atomic-swap-checker
205+
coinpayments-atomic-swap-matcher:
206+
image: tokend/coinpayments:0.4.0
207+
restart: unless-stopped
208+
environment:
209+
- KV_VIPER_FILE=/config.yaml
210+
volumes:
211+
- ./configs/coinpayments-atomic-swap-matcher.yaml:/config.yaml
212+
command: atomic-swap-matcher
188213

189214
volumes:
190215
adks-data:

terraform/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ provider "tokend" {
1818
}
1919

2020
module "tokend_vanilla" {
21-
source = "git::https://github.com/tokend/terraform-tokend-vanilla.git?ref=v1.1.0"
21+
source = "git::https://github.com/tokend/terraform-tokend-vanilla.git?ref=9ed018b674c727179cb7c41a93824d56b85b8b7b"
2222
}

0 commit comments

Comments
 (0)