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
Copy file name to clipboardExpand all lines: setup-wizard.yml
+35-2Lines changed: 35 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,39 @@ fields:
21
21
required: false
22
22
secret: true
23
23
24
+
25
+
- id: external_ws_rpc
26
+
title: External WS RPC
27
+
description: |
28
+
A websocket connection to an external ethereum RPC (e.g. 'wss://some.external.url' or 'ws://1.2.3.4:8545'). If this is given, shutter will use this RPC to connect to the network. If not, shutter will try to use an RPC service on this dappnode.
29
+
target:
30
+
type: environment
31
+
name: ETHEREUM_WS
32
+
service: shutter
33
+
required: false
34
+
35
+
- id: external_beacon_http_rpc
36
+
title: External Beacon HTTP RPC
37
+
description: |
38
+
A HTTP connection to an external ethereum beacon RPC (e.g. 'https://some.external.url' or 'http://1.2.3.4:4000'). If this is given, shutter will use this beacon api to connect to the network. If not, shutter will try to use an beacon api service on this dappnode.
39
+
target:
40
+
type: environment
41
+
name: BEACON_HTTP
42
+
service: shutter
43
+
required: false
44
+
45
+
- id: enable_push_logs
46
+
title: Enable Push Logs
47
+
description: |
48
+
Enable the push logs feature to send logs to an external server controlled by Shutter.
Copy file name to clipboardExpand all lines: shutter/scripts/configure_keyper.sh
+46-2Lines changed: 46 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,43 @@
6
6
# shellcheck disable=SC1091
7
7
."${ASSETS_DIR}/variables.env"
8
8
9
+
NODE_VERSION=22.14.0
10
+
NODE_PACKAGE=node-v$NODE_VERSION-linux-x64
11
+
NODE_HOME=/opt/$NODE_PACKAGE
12
+
13
+
NODE_PATH=$NODE_HOME/lib/node_modules
14
+
PATH=$NODE_HOME/bin:$PATH
15
+
16
+
functiontest_ethereum_url() {
17
+
# FIXME: This is a workaround for the issue with the [email protected] not setting get_execution_ws_url_from_global_env correctly in the environment variables.
0 commit comments