@lagoon-protocol/v0-core 0.16.1 → 0.17.0
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/dist/cjs/index.cjs
CHANGED
|
@@ -2400,6 +2400,7 @@ class Vault extends Token {
|
|
|
2400
2400
|
highWaterMark;
|
|
2401
2401
|
cooldown;
|
|
2402
2402
|
feeRates;
|
|
2403
|
+
upcomingFeeRates;
|
|
2403
2404
|
protocolRate;
|
|
2404
2405
|
owner;
|
|
2405
2406
|
pendingOwner;
|
|
@@ -2432,6 +2433,7 @@ class Vault extends Token {
|
|
|
2432
2433
|
highWaterMark,
|
|
2433
2434
|
cooldown,
|
|
2434
2435
|
feeRates,
|
|
2436
|
+
upcomingFeeRates,
|
|
2435
2437
|
owner,
|
|
2436
2438
|
pendingOwner,
|
|
2437
2439
|
whitelistManager,
|
|
@@ -2466,6 +2468,7 @@ class Vault extends Token {
|
|
|
2466
2468
|
this.highWaterMark = highWaterMark;
|
|
2467
2469
|
this.cooldown = cooldown;
|
|
2468
2470
|
this.feeRates = feeRates;
|
|
2471
|
+
this.upcomingFeeRates = upcomingFeeRates ?? null;
|
|
2469
2472
|
this.protocolRate = protocolRate;
|
|
2470
2473
|
this.owner = owner;
|
|
2471
2474
|
this.pendingOwner = pendingOwner;
|
package/dist/esm/index.js
CHANGED
|
@@ -2341,6 +2341,7 @@ class Vault extends Token {
|
|
|
2341
2341
|
highWaterMark;
|
|
2342
2342
|
cooldown;
|
|
2343
2343
|
feeRates;
|
|
2344
|
+
upcomingFeeRates;
|
|
2344
2345
|
protocolRate;
|
|
2345
2346
|
owner;
|
|
2346
2347
|
pendingOwner;
|
|
@@ -2373,6 +2374,7 @@ class Vault extends Token {
|
|
|
2373
2374
|
highWaterMark,
|
|
2374
2375
|
cooldown,
|
|
2375
2376
|
feeRates,
|
|
2377
|
+
upcomingFeeRates,
|
|
2376
2378
|
owner,
|
|
2377
2379
|
pendingOwner,
|
|
2378
2380
|
whitelistManager,
|
|
@@ -2407,6 +2409,7 @@ class Vault extends Token {
|
|
|
2407
2409
|
this.highWaterMark = highWaterMark;
|
|
2408
2410
|
this.cooldown = cooldown;
|
|
2409
2411
|
this.feeRates = feeRates;
|
|
2412
|
+
this.upcomingFeeRates = upcomingFeeRates ?? null;
|
|
2410
2413
|
this.protocolRate = protocolRate;
|
|
2411
2414
|
this.owner = owner;
|
|
2412
2415
|
this.pendingOwner = pendingOwner;
|