Skip to content

Commit 269ac12

Browse files
committed
Merge branch 'develop' into providers-other-than-infura
2 parents 1c4cd22 + d143c48 commit 269ac12

File tree

6 files changed

+16389
-7809
lines changed

6 files changed

+16389
-7809
lines changed

index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ const defaults = {
9191
forex: w3utils.toWei('0.003'),
9292
commodity: w3utils.toWei('0.003'),
9393
equities: w3utils.toWei('0.003'),
94-
crypto: w3utils.toWei('0.003'),
94+
crypto: w3utils.toWei('0.01'),
9595
index: w3utils.toWei('0.003'),
9696
},
9797
MINIMUM_STAKE_TIME: (3600 * 24).toString(), // 1 days
@@ -271,7 +271,7 @@ const getSynths = ({
271271
}
272272

273273
if (synth.inverted) {
274-
synth.desc = `Inverse ${synth.desc}`;
274+
synth.description = `Inverse ${synth.description}`;
275275
}
276276
// replace an index placeholder with the index details
277277
if (typeof synth.index === 'string') {
@@ -418,7 +418,7 @@ const getTokens = ({ network = 'mainnet', path, fs } = {}) => {
418418
.map(synth => ({
419419
symbol: synth.name,
420420
asset: synth.asset,
421-
name: synth.desc,
421+
name: synth.description,
422422
address: targets[`Proxy${synth.name === 'sUSD' ? 'ERC20sUSD' : synth.name}`].address,
423423
index: synth.index,
424424
inverted: synth.inverted,

0 commit comments

Comments
 (0)