@percolatorct/sdk 1.0.0-beta.8 → 1.0.0-beta.9

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/index.js CHANGED
@@ -2449,14 +2449,6 @@ function parseConfig(data, layoutHint) {
2449
2449
  off += 8;
2450
2450
  const fundingMaxBpsPerSlot = readI64LE(data, off);
2451
2451
  off += 8;
2452
- const fundingPremiumWeightBps = readU64LE(data, off);
2453
- off += 8;
2454
- const fundingSettlementIntervalSlots = readU64LE(data, off);
2455
- off += 8;
2456
- const fundingPremiumDampeningE6 = readU64LE(data, off);
2457
- off += 8;
2458
- const fundingPremiumMaxBpsPerSlot = readU64LE(data, off);
2459
- off += 8;
2460
2452
  const threshFloor = readU128LE(data, off);
2461
2453
  off += 16;
2462
2454
  const threshRiskBps = readU64LE(data, off);
@@ -2543,10 +2535,10 @@ function parseConfig(data, layoutHint) {
2543
2535
  fundingInvScaleNotionalE6,
2544
2536
  fundingMaxPremiumBps,
2545
2537
  fundingMaxBpsPerSlot,
2546
- fundingPremiumWeightBps,
2547
- fundingSettlementIntervalSlots,
2548
- fundingPremiumDampeningE6,
2549
- fundingPremiumMaxBpsPerSlot,
2538
+ fundingPremiumWeightBps: 0n,
2539
+ fundingSettlementIntervalSlots: 0n,
2540
+ fundingPremiumDampeningE6: 0n,
2541
+ fundingPremiumMaxBpsPerSlot: 0n,
2550
2542
  threshFloor,
2551
2543
  threshRiskBps,
2552
2544
  threshUpdateIntervalSlots,