@meteora-ag/cp-amm-sdk 1.0.1-rc.7 → 1.0.1-rc.8

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.mjs CHANGED
@@ -6176,6 +6176,7 @@ var cp_amm_default = {
6176
6176
 
6177
6177
  // src/CpAmm.ts
6178
6178
  import {
6179
+ PublicKey as PublicKey5,
6179
6180
  SystemProgram as SystemProgram2
6180
6181
  } from "@solana/web3.js";
6181
6182
 
@@ -6879,6 +6880,44 @@ var CpAmm = class {
6879
6880
  return positionState;
6880
6881
  });
6881
6882
  }
6883
+ getAllConfigs() {
6884
+ return __async(this, null, function* () {
6885
+ const configAccounts = yield this._program.account.config.all();
6886
+ return configAccounts;
6887
+ });
6888
+ }
6889
+ getAllPools() {
6890
+ return __async(this, null, function* () {
6891
+ const poolAccounts = yield this._program.account.pool.all();
6892
+ return poolAccounts;
6893
+ });
6894
+ }
6895
+ getAllPositions() {
6896
+ return __async(this, null, function* () {
6897
+ const poolAccounts = yield this._program.account.position.all();
6898
+ return poolAccounts;
6899
+ });
6900
+ }
6901
+ getPositionsByUser(user) {
6902
+ return __async(this, null, function* () {
6903
+ const positions = yield this._program.account.position.all();
6904
+ const positionNftMints = positions.map((item) => item.account.nftMint);
6905
+ const result = [];
6906
+ for (const position of positions) {
6907
+ const largesTokenAccount = yield this._program.provider.connection.getTokenLargestAccounts(
6908
+ positionNftMints[0]
6909
+ );
6910
+ const accountInfo = yield this._program.provider.connection.getParsedAccountInfo(
6911
+ largesTokenAccount.value[0].address
6912
+ );
6913
+ const owner = new PublicKey5(accountInfo.value.data.parsed.info.owner);
6914
+ if (owner.equals(user)) {
6915
+ result.push(position);
6916
+ }
6917
+ }
6918
+ return result;
6919
+ });
6920
+ }
6882
6921
  getQuote(params) {
6883
6922
  return __async(this, null, function* () {
6884
6923
  var _a;