@perena/vault-sdk 1.0.43 → 1.0.44

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +4 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -12886,6 +12886,8 @@ declare function formatSettlementSimulation(simulation: SettlementSimulation): s
12886
12886
 
12887
12887
  interface LiveConsensusOracleDepsOptions {
12888
12888
  log?: (msg: string) => void;
12889
+ /** @deprecated Ignored. Manager-wallet balance sourcing has been removed. */
12890
+ rpcOnly?: boolean;
12889
12891
  includeExternalPositions?: boolean;
12890
12892
  }
12891
12893
  declare function createLiveConsensusOracleDeps(connection: Connection, opts?: LiveConsensusOracleDepsOptions): ConsensusOracleDeps;
@@ -12895,6 +12897,8 @@ interface RunLiveConsensusOracleOptions extends RunOptions {
12895
12897
  rpcUrl?: string;
12896
12898
  /** Override the vault program id. Defaults to the environment's configured program. */
12897
12899
  programId?: Address;
12900
+ /** @deprecated Ignored. Manager-wallet balance sourcing has been removed. */
12901
+ rpcOnly?: boolean;
12898
12902
  /** Include live Kamino/Marginfi positions in external amount updates. Defaults to true. */
12899
12903
  includeExternalPositions?: boolean;
12900
12904
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@perena/vault-sdk",
3
- "version": "1.0.43",
3
+ "version": "1.0.44",
4
4
  "description": "Vault program helpers for Bankineco integrations.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",