@jup-ag/lend 0.0.100 → 0.0.102
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/borrow/index.d.mts +427 -36
- package/dist/borrow/index.d.ts +427 -36
- package/dist/borrow/index.mjs +110 -10
- package/dist/earn/index.d.mts +1011 -1323
- package/dist/earn/index.d.ts +1011 -1323
- package/dist/earn/index.mjs +1 -1
- package/dist/flashloan/index.mjs +1 -1
- package/dist/index.mjs +5 -5
- package/dist/merkle-distributor/index.mjs +1 -1
- package/dist/shared/{lend.qfqiaCtm.mjs → lend.BWTZqUUK.mjs} +496 -35
- package/dist/shared/{lend.CIepsiAe.mjs → lend.Bpqe1Iia.mjs} +319 -15
- package/dist/shared/{lend.BNgjawDo.mjs → lend.C7OmhOS3.mjs} +54 -0
- package/dist/shared/{lend.hlqlrp9r.mjs → lend.Cr2l14_0.mjs} +82 -2
- package/package.json +1 -1
package/dist/earn/index.mjs
CHANGED
|
@@ -2,7 +2,7 @@ import { SYSVAR_INSTRUCTIONS_PUBKEY, SystemProgram, PublicKey } from '@solana/we
|
|
|
2
2
|
import { ASSOCIATED_TOKEN_PROGRAM_ID, getAssociatedTokenAddressSync } from '@solana/spl-token';
|
|
3
3
|
import { l as liquidity } from '../shared/lend.CioR9-te.mjs';
|
|
4
4
|
import { Program } from '@coral-xyz/anchor';
|
|
5
|
-
import { b as lending, g as getLendingToken, c as getLending, d as getLendingRewardsRateModel, e as getClaimAccount, f as getLendingAdmin } from '../shared/lend.
|
|
5
|
+
import { b as lending, g as getLendingToken, c as getLending, d as getLendingRewardsRateModel, e as getClaimAccount, f as getLendingAdmin } from '../shared/lend.C7OmhOS3.mjs';
|
|
6
6
|
import { g as getLiquidity, a as getRateModel, b as getUserBorrowPosition, c as getUserSupplyPosition, d as getTokenReserveFromAsset, e as getReserve } from '../shared/lend.BzG5ldOV.mjs';
|
|
7
7
|
import BN from 'bn.js';
|
|
8
8
|
|
package/dist/flashloan/index.mjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { SYSVAR_INSTRUCTIONS_PUBKEY, SystemProgram, PublicKey } from '@solana/web3.js';
|
|
2
2
|
import BN from 'bn.js';
|
|
3
3
|
import { ASSOCIATED_TOKEN_PROGRAM_ID, getAssociatedTokenAddressSync } from '@solana/spl-token';
|
|
4
|
-
import { g as getLiquidity, a as getRateModel, b as getFlashloanBorrowPosition, c as getLiquidityReserve, d as getFlashloanAdmin, e as flashloan } from '../shared/lend.
|
|
4
|
+
import { g as getLiquidity, a as getRateModel, b as getFlashloanBorrowPosition, c as getLiquidityReserve, d as getFlashloanAdmin, e as flashloan } from '../shared/lend.Cr2l14_0.mjs';
|
|
5
5
|
import { l as liquidity } from '../shared/lend.CioR9-te.mjs';
|
|
6
6
|
import { Program } from '@coral-xyz/anchor';
|
|
7
7
|
|
package/dist/index.mjs
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
export { l as lendingPda, a as lendingRewardRateModelPda } from './shared/lend.
|
|
1
|
+
export { l as lendingPda, a as lendingRewardRateModelPda } from './shared/lend.C7OmhOS3.mjs';
|
|
2
2
|
export { l as liquidityPda } from './shared/lend.BzG5ldOV.mjs';
|
|
3
|
-
export { b as borrowPda } from './shared/lend.
|
|
4
|
-
export { f as flashloanPda } from './shared/lend.
|
|
5
|
-
export { m as merkleDistributorPda } from './shared/lend.
|
|
3
|
+
export { b as borrowPda } from './shared/lend.BWTZqUUK.mjs';
|
|
4
|
+
export { f as flashloanPda } from './shared/lend.Cr2l14_0.mjs';
|
|
5
|
+
export { m as merkleDistributorPda } from './shared/lend.Bpqe1Iia.mjs';
|
|
6
6
|
import '@solana/web3.js';
|
|
7
7
|
import './shared/lend.CioR9-te.mjs';
|
|
8
8
|
import '@solana/spl-token';
|
|
9
9
|
import 'bn.js';
|
|
10
10
|
|
|
11
|
-
const version = "0.0.
|
|
11
|
+
const version = "0.0.102";
|
|
12
12
|
|
|
13
13
|
export { version };
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { SystemProgram } from '@solana/web3.js';
|
|
2
|
-
import { g as getClaimStatus, a as getMerkleAdmin, b as getRewardsDistributor, c as merkleDistributor } from '../shared/lend.
|
|
2
|
+
import { g as getClaimStatus, a as getMerkleAdmin, b as getRewardsDistributor, c as merkleDistributor } from '../shared/lend.Bpqe1Iia.mjs';
|
|
3
3
|
import { Program } from '@coral-xyz/anchor';
|
|
4
4
|
import { ASSOCIATED_TOKEN_PROGRAM_ID, getAssociatedTokenAddressSync } from '@solana/spl-token';
|
|
5
5
|
import 'bn.js';
|