@exponent-labs/exponent-clmm-pda 0.9.2 → 0.9.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/build/pda.d.ts +5 -5
- package/package.json +2 -2
package/build/pda.d.ts
CHANGED
|
@@ -7,22 +7,22 @@ export declare class ExponentCLMMPDA {
|
|
|
7
7
|
market({ vault, seedId }: {
|
|
8
8
|
vault: web3.PublicKey;
|
|
9
9
|
seedId: number;
|
|
10
|
-
}):
|
|
10
|
+
}): any;
|
|
11
11
|
/** Escrow account for holding PT liquidity for a market */
|
|
12
12
|
marketEscrowPt({ market }: {
|
|
13
13
|
market: web3.PublicKey;
|
|
14
|
-
}):
|
|
14
|
+
}): any;
|
|
15
15
|
/** Market-owned escrow account for SY tokens. Used as an interchange between the SY program and the end-user */
|
|
16
16
|
marketEscrowSy({ market }: {
|
|
17
17
|
market: web3.PublicKey;
|
|
18
|
-
}):
|
|
18
|
+
}): any;
|
|
19
19
|
/** Market-owned escrow account for YT tokens. Used as an interchange between the YT core program and the end-user */
|
|
20
20
|
marketEscrowYt({ market }: {
|
|
21
21
|
market: web3.PublicKey;
|
|
22
|
-
}):
|
|
22
|
+
}): any;
|
|
23
23
|
/** Personal LP position */
|
|
24
24
|
marketLpPosition({ market, owner }: {
|
|
25
25
|
market: web3.PublicKey;
|
|
26
26
|
owner: web3.PublicKey;
|
|
27
|
-
}):
|
|
27
|
+
}): any;
|
|
28
28
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exponent-labs/exponent-clmm-pda",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.3",
|
|
4
4
|
"main": "build/index.js",
|
|
5
5
|
"types": "build/index.d.ts",
|
|
6
6
|
"license": "AGPL-3.0",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
},
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"@coral-xyz/anchor": "0.30.0",
|
|
12
|
-
"@exponent-labs/exponent-clmm-idl": "0.9.
|
|
12
|
+
"@exponent-labs/exponent-clmm-idl": "0.9.3",
|
|
13
13
|
"@solana/spl-token": "0.4.6"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|