Skip to content

Commit 82e47cb

Browse files
authored
Use new dev relay (#637)
1 parent b0c3092 commit 82e47cb

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
* Add basic logic for implementing (social) identity proofs
44
* Add persistence, basic service layer and WASM API for identity proofs
5+
* Changed default relay to `wss://bcr-relay-dev.minibill.tech`
56

67
# 0.4.5
78

crates/bcr-ebill-wasm/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ let config = {
8080
// esplora_base_url: "http://localhost:8094", // local reg test via docker-compose
8181
bitcoin_network: "testnet",
8282
esplora_base_url: "https://esplora.minibill.tech",
83-
nostr_relays: ["wss://bitcr-cloud-run-05-550030097098.europe-west1.run.app"],
83+
nostr_relays: ["wss://bcr-relay-dev.minibill.tech"],
8484
// nostr_relays: ["ws://localhost:8080"],
8585
// if set to true we will drop DMs from nostr that we don't have in contacts
8686
nostr_only_known_contacts: false,

docs/esplora.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ For this, you also have to set the config to use `regtest` as a bitcoin network
1212
log_level: "debug",
1313
bitcoin_network: "regtest",
1414
esplora_base_url: "http://localhost:8094",
15-
nostr_relays: ["wss://bitcr-cloud-run-05-550030097098.europe-west1.run.app"],
15+
nostr_relays: ["wss://bcr-relay-dev.minibill.tech"],
1616
job_runner_initial_delay_seconds: 1,
1717
job_runner_check_interval_seconds: 600,
1818
};

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_relays: ["wss://bitcr-cloud-run-05-550030097098.europe-west1.run.app"],
58+
nostr_relays: ["wss://bcr-relay-dev.minibill.tech"],
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_relays: ["wss://bitcr-cloud-run-05-550030097098.europe-west1.run.app"],
272+
nostr_relays: ["wss://bcr-relay-dev.minibill.tech"],
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
@@ -30,7 +30,7 @@ It contains the following options:
3030
let config = {
3131
bitcoin_network: "testnet",
3232
esplora_base_url: "https://esplora.minibill.tech",
33-
nostr_relays: ["wss://bitcr-cloud-run-05-550030097098.europe-west1.run.app"],
33+
nostr_relays: ["wss://bcr-relay-dev.minibill.tech"],
3434
surreal_db_connection: "indxdb://default",
3535
data_dir: ".",
3636
job_runner_initial_delay_seconds: 1,

0 commit comments

Comments
 (0)