Skip to content

Commit

Permalink
Update local config for mainnet multisig-app
Browse files Browse the repository at this point in the history
  • Loading branch information
sisou committed Sep 24, 2024
1 parent 4a740c6 commit be6f05d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/config/config.local.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
import { NETWORK_TEST } from '../lib/Constants';
import { NETWORK_MAIN } from '../lib/Constants';
import { BTC_NETWORK_TEST, NATIVE_SEGWIT } from '../lib/bitcoin/BitcoinConstants';
import { POLYGON_NETWORK_TEST } from '../lib/polygon/PolygonConstants';

export default {
keyguardEndpoint: window.location.protocol + '//' + window.location.hostname + ':8000/src',
network: NETWORK_TEST,
networkEndpoint: 'https://network.nimiq-testnet.com',
privilegedOrigins: [ '*' ],
network: NETWORK_MAIN,
networkEndpoint: 'https://network.nimiq.com',
privilegedOrigins: [ 'https://mainnet-local.nimiq-multisig.com' ],
redirectTarget: window.location.protocol + '//' + window.location.hostname + ':8080/demos.html',
reportToSentry: false,
checkoutWithoutNimOrigins: [ '*' ],
checkoutWithoutNimOrigins: [],

enableBitcoin: true,
bitcoinNetwork: BTC_NETWORK_TEST,
Expand Down

0 comments on commit be6f05d

Please sign in to comment.