@percolatorct/sdk 1.0.0-beta.2 → 1.0.0-beta.4

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.
@@ -4,11 +4,6 @@ import { PublicKey } from "@solana/web3.js";
4
4
  * Seeds: ["vault", slab_key]
5
5
  */
6
6
  export declare function deriveVaultAuthority(programId: PublicKey, slab: PublicKey): [PublicKey, number];
7
- /**
8
- * Derive insurance LP mint PDA.
9
- * Seeds: ["ins_lp", slab_key]
10
- */
11
- export declare function deriveInsuranceLpMint(programId: PublicKey, slab: PublicKey): [PublicKey, number];
12
7
  /**
13
8
  * Derive LP PDA for TradeCpi.
14
9
  * Seeds: ["lp", slab_key, lp_idx as u16 LE]
@@ -7,10 +7,10 @@
7
7
  * Deployed mainnet: (pending deployment — DevOps must set STAKE_PROGRAM_ID env var or deploy and update STAKE_PROGRAM_IDS.mainnet)
8
8
  */
9
9
  import { PublicKey } from '@solana/web3.js';
10
- /** Known stake program addresses per network. Mainnet is empty until deployed. */
10
+ /** Known stake program addresses per network. */
11
11
  export declare const STAKE_PROGRAM_IDS: {
12
12
  readonly devnet: "6aJb1F9CDCVWCNYFwj8aQsVb696YnW6J1FznteHq4Q6k";
13
- readonly mainnet: "";
13
+ readonly mainnet: "DC5fovFQD5SZYsetwvEqd4Wi4PFY1Yfnc669VMe6oa7F";
14
14
  };
15
15
  /**
16
16
  * Resolve the stake program ID for the given network.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@percolatorct/sdk",
3
- "version": "1.0.0-beta.2",
3
+ "version": "1.0.0-beta.4",
4
4
  "license": "Apache-2.0",
5
5
  "type": "module",
6
6
  "engines": {