@curvefi/llamalend-api 1.0.10 → 1.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/llamalend.js CHANGED
@@ -357,7 +357,7 @@ class Llamalend {
357
357
  this.options = {};
358
358
  this.constants = {
359
359
  ONE_WAY_MARKETS: {},
360
- LLAMMAS,
360
+ LLAMMAS: {},
361
361
  COINS: {},
362
362
  DECIMALS: {},
363
363
  NETWORK_NAME: 'ethereum',
@@ -393,7 +393,7 @@ class Llamalend {
393
393
  this.options = {};
394
394
  this.constants = {
395
395
  ONE_WAY_MARKETS: {},
396
- LLAMMAS,
396
+ LLAMMAS: Object.assign({}, LLAMMAS),
397
397
  COINS: {},
398
398
  DECIMALS: {},
399
399
  NETWORK_NAME: 'ethereum',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@curvefi/llamalend-api",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "JavaScript library for Curve Lending",
5
5
  "main": "lib/index.js",
6
6
  "author": "Macket",
package/src/llamalend.ts CHANGED
@@ -212,7 +212,7 @@ class Llamalend implements ILlamalend {
212
212
  this.options = {};
213
213
  this.constants = {
214
214
  ONE_WAY_MARKETS: {},
215
- LLAMMAS,
215
+ LLAMMAS: {},
216
216
  COINS: {},
217
217
  DECIMALS: {},
218
218
  NETWORK_NAME: 'ethereum',
@@ -250,7 +250,7 @@ class Llamalend implements ILlamalend {
250
250
  this.options = {};
251
251
  this.constants = {
252
252
  ONE_WAY_MARKETS: {},
253
- LLAMMAS,
253
+ LLAMMAS: {...LLAMMAS},
254
254
  COINS: {},
255
255
  DECIMALS: {},
256
256
  NETWORK_NAME: 'ethereum',