@pooflabs/core 0.0.40 → 0.0.42

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/types.d.ts CHANGED
@@ -39,6 +39,8 @@ export interface SolTransaction {
39
39
  appId: string;
40
40
  txArgs: any[];
41
41
  lutKey: PublicKey | null;
42
+ /** Complete set of LUT addresses to use (includes lutKey when present). When provided, takes precedence over lutKey. */
43
+ additionalLutAddresses?: string[];
42
44
  network: string;
43
45
  preInstructions: TransactionInstruction[];
44
46
  /** Base64-encoded VersionedTransaction prebuilt server-side for sponsorship and/or required co-signers. */
@@ -34,7 +34,7 @@ export declare function buildSetDocumentsTransaction(connection: Connection, idl
34
34
  pubkey: PublicKey;
35
35
  isWritable: boolean;
36
36
  isSigner: boolean;
37
- }[], lutKey: PublicKey | null, preInstructions: TransactionInstruction[], simulate: boolean): Promise<{
37
+ }[], lutKey: PublicKey | null, preInstructions: TransactionInstruction[], simulate: boolean, additionalLutAddresses?: string[]): Promise<{
38
38
  tx: VersionedTransaction | Transaction;
39
39
  blockhash: string;
40
40
  lastValidBlockHeight: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pooflabs/core",
3
- "version": "0.0.40",
3
+ "version": "0.0.42",
4
4
  "description": "Core functionality for Poof SDK",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",