@drift-labs/vaults-sdk 0.4.1 → 0.4.2

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.
@@ -1334,7 +1334,7 @@ class VaultClient {
1334
1334
  preFlightCommitment: 'confirmed',
1335
1335
  forceVersionedTransaction: true,
1336
1336
  txVersion: 0,
1337
- fetchMarketLookupTableAccount: this.driftClient.fetchMarketLookupTableAccount.bind(this.driftClient),
1337
+ fetchAllMarketLookupTableAccounts: this.driftClient.fetchAllLookupTableAccounts.bind(this.driftClient),
1338
1338
  }));
1339
1339
  }
1340
1340
  async sendTxn(transaction, simulateTransaction) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drift-labs/vaults-sdk",
3
- "version": "0.4.1",
3
+ "version": "0.4.2",
4
4
  "main": "lib/index.js",
5
5
  "types": "lib/index.d.ts",
6
6
  "directories": {
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "dependencies": {
10
10
  "@coral-xyz/anchor": "0.28.0",
11
- "@drift-labs/sdk": "2.110.0-beta.4",
11
+ "@drift-labs/sdk": "2.110.0-beta.5",
12
12
  "@ledgerhq/hw-app-solana": "7.2.4",
13
13
  "@ledgerhq/hw-transport": "6.31.4",
14
14
  "@ledgerhq/hw-transport-node-hid": "6.29.5",
@@ -2128,8 +2128,8 @@ export class VaultClient {
2128
2128
  preFlightCommitment: 'confirmed',
2129
2129
  forceVersionedTransaction: true,
2130
2130
  txVersion: 0,
2131
- fetchMarketLookupTableAccount:
2132
- this.driftClient.fetchMarketLookupTableAccount.bind(this.driftClient),
2131
+ fetchAllMarketLookupTableAccounts:
2132
+ this.driftClient.fetchAllLookupTableAccounts.bind(this.driftClient),
2133
2133
  })) as VersionedTransaction;
2134
2134
  }
2135
2135