Update relay URLs in nostrZap.js configuration

This commit is contained in:
user
2025-11-16 18:35:48 +01:00
parent 07caebd54f
commit 81adc50fc5

View File

@@ -10,13 +10,13 @@ export default (livewireComponent) => ({
async zap(message, sender, amountToPay, env) {
const config = {
production: {
relayUrl: 'wss://simple-relay.steuernsindraub21.xyz',
relayUrl: 'wss://simple-relay.codingarena.top',
},
staging: {
relayUrl: 'wss://simple-test-relay.steuernsindraub21.xyz',
relayUrl: 'wss://simple-test-relay.codingarena.top',
},
local: {
relayUrl: 'wss://simple-test-relay.steuernsindraub21.xyz',
relayUrl: 'wss://simple-test-relay.codingarena.top',
},
};
const relayUrl = config[env]?.relayUrl || config['local'].relayUrl;