mirror of
https://github.com/Permissionless-Software-Foundation/bch-dex-taker-v2.git
synced 2026-09-21 16:52:01 -07:00
20 lines
805 B
JavaScript
20 lines
805 B
JavaScript
/*
|
|
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/',
|
|
ghRepo: 'https://github.com/Permissionless-Software-Foundation/react-bootstrap-web3-spa',
|
|
radicleUrl: 'https://app.radicle.network/seeds/maple.radicle.garden/rad:git:hnrkd5cjwwb5tzx37hq9uqm5ubon7ee468xcy/remotes/hyyycncbn9qzqmobnhjq9rry6t4mbjiadzjoyhaknzxjcz3cxkpfpc'
|
|
|
|
}
|
|
|
|
export default config
|