File tree 3 files changed +19
-1
lines changed
3 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,21 @@ services:
12
12
- .env
13
13
platform : linux/amd64
14
14
entrypoint : ["blobstream0", "service"]
15
+ depends_on :
16
+ fireblocks :
17
+ condition : service_started
18
+
19
+ fireblocks :
20
+ container_name : fireblocks
21
+ build :
22
+ context : .
23
+ dockerfile : ./dockerfiles/fireblocks.Dockerfile
24
+ env_file :
25
+ - .env
26
+ ports :
27
+ - " 8545:8545"
28
+ platform : linux/amd64
29
+ entrypoint : ["fireblocks-json-rpc"]
15
30
16
31
blobstream0-dev :
17
32
container_name : blobstream0-dev
Original file line number Diff line number Diff line change @@ -248,7 +248,7 @@ where
248
248
update_tx
249
249
. send ( )
250
250
. await ?
251
- . with_timeout ( Some ( Duration :: from_secs ( 60 ) ) )
251
+ . with_timeout ( Some ( Duration :: from_secs ( 120 ) ) )
252
252
. watch ( )
253
253
. await ?;
254
254
Original file line number Diff line number Diff line change
1
+ FROM node:20
2
+ RUN npm install -g @fireblocks/fireblocks-json-rpc
3
+ ENTRYPOINT ["fireblocks-json-rpc" ]
You can’t perform that action at this time.
0 commit comments