Skip to content

Commit 20247ab

Browse files
authored
update default nostr in the web version and docs (#485)
1 parent f4b9489 commit 20247ab

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.cargo/config.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[env]
22
# our dev nostr relay
3-
NOSTR_RELAY = "wss://bitcr-cloud-run-04-550030097098.europe-west1.run.app"
3+
NOSTR_RELAY = "wss://bitcr-cloud-run-05-550030097098.europe-west1.run.app"
44

55
# more detailed logs
66
RUST_LOG = "info"

crates/bcr-ebill-wasm/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ async function start() {
3131
let config = {
3232
log_level: "debug",
3333
bitcoin_network: "testnet",
34-
nostr_relay: "wss://bitcr-cloud-run-04-550030097098.europe-west1.run.app",
34+
nostr_relay: "wss://bitcr-cloud-run-05-550030097098.europe-west1.run.app",
3535
job_runner_initial_delay_seconds: 1,
3636
job_runner_check_interval_seconds: 600,
3737
};

crates/bcr-ebill-web/src/requests/contacts.http

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Accept: application/json
2020
"city_of_birth_or_registration": "Vienna",
2121
"identification_number": "12315412312",
2222
"nostr_relays": [
23-
"wss://bitcr-cloud-run-04-550030097098.europe-west1.run.app"
23+
"wss://bitcr-cloud-run-05-550030097098.europe-west1.run.app"
2424
]
2525
}
2626

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ services:
66
- HTTP_PORT=8001
77
- RUST_LOG=info
88
- SURREAL_DB_CONNECTION=ws://surrealdb:8000
9-
- NOSTR_RELAY=wss://bitcr-cloud-run-04-550030097098.europe-west1.run.app
9+
- NOSTR_RELAY=wss://bitcr-cloud-run-05-550030097098.europe-west1.run.app
1010
ports:
1111
- "8001:8001"
1212
- "1909:1909"

docs/wasm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ import * as wasm from '../pkg/bcr_ebill_wasm.js';
5555
async function start() {
5656
let config = {
5757
bitcoin_network: "testnet",
58-
nostr_relay: "wss://bitcr-cloud-run-04-550030097098.europe-west1.run.app",
58+
nostr_relay: "wss://bitcr-cloud-run-05-550030097098.europe-west1.run.app",
5959
surreal_db_connection: "indxdb://default",
6060
data_dir: ".",
6161
job_runner_initial_delay_seconds: 1,
@@ -269,7 +269,7 @@ import * as wasm from '@bitcredit/bcr-ebill-wasm';
269269
async function start() {
270270
let config = {
271271
bitcoin_network: "testnet",
272-
nostr_relay: "wss://bitcr-cloud-run-04-550030097098.europe-west1.run.app",
272+
nostr_relay: "wss://bitcr-cloud-run-05-550030097098.europe-west1.run.app",
273273
surreal_db_connection: "indxdb://default",
274274
data_dir: ".",
275275
job_runner_initial_delay_seconds: 1,

docs/wasm_configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ It contains the following options:
2727
```javascript
2828
let config = {
2929
bitcoin_network: "testnet",
30-
nostr_relay: "wss://bitcr-cloud-run-04-550030097098.europe-west1.run.app",
30+
nostr_relay: "wss://bitcr-cloud-run-05-550030097098.europe-west1.run.app",
3131
surreal_db_connection: "indxdb://default",
3232
data_dir: ".",
3333
job_runner_initial_delay_seconds: 1,

0 commit comments

Comments
 (0)