@drift-labs/sdk 2.113.0-beta.2 → 2.113.0-beta.3

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/VERSION CHANGED
@@ -1 +1 @@
1
- 2.113.0-beta.2
1
+ 2.113.0-beta.3
@@ -1073,7 +1073,7 @@ export type UserStatsAccount = {
1073
1073
  };
1074
1074
  export type FuelOverflowAccount = {
1075
1075
  authority: PublicKey;
1076
- fuelInsurance: number;
1076
+ fuelInsurance: BN;
1077
1077
  fuelDeposits: BN;
1078
1078
  fuelBorrows: BN;
1079
1079
  fuelPositions: BN;
@@ -1073,7 +1073,7 @@ export type UserStatsAccount = {
1073
1073
  };
1074
1074
  export type FuelOverflowAccount = {
1075
1075
  authority: PublicKey;
1076
- fuelInsurance: number;
1076
+ fuelInsurance: BN;
1077
1077
  fuelDeposits: BN;
1078
1078
  fuelBorrows: BN;
1079
1079
  fuelPositions: BN;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drift-labs/sdk",
3
- "version": "2.113.0-beta.2",
3
+ "version": "2.113.0-beta.3",
4
4
  "main": "lib/node/index.js",
5
5
  "types": "lib/node/index.d.ts",
6
6
  "browser": "./lib/browser/index.js",
package/src/types.ts CHANGED
@@ -1011,7 +1011,7 @@ export type UserStatsAccount = {
1011
1011
 
1012
1012
  export type FuelOverflowAccount = {
1013
1013
  authority: PublicKey;
1014
- fuelInsurance: number;
1014
+ fuelInsurance: BN;
1015
1015
  fuelDeposits: BN;
1016
1016
  fuelBorrows: BN;
1017
1017
  fuelPositions: BN;