Skip to content

Commit

Permalink
Fix currencies for other domains (austintgriffith#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
TimDaub authored and johannbarbie committed Jul 5, 2019
1 parent 2418f18 commit b1758b3
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
const configs = [
{
DOMAINS: ["localhost", "10.0.0.107", "sundai.fritz.box"],
CURRENCY: {
EXCHANGE_RATE_QUERY: 5000,
CURRENCY_LIST: ["EUR", "USD", "GBP"],
DEFAULT_CURRENCY: "USD"
},
DOMAINS: ["localhost", "10.0.0.107", "sundai.fritz.box"],
SIDECHAIN: {
NAME: "Leap Testnet",
RPC: "https://testnet-node.leapdao.org",
Expand Down Expand Up @@ -41,6 +41,11 @@ const configs = [
},
{
DOMAINS: ["s.peep.cash"],
CURRENCY: {
EXCHANGE_RATE_QUERY: 5000,
CURRENCY_LIST: ["EUR", "USD", "GBP"],
DEFAULT_CURRENCY: "USD"
},
SIDECHAIN: {
NAME: "Leap Testnet",
RPC: "https://testnet-node.leapdao.org",
Expand Down Expand Up @@ -76,6 +81,11 @@ const configs = [
},
{
DOMAINS: ["sundai.io"],
CURRENCY: {
EXCHANGE_RATE_QUERY: 5000,
CURRENCY_LIST: ["EUR", "USD", "GBP"],
DEFAULT_CURRENCY: "USD"
},
SIDECHAIN: {
NAME: "Leap Network",
RPC: "wss://mainnet-node1.leapdao.org:1443",
Expand Down

0 comments on commit b1758b3

Please sign in to comment.