@crypticdot/defituna-client 3.2.2 → 3.2.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/dist/index.d.mts CHANGED
@@ -5669,7 +5669,7 @@ type RepayTunaLpPositionDebtInstruction<TProgram extends string = typeof TUNA_PR
5669
5669
  TAccountAuthority extends string ? WritableSignerAccount<TAccountAuthority> & IAccountSignerMeta<TAccountAuthority> : TAccountAuthority,
5670
5670
  TAccountMintA extends string ? ReadonlyAccount<TAccountMintA> : TAccountMintA,
5671
5671
  TAccountMintB extends string ? ReadonlyAccount<TAccountMintB> : TAccountMintB,
5672
- TAccountMarket extends string ? ReadonlyAccount<TAccountMarket> : TAccountMarket,
5672
+ TAccountMarket extends string ? WritableAccount<TAccountMarket> : TAccountMarket,
5673
5673
  TAccountVaultA extends string ? WritableAccount<TAccountVaultA> : TAccountVaultA,
5674
5674
  TAccountVaultB extends string ? WritableAccount<TAccountVaultB> : TAccountVaultB,
5675
5675
  TAccountVaultAAta extends string ? WritableAccount<TAccountVaultAAta> : TAccountVaultAAta,
package/dist/index.d.ts CHANGED
@@ -5669,7 +5669,7 @@ type RepayTunaLpPositionDebtInstruction<TProgram extends string = typeof TUNA_PR
5669
5669
  TAccountAuthority extends string ? WritableSignerAccount<TAccountAuthority> & IAccountSignerMeta<TAccountAuthority> : TAccountAuthority,
5670
5670
  TAccountMintA extends string ? ReadonlyAccount<TAccountMintA> : TAccountMintA,
5671
5671
  TAccountMintB extends string ? ReadonlyAccount<TAccountMintB> : TAccountMintB,
5672
- TAccountMarket extends string ? ReadonlyAccount<TAccountMarket> : TAccountMarket,
5672
+ TAccountMarket extends string ? WritableAccount<TAccountMarket> : TAccountMarket,
5673
5673
  TAccountVaultA extends string ? WritableAccount<TAccountVaultA> : TAccountVaultA,
5674
5674
  TAccountVaultB extends string ? WritableAccount<TAccountVaultB> : TAccountVaultB,
5675
5675
  TAccountVaultAAta extends string ? WritableAccount<TAccountVaultAAta> : TAccountVaultAAta,
package/dist/index.js CHANGED
@@ -8259,7 +8259,7 @@ function getRepayTunaLpPositionDebtInstruction(input, config) {
8259
8259
  authority: { value: input.authority ?? null, isWritable: true },
8260
8260
  mintA: { value: input.mintA ?? null, isWritable: false },
8261
8261
  mintB: { value: input.mintB ?? null, isWritable: false },
8262
- market: { value: input.market ?? null, isWritable: false },
8262
+ market: { value: input.market ?? null, isWritable: true },
8263
8263
  vaultA: { value: input.vaultA ?? null, isWritable: true },
8264
8264
  vaultB: { value: input.vaultB ?? null, isWritable: true },
8265
8265
  vaultAAta: { value: input.vaultAAta ?? null, isWritable: true },
package/dist/index.mjs CHANGED
@@ -8184,7 +8184,7 @@ function getRepayTunaLpPositionDebtInstruction(input, config) {
8184
8184
  authority: { value: input.authority ?? null, isWritable: true },
8185
8185
  mintA: { value: input.mintA ?? null, isWritable: false },
8186
8186
  mintB: { value: input.mintB ?? null, isWritable: false },
8187
- market: { value: input.market ?? null, isWritable: false },
8187
+ market: { value: input.market ?? null, isWritable: true },
8188
8188
  vaultA: { value: input.vaultA ?? null, isWritable: true },
8189
8189
  vaultB: { value: input.vaultB ?? null, isWritable: true },
8190
8190
  vaultAAta: { value: input.vaultAAta ?? null, isWritable: true },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@crypticdot/defituna-client",
3
3
  "description": "Typescript client to interact with DefiTuna's on-chain program.",
4
- "version": "3.2.2",
4
+ "version": "3.2.3",
5
5
  "private": false,
6
6
  "license": "SEE LICENSE IN LICENSE",
7
7
  "main": "./dist/index.js",
@@ -30,7 +30,7 @@
30
30
  "@solana-program/token-2022": "^0.4.2",
31
31
  "@solana-program/memo": "^0.7.0",
32
32
  "@solana-program/address-lookup-table": "^0.7.0",
33
- "@crypticdot/defituna-core": "3.2.2"
33
+ "@crypticdot/defituna-core": "3.2.3"
34
34
  },
35
35
  "devDependencies": {
36
36
  "@crypticdot/typescript-config": "^1.0.0",