@jup-ag/lend 0.0.29 → 0.0.30

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.
@@ -22,6 +22,7 @@ declare function getDepositContext({ recipient, asset, signer, cluster, }: Depos
22
22
  recipientTokenAccount: PublicKey;
23
23
  lendingAdmin: PublicKey;
24
24
  lending: PublicKey;
25
+ mint: PublicKey;
25
26
  fTokenMint: PublicKey;
26
27
  claimAccount: PublicKey;
27
28
  supplyTokenReservesLiquidity: PublicKey;
@@ -22,6 +22,7 @@ declare function getDepositContext({ recipient, asset, signer, cluster, }: Depos
22
22
  recipientTokenAccount: PublicKey;
23
23
  lendingAdmin: PublicKey;
24
24
  lending: PublicKey;
25
+ mint: PublicKey;
25
26
  fTokenMint: PublicKey;
26
27
  claimAccount: PublicKey;
27
28
  supplyTokenReservesLiquidity: PublicKey;
@@ -38,6 +38,7 @@ function getDepositContext({
38
38
  ),
39
39
  lendingAdmin: getLendingAdmin(cluster),
40
40
  lending: lending2,
41
+ mint: asset,
41
42
  fTokenMint: lendingToken,
42
43
  claimAccount: getClaimAccount(
43
44
  asset,
package/dist/index.mjs CHANGED
@@ -5,6 +5,6 @@ import '@solana/web3.js';
5
5
  import '@solana/spl-token';
6
6
  import 'bn.js';
7
7
 
8
- const version = "0.0.29";
8
+ const version = "0.0.30";
9
9
 
10
10
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jup-ag/lend",
3
- "version": "0.0.29",
3
+ "version": "0.0.30",
4
4
  "license": "MIT",
5
5
  "sideEffects": false,
6
6
  "type": "module",