@percolatorct/sdk 1.0.0-beta.33 → 1.0.0-beta.35

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.
@@ -141,6 +141,7 @@ export interface StakePoolState {
141
141
  hwmEnabled: boolean;
142
142
  epochHighWaterTvl: bigint;
143
143
  hwmFloorBps: number;
144
+ hwmLastEpoch: bigint;
144
145
  trancheEnabled: boolean;
145
146
  juniorBalance: bigint;
146
147
  juniorTotalLp: bigint;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@percolatorct/sdk",
3
- "version": "1.0.0-beta.33",
3
+ "version": "1.0.0-beta.35",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "engines": {
@@ -19,12 +19,6 @@
19
19
  "files": [
20
20
  "dist"
21
21
  ],
22
- "scripts": {
23
- "build": "tsup && tsc --emitDeclarationOnly --declaration --outDir dist",
24
- "test": "tsx test/abi.test.ts && tsx test/slab.test.ts && tsx test/validation.test.ts && tsx test/dex-oracle.test.ts && tsx test/trading.test.ts && tsx test/warmup-leverage-cap.test.ts && tsx test/dynamic-fees.test.ts && tsx test/oracle.test.ts && vitest run",
25
- "lint": "tsc --noEmit",
26
- "verify-layout": "tsx scripts/verify-layout.ts"
27
- },
28
22
  "dependencies": {
29
23
  "@solana/spl-token": "^0.4.14",
30
24
  "@solana/web3.js": "^1.95.4"
@@ -36,5 +30,13 @@
36
30
  "tsx": "^4.21.0",
37
31
  "typescript": "^5.7.2",
38
32
  "vitest": "^4.0.18"
33
+ },
34
+ "scripts": {
35
+ "build": "tsup && tsc --emitDeclarationOnly --declaration --outDir dist",
36
+ "test": "tsx test/abi.test.ts && tsx test/slab.test.ts && tsx test/validation.test.ts && tsx test/dex-oracle.test.ts && tsx test/trading.test.ts && tsx test/warmup-leverage-cap.test.ts && tsx test/dynamic-fees.test.ts && tsx test/oracle.test.ts && vitest run",
37
+ "lint": "tsc --noEmit",
38
+ "verify-layout": "tsx scripts/verify-layout.ts",
39
+ "update-parity-fixtures": "node scripts/update-parity-fixtures.mjs",
40
+ "parity:check": "node scripts/check-parity-fixtures.mjs"
39
41
  }
40
- }
42
+ }