2025-02-04 04:55:21 -07:00
|
|
|
/*
|
|
|
|
|
Global configuration settings for this app.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
const config = {
|
|
|
|
|
// Default IPFS CID for the app. This will be overwritten by dynamic lookup.
|
|
|
|
|
ipfsCid: 'bafybeibya4cwro6rgqfaazqxckcchy6qo5sz2aqc4dx7ptcvpns5peqcz4',
|
|
|
|
|
|
|
|
|
|
// BCH address used to point to the latest version of the IPFS CID.
|
|
|
|
|
appBchAddr: 'bitcoincash:qztv87ppjh82v527jq2drp4u8rzzn63r5cmhth2zzm',
|
|
|
|
|
|
|
|
|
|
// Backup Info that goes into the Footer.
|
|
|
|
|
ghPagesUrl: 'https://permissionless-software-foundation.github.io/react-bootstrap-web3-spa/',
|
2025-04-10 19:42:38 -07:00
|
|
|
ghRepo: 'https://github.com/Permissionless-Software-Foundation/bch-dex-taker-v2',
|
2025-02-04 17:02:54 -07:00
|
|
|
radicleUrl: 'https://app.radicle.network/seeds/maple.radicle.garden/rad:git:hnrkd5cjwwb5tzx37hq9uqm5ubon7ee468xcy/remotes/hyyycncbn9qzqmobnhjq9rry6t4mbjiadzjoyhaknzxjcz3cxkpfpc',
|
|
|
|
|
|
2025-07-15 06:14:04 -07:00
|
|
|
dexServer: 'https://dex-api.fullstack.cash',
|
2025-07-17 11:41:57 -04:00
|
|
|
// dexServer: 'http://localhost:5700',
|
2025-05-19 16:41:39 -07:00
|
|
|
|
|
|
|
|
nostrTopic: 'bch-dex-test-topic-02',
|
2025-08-04 12:18:49 -07:00
|
|
|
nostrRelay: 'wss://nostr-relay.psfoundation.info',
|
|
|
|
|
nostrRelays: [
|
|
|
|
|
'wss://nostr-relay.psfoundation.info',
|
|
|
|
|
'wss://nos.lol',
|
|
|
|
|
'wss://relay.damus.io'
|
2025-08-27 17:49:16 -04:00
|
|
|
],
|
|
|
|
|
chatsId: [
|
|
|
|
|
'32b0ebc01c984008977fbe476e064946990df75525331b24b37bbba5e89f4039'
|
2025-08-04 12:18:49 -07:00
|
|
|
]
|
2025-02-04 04:55:21 -07:00
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default config
|