@cascade-fyi/sati-sdk 0.11.0 → 0.12.0

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/CHANGELOG.md CHANGED
@@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.12.0] - 2026-02-21
9
+
10
+ ### Added
11
+
12
+ - **`TransactionConfig` interface** - new optional `transactionConfig` field on `SATIClientOptions` to configure `priorityFeeMicroLamports`, `computeUnitLimit`, and `maxRetries`
13
+ - **Priority fee support** - all transactions now include a compute unit price instruction; defaults to 50,000 microlamports on mainnet, 0 on devnet/localnet
14
+ - **Automatic retry on blockhash expiry** - `buildAndSendTransaction` retries with a fresh blockhash up to `maxRetries` times (default: 2) when a transaction fails due to blockhash expiration
15
+
16
+ ### Changed
17
+
18
+ - **Blockhash fetched at `confirmed` commitment** - reduces stale blockhash errors on congested networks
19
+ - **Consolidated transaction sending** - removed internal `sendSingleTransaction`; all paths go through `buildAndSendTransaction` with consistent compute budget and retry logic
20
+ - **Compute budget uses `updateOrAppend*` helpers** - prevents duplicate compute budget instructions when building complex transactions
21
+
8
22
  ## [0.11.0] - 2026-02-20
9
23
 
10
24
  ### Changed
@@ -214,6 +228,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
214
228
  - Compressed attestation storage via Light Protocol
215
229
  - Basic querying via Photon RPC
216
230
 
231
+ [0.12.0]: https://github.com/cascade-protocol/sati/compare/@cascade-fyi/sati-sdk@0.11.0...@cascade-fyi/sati-sdk@0.12.0
217
232
  [0.11.0]: https://github.com/cascade-protocol/sati/compare/@cascade-fyi/sati-sdk@0.10.1...@cascade-fyi/sati-sdk@0.11.0
218
233
  [0.10.1]: https://github.com/cascade-protocol/sati/compare/@cascade-fyi/sati-sdk@0.10.0...@cascade-fyi/sati-sdk@0.10.1
219
234
  [0.10.0]: https://github.com/cascade-protocol/sati/compare/@cascade-fyi/sati-sdk@0.9.0...@cascade-fyi/sati-sdk@0.10.0
package/dist/index.cjs CHANGED
@@ -5484,6 +5484,12 @@ function unwrapOption(option) {
5484
5484
  return null;
5485
5485
  }
5486
5486
  /**
5487
+ * Convert a numeric micro-lamports value to the branded kit type.
5488
+ */
5489
+ function toMicroLamports(value) {
5490
+ return BigInt(value);
5491
+ }
5492
+ /**
5487
5493
  * Sati Client
5488
5494
  *
5489
5495
  * High-level interface for interacting with SATI protocol.
@@ -5526,6 +5532,7 @@ var Sati = class {
5526
5532
  _deployedConfig;
5527
5533
  _feedbackCache = new FeedbackCache();
5528
5534
  _onWarning;
5535
+ txConfig;
5529
5536
  /** Network configuration */
5530
5537
  network;
5531
5538
  constructor(options) {
@@ -5541,6 +5548,11 @@ var Sati = class {
5541
5548
  this.lightClient = createSATILightClient(options.photonRpcUrl ?? PHOTON_URLS[options.network]);
5542
5549
  this._deployedConfig = loadDeployedConfig(options.network);
5543
5550
  this._onWarning = options.onWarning;
5551
+ this.txConfig = {
5552
+ priorityFeeMicroLamports: options.transactionConfig?.priorityFeeMicroLamports ?? (options.network === "mainnet" ? 5e4 : 0),
5553
+ computeUnitLimit: options.transactionConfig?.computeUnitLimit ?? 4e5,
5554
+ maxRetries: options.transactionConfig?.maxRetries ?? 2
5555
+ };
5544
5556
  }
5545
5557
  /** @internal */
5546
5558
  getRpc() {
@@ -5589,15 +5601,12 @@ var Sati = class {
5589
5601
  additionalMetadata: additionalMetadata ?? null,
5590
5602
  nonTransferable
5591
5603
  });
5592
- const { value: latestBlockhash } = await this.rpc.getLatestBlockhash().send();
5593
- const signedTx = await (0, __solana_kit.signTransactionMessageWithSigners)((0, __solana_kit.pipe)((0, __solana_kit.createTransactionMessage)({ version: 0 }), (msg) => (0, __solana_kit.setTransactionMessageFeePayer)(payer.address, msg), (msg) => (0, __solana_kit.setTransactionMessageLifetimeUsingBlockhash)(latestBlockhash, msg), (msg) => (0, __solana_kit.appendTransactionMessageInstruction)(registerIx, msg)));
5594
- await this.sendAndConfirm(signedTx, { commitment: "confirmed" });
5604
+ const signature = await this.buildAndSendTransaction([registerIx], payer);
5595
5605
  const finalMemberNumber = (await fetchRegistryConfig(this.rpc, registryConfigAddress)).data.totalAgents;
5596
- const signature = (0, __solana_kit.getSignatureFromTransaction)(signedTx);
5597
5606
  return {
5598
5607
  mint: agentMint.address,
5599
5608
  memberNumber: finalMemberNumber,
5600
- signature: signature.toString()
5609
+ signature
5601
5610
  };
5602
5611
  }
5603
5612
  /**
@@ -5726,10 +5735,7 @@ var Sati = class {
5726
5735
  authority: owner,
5727
5736
  amount: 1n
5728
5737
  });
5729
- const { value: latestBlockhash } = await this.rpc.getLatestBlockhash().send();
5730
- const signedTx = await (0, __solana_kit.signTransactionMessageWithSigners)((0, __solana_kit.pipe)((0, __solana_kit.createTransactionMessage)({ version: 0 }), (msg) => (0, __solana_kit.setTransactionMessageFeePayer)(payer.address, msg), (msg) => (0, __solana_kit.setTransactionMessageLifetimeUsingBlockhash)(latestBlockhash, msg), (msg) => (0, __solana_kit.appendTransactionMessageInstructions)([createAtaIx, transferIx], msg), (msg) => (0, __solana_kit.addSignersToTransactionMessage)([payer, owner], msg)));
5731
- await this.sendAndConfirm(signedTx, { commitment: "confirmed" });
5732
- return { signature: (0, __solana_kit.getSignatureFromTransaction)(signedTx).toString() };
5738
+ return { signature: await this.buildAndSendTransaction([createAtaIx, transferIx], payer, void 0, 2e5, [payer, owner]) };
5733
5739
  }
5734
5740
  /**
5735
5741
  * Transfer agent with metadata update authority
@@ -5749,10 +5755,7 @@ var Sati = class {
5749
5755
  updateAuthority: owner,
5750
5756
  newUpdateAuthority: newOwner
5751
5757
  });
5752
- const { value: latestBlockhash } = await this.rpc.getLatestBlockhash().send();
5753
- const signedTx = await (0, __solana_kit.signTransactionMessageWithSigners)((0, __solana_kit.pipe)((0, __solana_kit.createTransactionMessage)({ version: 0 }), (msg) => (0, __solana_kit.setTransactionMessageFeePayer)(payer.address, msg), (msg) => (0, __solana_kit.setTransactionMessageLifetimeUsingBlockhash)(latestBlockhash, msg), (msg) => (0, __solana_kit.appendTransactionMessageInstructions)([transferIx, updateAuthorityIx], msg), (msg) => (0, __solana_kit.addSignersToTransactionMessage)([payer, owner], msg)));
5754
- await this.sendAndConfirm(signedTx, { commitment: "confirmed" });
5755
- return { signature: (0, __solana_kit.getSignatureFromTransaction)(signedTx).toString() };
5758
+ return { signature: await this.buildAndSendTransaction([transferIx, updateAuthorityIx], payer, void 0, 2e5, [payer, owner]) };
5756
5759
  }
5757
5760
  /**
5758
5761
  * Get current owner of an agent.
@@ -5934,10 +5937,7 @@ var Sati = class {
5934
5937
  value
5935
5938
  }));
5936
5939
  if (ixList.length === 0) throw new Error("No updates specified");
5937
- const { value: latestBlockhash } = await this.rpc.getLatestBlockhash().send();
5938
- const signedTx = await (0, __solana_kit.signTransactionMessageWithSigners)((0, __solana_kit.pipe)((0, __solana_kit.createTransactionMessage)({ version: 0 }), (msg) => (0, __solana_kit.setTransactionMessageFeePayer)(payer.address, msg), (msg) => (0, __solana_kit.setTransactionMessageLifetimeUsingBlockhash)(latestBlockhash, msg), (msg) => (0, __solana_kit.appendTransactionMessageInstructions)(ixList, msg), (msg) => (0, __solana_kit.addSignersToTransactionMessage)([payer, owner], msg)));
5939
- await this.sendAndConfirm(signedTx, { commitment: "confirmed" });
5940
- return { signature: (0, __solana_kit.getSignatureFromTransaction)(signedTx).toString() };
5940
+ return { signature: await this.buildAndSendTransaction(ixList, payer, void 0, void 0, [payer, owner]) };
5941
5941
  }
5942
5942
  /**
5943
5943
  * Link an EVM address to a SATI agent via secp256k1 signature verification.
@@ -5984,7 +5984,7 @@ var Sati = class {
5984
5984
  signature,
5985
5985
  recoveryId
5986
5986
  });
5987
- return { signature: await this.sendSingleTransaction([ix], payer) };
5987
+ return { signature: await this.buildAndSendTransaction([ix], payer) };
5988
5988
  }
5989
5989
  /**
5990
5990
  * Build the EVM link hash that the EVM wallet should sign.
@@ -6010,10 +6010,7 @@ var Sati = class {
6010
6010
  closeable,
6011
6011
  name
6012
6012
  });
6013
- const { value: latestBlockhash } = await this.rpc.getLatestBlockhash().send();
6014
- const signedTx = await (0, __solana_kit.signTransactionMessageWithSigners)((0, __solana_kit.pipe)((0, __solana_kit.createTransactionMessage)({ version: 0 }), (msg) => (0, __solana_kit.setTransactionMessageFeePayer)(payer.address, msg), (msg) => (0, __solana_kit.setTransactionMessageLifetimeUsingBlockhash)(latestBlockhash, msg), (msg) => (0, __solana_kit.appendTransactionMessageInstruction)(registerIx, msg)));
6015
- await this.sendAndConfirm(signedTx, { commitment: "confirmed" });
6016
- return { signature: (0, __solana_kit.getSignatureFromTransaction)(signedTx).toString() };
6013
+ return { signature: await this.buildAndSendTransaction([registerIx], payer) };
6017
6014
  }
6018
6015
  /**
6019
6016
  * Get schema configuration
@@ -6243,13 +6240,12 @@ var Sati = class {
6243
6240
  signature: agentSignature.signature
6244
6241
  });
6245
6242
  const ed25519Ix = createBatchEd25519Instruction(ed25519Entries);
6246
- const { value: latestBlockhash } = await this.rpc.getLatestBlockhash().send();
6247
- const computeBudgetIx = (0, __solana_program_compute_budget.getSetComputeUnitLimitInstruction)({ units: 4e5 });
6248
- const baseTxMessage = (0, __solana_kit.pipe)((0, __solana_kit.createTransactionMessage)({ version: 0 }), (msg) => (0, __solana_kit.setTransactionMessageFeePayer)(payer, msg), (msg) => (0, __solana_kit.setTransactionMessageLifetimeUsingBlockhash)(latestBlockhash, msg), (msg) => (0, __solana_kit.appendTransactionMessageInstruction)(computeBudgetIx, msg), (msg) => (0, __solana_kit.appendTransactionMessageInstructions)([ed25519Ix, createIx], msg));
6243
+ const { value: latestBlockhash } = await this.rpc.getLatestBlockhash({ commitment: "confirmed" }).send();
6244
+ const txWithComputeBudget = (0, __solana_kit.pipe)((0, __solana_kit.pipe)((0, __solana_kit.createTransactionMessage)({ version: 0 }), (msg) => (0, __solana_kit.setTransactionMessageFeePayer)(payer, msg), (msg) => (0, __solana_kit.setTransactionMessageLifetimeUsingBlockhash)(latestBlockhash, msg), (msg) => (0, __solana_kit.appendTransactionMessageInstructions)([ed25519Ix, createIx], msg)), (msg) => (0, __solana_program_compute_budget.updateOrAppendSetComputeUnitLimitInstruction)(this.txConfig.computeUnitLimit, msg), (msg) => (0, __solana_program_compute_budget.updateOrAppendSetComputeUnitPriceInstruction)(toMicroLamports(this.txConfig.priorityFeeMicroLamports), msg));
6249
6245
  const compiledTx = (0, __solana_kit.compileTransaction)(await (async () => {
6250
- if (!lookupTableAddress) return baseTxMessage;
6246
+ if (!lookupTableAddress) return txWithComputeBudget;
6251
6247
  const lookupTableAccount = await (0, __solana_program_address_lookup_table.fetchAddressLookupTable)(this.rpc, lookupTableAddress);
6252
- return (0, __solana_kit.compressTransactionMessageUsingAddressLookupTables)(baseTxMessage, { [lookupTableAddress]: lookupTableAccount.data.addresses });
6248
+ return (0, __solana_kit.compressTransactionMessageUsingAddressLookupTables)(txWithComputeBudget, { [lookupTableAddress]: lookupTableAccount.data.addresses });
6253
6249
  })());
6254
6250
  const messageBytes = compiledTx.messageBytes;
6255
6251
  const binaryString = Array.from(messageBytes).map((byte) => String.fromCharCode(byte)).join("");
@@ -6691,27 +6687,27 @@ var Sati = class {
6691
6687
  /**
6692
6688
  * Build, optionally compress, sign, and send a transaction.
6693
6689
  */
6694
- async buildAndSendTransaction(instructions, payer, lookupTableAddress, computeUnits = 4e5) {
6695
- const { value: latestBlockhash } = await this.rpc.getLatestBlockhash().send();
6696
- const computeBudgetIx = (0, __solana_program_compute_budget.getSetComputeUnitLimitInstruction)({ units: computeUnits });
6697
- const baseTx = (0, __solana_kit.pipe)((0, __solana_kit.createTransactionMessage)({ version: 0 }), (msg) => (0, __solana_kit.setTransactionMessageFeePayer)(payer.address, msg), (msg) => (0, __solana_kit.setTransactionMessageLifetimeUsingBlockhash)(latestBlockhash, msg), (msg) => (0, __solana_kit.appendTransactionMessageInstruction)(computeBudgetIx, msg), (msg) => (0, __solana_kit.appendTransactionMessageInstructions)(instructions, msg));
6698
- const signedTx = await (0, __solana_kit.signTransactionMessageWithSigners)(await (async () => {
6699
- if (!lookupTableAddress) return baseTx;
6690
+ async buildAndSendTransaction(instructions, payer, lookupTableAddress, computeUnits, additionalSigners) {
6691
+ const cu = computeUnits ?? this.txConfig.computeUnitLimit;
6692
+ let addressesByLookupTable;
6693
+ if (lookupTableAddress) {
6700
6694
  const lookupTableAccount = await (0, __solana_program_address_lookup_table.fetchAddressLookupTable)(this.rpc, lookupTableAddress);
6701
- return (0, __solana_kit.compressTransactionMessageUsingAddressLookupTables)(baseTx, { [lookupTableAddress]: lookupTableAccount.data.addresses });
6702
- })());
6703
- await this.sendAndConfirm(signedTx, { commitment: "confirmed" });
6704
- return (0, __solana_kit.getSignatureFromTransaction)(signedTx).toString();
6705
- }
6706
- /**
6707
- * Send a single transaction without address lookup table.
6708
- */
6709
- async sendSingleTransaction(instructions, payer) {
6710
- const { value: latestBlockhash } = await this.rpc.getLatestBlockhash().send();
6711
- const signedTx = await (0, __solana_kit.signTransactionMessageWithSigners)((0, __solana_kit.pipe)((0, __solana_kit.createTransactionMessage)({ version: 0 }), (msg) => (0, __solana_kit.setTransactionMessageFeePayer)(payer.address, msg), (msg) => (0, __solana_kit.setTransactionMessageLifetimeUsingBlockhash)(latestBlockhash, msg), (msg) => (0, __solana_kit.appendTransactionMessageInstructions)(instructions, msg)));
6712
- const signature = (0, __solana_kit.getSignatureFromTransaction)(signedTx);
6713
- await this.sendAndConfirm(signedTx, { commitment: "confirmed" });
6714
- return signature;
6695
+ addressesByLookupTable = { [lookupTableAddress]: lookupTableAccount.data.addresses };
6696
+ }
6697
+ for (let attempt = 0; attempt <= this.txConfig.maxRetries; attempt++) {
6698
+ const { value: latestBlockhash } = await this.rpc.getLatestBlockhash({ commitment: "confirmed" }).send();
6699
+ const txWithComputeBudget = (0, __solana_kit.pipe)((0, __solana_kit.pipe)((0, __solana_kit.createTransactionMessage)({ version: 0 }), (msg) => (0, __solana_kit.setTransactionMessageFeePayer)(payer.address, msg), (msg) => (0, __solana_kit.setTransactionMessageLifetimeUsingBlockhash)(latestBlockhash, msg), (msg) => (0, __solana_kit.appendTransactionMessageInstructions)(instructions, msg)), (msg) => (0, __solana_program_compute_budget.updateOrAppendSetComputeUnitLimitInstruction)(cu, msg), (msg) => (0, __solana_program_compute_budget.updateOrAppendSetComputeUnitPriceInstruction)(toMicroLamports(this.txConfig.priorityFeeMicroLamports), msg));
6700
+ const txWithSigners = additionalSigners ? (0, __solana_kit.addSignersToTransactionMessage)(additionalSigners, txWithComputeBudget) : txWithComputeBudget;
6701
+ const signedTx = await (0, __solana_kit.signTransactionMessageWithSigners)(addressesByLookupTable ? (0, __solana_kit.compressTransactionMessageUsingAddressLookupTables)(txWithSigners, addressesByLookupTable) : txWithSigners);
6702
+ try {
6703
+ await this.sendAndConfirm(signedTx, { commitment: "confirmed" });
6704
+ return (0, __solana_kit.getSignatureFromTransaction)(signedTx).toString();
6705
+ } catch (error) {
6706
+ if (error instanceof Error && (error.message.includes("block height exceeded") || error.message.includes("progressed past the last block") || error.message.includes("Blockhash not found")) && attempt < this.txConfig.maxRetries) continue;
6707
+ throw error;
6708
+ }
6709
+ }
6710
+ throw new Error("Transaction failed after retries");
6715
6711
  }
6716
6712
  /** Deployed SAS configuration for this network (null for localnet unless deployed). */
6717
6713
  get deployedConfig() {
package/dist/index.d.cts CHANGED
@@ -2989,6 +2989,17 @@ interface SatiWarning {
2989
2989
  /** Original error, if any */
2990
2990
  cause?: unknown;
2991
2991
  }
2992
+ /**
2993
+ * SATI client configuration options
2994
+ */
2995
+ interface TransactionConfig {
2996
+ /** Priority fee in microlamports per compute unit (default: 50_000 on mainnet, 0 on devnet/localnet) */
2997
+ priorityFeeMicroLamports?: number;
2998
+ /** Compute unit limit (default: 400_000) */
2999
+ computeUnitLimit?: number;
3000
+ /** Max retry attempts on blockhash expiration (default: 2) */
3001
+ maxRetries?: number;
3002
+ }
2992
3003
  /**
2993
3004
  * SATI client configuration options
2994
3005
  */
@@ -3003,6 +3014,8 @@ interface SATIClientOptions {
3003
3014
  photonRpcUrl?: string;
3004
3015
  /** Optional callback for non-fatal warnings (parse errors, RPC failures) */
3005
3016
  onWarning?: (warning: SatiWarning) => void;
3017
+ /** Transaction sending configuration */
3018
+ transactionConfig?: TransactionConfig;
3006
3019
  }
3007
3020
  /**
3008
3021
  * SAS configuration with credential and schema addresses
@@ -4088,6 +4101,7 @@ declare class Sati {
4088
4101
  private readonly _deployedConfig;
4089
4102
  private readonly _feedbackCache;
4090
4103
  private readonly _onWarning?;
4104
+ private readonly txConfig;
4091
4105
  /** Network configuration */
4092
4106
  readonly network: "mainnet" | "devnet" | "localnet";
4093
4107
  constructor(options: SATIClientOptions);
@@ -4443,10 +4457,6 @@ declare class Sati {
4443
4457
  * Build, optionally compress, sign, and send a transaction.
4444
4458
  */
4445
4459
  private buildAndSendTransaction;
4446
- /**
4447
- * Send a single transaction without address lookup table.
4448
- */
4449
- private sendSingleTransaction;
4450
4460
  /** Deployed SAS configuration for this network (null for localnet unless deployed). */
4451
4461
  get deployedConfig(): SATISASConfig | null;
4452
4462
  /** FeedbackPublic schema address (CounterpartySigned mode). */
@@ -4693,5 +4703,5 @@ declare function networkErrorMessage(): string;
4693
4703
  declare function transactionExpiredMessage(): string;
4694
4704
  declare function transactionFailedMessage(detail?: string): string;
4695
4705
  //#endregion
4696
- export { AGENT_INDEX_DISCRIMINATOR, ASSOCIATED_TOKEN_PROGRAM_ADDRESS, ATTESTATION_SEED, type AccountMeta, type Address, AgentIdentity, AgentIndex, AgentIndexArgs, AgentMint, AgentNotFoundError, AgentRegistered, AgentRegisteredArgs, type AgentSearchOptions, type AgentSearchResult, AttestationClosed, AttestationClosedArgs, AttestationCreated, AttestationCreatedArgs, type AttestationFilter, type AttestationResult, AttestationWithProof, BASE_OFFSETS, type BaseLayout, type BuildFeedbackParams, type BuiltTransaction, CLOSE_COMPRESSED_ATTESTATION_DISCRIMINATOR, CLOSE_REGULAR_ATTESTATION_DISCRIMINATOR, COMPRESSED_OFFSETS, CREATE_COMPRESSED_ATTESTATION_DISCRIMINATOR, CREATE_REGULAR_ATTESTATION_DISCRIMINATOR, CREDENTIAL_SEED, CloseAttestationResult, CloseCompressedAttestationAsyncInput, CloseCompressedAttestationInput, CloseCompressedAttestationInstruction, CloseCompressedAttestationInstructionData, CloseCompressedAttestationInstructionDataArgs, CloseCompressedAttestationParams, CloseRegularAttestationAsyncInput, CloseRegularAttestationInput, CloseRegularAttestationInstruction, CloseRegularAttestationInstructionData, CloseRegularAttestationInstructionDataArgs, CloseRegularAttestationParams, CompressedAccountMeta, CompressedAccountMetaArgs, type CompressedAttestation, CompressedProof, CompressedProofArgs, type ContentSizeValidationOptions, type ContentSizeValidationResult, ContentType, CounterpartyMessageParams, CreateCompressedAttestationAsyncInput, CreateCompressedAttestationInput, CreateCompressedAttestationInstruction, CreateCompressedAttestationInstructionData, CreateCompressedAttestationInstructionDataArgs, type CreateFeedbackParams, CreateRegularAttestationAsyncInput, CreateRegularAttestationInput, CreateRegularAttestationInstruction, CreateRegularAttestationInstructionData, CreateRegularAttestationInstructionDataArgs, type CreateReputationScoreParams, type CreateValidationParams, type CreationProofResult, DOMAINS, DataType, DeployedSASConfig, DuplicateAttestationError, ED25519_PROGRAM_ADDRESS, ENCRYPTION_VERSION, ERC8004_TYPE, Ed25519Instruction, Ed25519SignatureParams, type EncryptedPayload, type EncryptionKeypair, type Endpoint, EvmAddressLink, EvmAddressLinked, EvmAddressLinkedArgs, FEEDBACK_OFFSETS, type FailedReason, type FailedResult, FeedbackCache, type FeedbackContent, type FeedbackData, type FeedbackSearchOptions, FeedbackSigningMessage, FeedbackSigningParams, type GiveFeedbackParams, type GiveFeedbackResult, INITIALIZE_DISCRIMINATOR, InitializeAsyncInput, InitializeInput, InitializeInstruction, InitializeInstructionData, InitializeInstructionDataArgs, LIGHT_ERROR_CODES, LINK_EVM_ADDRESS_DISCRIMINATOR, LinkEvmAddressAsyncInput, LinkEvmAddressInput, LinkEvmAddressInstruction, LinkEvmAddressInstructionData, LinkEvmAddressInstructionDataArgs, LinkEvmAddressParams, LinkEvmAddressResult, MAX_AGENT_OWNER_SIGNED_CONTENT_SIZE, MAX_CONTENT_SIZE, MAX_COUNTERPARTY_SIGNED_CONTENT_SIZE, MAX_DUAL_SIGNATURE_CONTENT_SIZE, MAX_PLAINTEXT_SIZE, MIN_BASE_LAYOUT_SIZE, MIN_ENCRYPTED_SIZE, MerkleProofWithContext, MetadataEntry, MetadataEntryArgs, type MetadataUploader, type MutationProofResult, NONCE_SIZE, OFFSETS, Outcome, PRIVKEY_SIZE, PUBKEY_SIZE, type PackedAddressTreeInfo, PackedAddressTreeInfoArgs, type PackedStateTreeInfo, PackedStateTreeInfoArgs, type PaginatedAttestations, type ParsedAttestation, ParsedCloseCompressedAttestationInstruction, ParsedCloseRegularAttestationInstruction, ParsedCreateCompressedAttestationInstruction, ParsedCreateRegularAttestationInstruction, type ParsedFeedback, type ParsedFeedbackAttestation, ParsedInitializeInstruction, ParsedLinkEvmAddressInstruction, ParsedRegisterAgentInstruction, ParsedRegisterSchemaConfigInstruction, ParsedSatiInstruction, ParsedUpdateRegistryAuthorityInstruction, type ParsedValidation, type ParsedValidationAttestation, type PreparedFeedbackData, type Properties, PropertiesSchema, type PropertyFile, PropertyFileSchema, type PublicKeyLike, REGISTER_AGENT_DISCRIMINATOR, REGISTER_SCHEMA_CONFIG_DISCRIMINATOR, REGISTRY_CONFIG_DISCRIMINATOR, REPUTATION_SCHEMA_NAME, REPUTATION_SCHEMA_VERSION, REPUTATION_SCORE_OFFSETS, RegisterAgentAsyncInput, RegisterAgentInput, RegisterAgentInstruction, RegisterAgentInstructionData, RegisterAgentInstructionDataArgs, RegisterAgentResult, RegisterSchemaConfigAsyncInput, RegisterSchemaConfigInput, RegisterSchemaConfigInstruction, RegisterSchemaConfigInstructionData, RegisterSchemaConfigInstructionDataArgs, type RegistrationEntry, RegistrationEntrySchema, type RegistrationFile, type RegistrationFileParams, RegistrationFileSchema, RegistryAuthorityUpdated, RegistryAuthorityUpdatedArgs, RegistryConfig, RegistryConfigArgs, RegistryInitialized, RegistryInitializedArgs, type ReputationScoreContent, type ReputationScoreData, type ReputationSummary, SASDeploymentResult, SAS_DATA_LEN_OFFSET, SAS_HEADER_SIZE, SAS_PROGRAM_ADDRESS, SATIClientOptions, type SATILightClient, SATILightClientImpl, SATISASConfig, SATI_ATTESTATION_SEED, SATI_CHAIN_ID, SATI_CHAIN_IDS, SATI_CHAIN_ID_DEVNET, SATI_ERROR__AGENT_ATA_EMPTY, SATI_ERROR__AGENT_ATA_MINT_MISMATCH, SATI_ERROR__AGENT_ATA_REQUIRED, SATI_ERROR__AGENT_MINT_ACCOUNT_MISMATCH, SATI_ERROR__AGENT_MINT_MISMATCH, SATI_ERROR__AGENT_SIGNATURE_NOT_FOUND, SATI_ERROR__ATTESTATION_DATA_TOO_LARGE, SATI_ERROR__ATTESTATION_DATA_TOO_SMALL, SATI_ERROR__ATTESTATION_NOT_CLOSEABLE, SATI_ERROR__CONTENT_TOO_LARGE, SATI_ERROR__COUNTERPARTY_SIGNATURE_NOT_FOUND, SATI_ERROR__DELEGATE_MISMATCH, SATI_ERROR__DELEGATION_ATTESTATION_REQUIRED, SATI_ERROR__DELEGATION_EXPIRED, SATI_ERROR__DELEGATION_OWNER_MISMATCH, SATI_ERROR__DUPLICATE_SIGNERS, SATI_ERROR__ED25519_INSTRUCTION_NOT_FOUND, SATI_ERROR__EVM_ADDRESS_MISMATCH, SATI_ERROR__IMMUTABLE_AUTHORITY, SATI_ERROR__INVALID_ADDRESS_TREE_INFO, SATI_ERROR__INVALID_AUTHORITY, SATI_ERROR__INVALID_CONTENT_TYPE, SATI_ERROR__INVALID_DELEGATION_P_D_A, SATI_ERROR__INVALID_ED25519_INSTRUCTION, SATI_ERROR__INVALID_EVM_ADDRESS_RECOVERY, SATI_ERROR__INVALID_GROUP_MINT, SATI_ERROR__INVALID_INSTRUCTIONS_SYSVAR, SATI_ERROR__INVALID_OUTCOME, SATI_ERROR__INVALID_OUTPUT_STATE_TREE_INDEX, SATI_ERROR__INVALID_SECP256K1_SIGNATURE, SATI_ERROR__INVALID_SIGNATURE, SATI_ERROR__INVALID_SIGNATURE_COUNT, SATI_ERROR__LIGHT_CPI_INVOCATION_FAILED, SATI_ERROR__MESSAGE_MISMATCH, SATI_ERROR__METADATA_KEY_TOO_LONG, SATI_ERROR__METADATA_VALUE_TOO_LONG, SATI_ERROR__MINT_AUTHORITY_NOT_RENOUNCED, SATI_ERROR__MISSING_SIGNATURES, SATI_ERROR__NAME_TOO_LONG, SATI_ERROR__OVERFLOW, SATI_ERROR__OWNER_ONLY, SATI_ERROR__SCHEMA_CONFIG_NOT_FOUND, SATI_ERROR__SECP256K1_RECOVERY_FAILED, SATI_ERROR__SELF_ATTESTATION_NOT_ALLOWED, SATI_ERROR__SIGNATURE_MISMATCH, SATI_ERROR__STORAGE_TYPE_MISMATCH, SATI_ERROR__STORAGE_TYPE_NOT_SUPPORTED, SATI_ERROR__SYMBOL_TOO_LONG, SATI_ERROR__TOO_MANY_METADATA_ENTRIES, SATI_ERROR__UNAUTHORIZED_CLOSE, SATI_ERROR__UNSUPPORTED_LAYOUT_VERSION, SATI_ERROR__URI_TOO_LONG, SATI_PROGRAM_ADDRESS, SATI_PROGRAM_ID, SCHEMA_CONFIG_DISCRIMINATOR, SCHEMA_SEED, SOLANA_CHAIN_REFS, Sati, SatiAccount, SatiAgentBuilder, SatiError, type SatiErrorCode, SatiInstruction, SatiWarning, SchemaConfig, SchemaConfigArgs, SchemaConfigRegistered, SchemaConfigRegisteredArgs, SchemaDeploymentStatus, SchemaNotFoundError, type ServiceDefinition, ServiceDefinitionSchema, type SignatureInput, SignatureMode, SignatureModeArgs, SignatureVerificationResult, SigningMessage, SolanaNetwork, StorageType, StorageTypeArgs, TAG_SIZE, TOKEN_2022_PROGRAM_ADDRESS, type TrustMechanism, TrustMechanismSchema, UPDATE_REGISTRY_AUTHORITY_DISCRIMINATOR, UpdateAgentMetadataParams, UpdateAgentMetadataResult, UpdateRegistryAuthorityAsyncInput, UpdateRegistryAuthorityInput, UpdateRegistryAuthorityInstruction, UpdateRegistryAuthorityInstructionData, UpdateRegistryAuthorityInstructionDataArgs, type UpdateReputationScoreParams, VALIDATION_OFFSETS, VALID_TRUST_MODELS, type ValidationContent, type ValidationData, type ValidationError, type ValidationResult, ValidationType, ValidityProof, ValidityProofArgs, type ValidityProofResult, address, addressToBytes, assertRegistrationFile, buildCounterpartyMessage, buildFeedbackContent, buildFeedbackSigningMessage, buildRegistrationFile, buildSatiRegistrationEntry, bytesToAddress, bytesToHex, computeAttestationNonce, computeDataHash, computeDataHashFromHashes, computeDataHashFromStrings, computeEvmLinkHash, computeInteractionHash, computeReputationNonce, createBatchEd25519Instruction, createEd25519Instruction, createJsonContent, createPinataUploader, createSATILightClient, createSatiUploader, decodeAgentIndex, decodeRegistryConfig, decodeSchemaConfig, decryptContent, deriveEncryptionKeypair, deriveEncryptionPublicKey, deriveReputationAttestationPda, deriveReputationSchemaPda, deriveSasEventAuthorityPda, deriveSatiPda, deriveSatiProgramCredentialPda, deserializeEncryptedPayload, deserializeFeedback, deserializeReputationScore, deserializeUniversalLayout, deserializeValidation, duplicateAttestationMessage, encryptContent, fetchAgentIndex, fetchAllAgentIndex, fetchAllMaybeAgentIndex, fetchAllMaybeRegistryConfig, fetchAllMaybeSchemaConfig, fetchAllRegistryConfig, fetchAllSchemaConfig, fetchMaybeAgentIndex, fetchMaybeRegistryConfig, fetchMaybeSchemaConfig, fetchRegistrationFile, fetchRegistryConfig, fetchSchemaConfig, findAgentIndexPda, findAssociatedTokenAddress, findRegistryConfigPda, findSchemaConfigPda, formatCaip10, getAgentIndexCodec, getAgentIndexDecoder, getAgentIndexDiscriminatorBytes, getAgentIndexEncoder, getAgentIndexSize, getAgentRegisteredCodec, getAgentRegisteredDecoder, getAgentRegisteredEncoder, getAttestationClosedCodec, getAttestationClosedDecoder, getAttestationClosedEncoder, getAttestationCreatedCodec, getAttestationCreatedDecoder, getAttestationCreatedEncoder, getCloseCompressedAttestationDiscriminatorBytes, getCloseCompressedAttestationInstruction, getCloseCompressedAttestationInstructionAsync, getCloseCompressedAttestationInstructionDataCodec, getCloseCompressedAttestationInstructionDataDecoder, getCloseCompressedAttestationInstructionDataEncoder, getCloseRegularAttestationDiscriminatorBytes, getCloseRegularAttestationInstruction, getCloseRegularAttestationInstructionAsync, getCloseRegularAttestationInstructionDataCodec, getCloseRegularAttestationInstructionDataDecoder, getCloseRegularAttestationInstructionDataEncoder, getCompressedAccountMetaCodec, getCompressedAccountMetaDecoder, getCompressedAccountMetaEncoder, getCompressedProofCodec, getCompressedProofDecoder, getCompressedProofEncoder, getContentTypeLabel, getCreateCompressedAttestationDiscriminatorBytes, getCreateCompressedAttestationInstruction, getCreateCompressedAttestationInstructionAsync, getCreateCompressedAttestationInstructionDataCodec, getCreateCompressedAttestationInstructionDataDecoder, getCreateCompressedAttestationInstructionDataEncoder, getCreateRegularAttestationDiscriminatorBytes, getCreateRegularAttestationInstruction, getCreateRegularAttestationInstructionAsync, getCreateRegularAttestationInstructionDataCodec, getCreateRegularAttestationInstructionDataDecoder, getCreateRegularAttestationInstructionDataEncoder, getDeployedNetworks, getEvmAddressLinkedCodec, getEvmAddressLinkedDecoder, getEvmAddressLinkedEncoder, getImageUrl, getInitializeDiscriminatorBytes, getInitializeInstruction, getInitializeInstructionAsync, getInitializeInstructionDataCodec, getInitializeInstructionDataDecoder, getInitializeInstructionDataEncoder, getLinkEvmAddressDiscriminatorBytes, getLinkEvmAddressInstruction, getLinkEvmAddressInstructionAsync, getLinkEvmAddressInstructionDataCodec, getLinkEvmAddressInstructionDataDecoder, getLinkEvmAddressInstructionDataEncoder, getMaxContentSize, getMetadataEntryCodec, getMetadataEntryDecoder, getMetadataEntryEncoder, getOutcomeLabel, getPackedAddressTreeInfoCodec, getPackedAddressTreeInfoDecoder, getPackedAddressTreeInfoEncoder, getPackedStateTreeInfoCodec, getPackedStateTreeInfoDecoder, getPackedStateTreeInfoEncoder, getRegisterAgentDiscriminatorBytes, getRegisterAgentInstruction, getRegisterAgentInstructionAsync, getRegisterAgentInstructionDataCodec, getRegisterAgentInstructionDataDecoder, getRegisterAgentInstructionDataEncoder, getRegisterSchemaConfigDiscriminatorBytes, getRegisterSchemaConfigInstruction, getRegisterSchemaConfigInstructionAsync, getRegisterSchemaConfigInstructionDataCodec, getRegisterSchemaConfigInstructionDataDecoder, getRegisterSchemaConfigInstructionDataEncoder, getRegistryAuthorityUpdatedCodec, getRegistryAuthorityUpdatedDecoder, getRegistryAuthorityUpdatedEncoder, getRegistryConfigCodec, getRegistryConfigDecoder, getRegistryConfigDiscriminatorBytes, getRegistryConfigEncoder, getRegistryConfigSize, getRegistryInitializedCodec, getRegistryInitializedDecoder, getRegistryInitializedEncoder, getSatiAgentIds, getSatiErrorMessage, getSchemaConfigCodec, getSchemaConfigDecoder, getSchemaConfigDiscriminatorBytes, getSchemaConfigEncoder, getSchemaConfigRegisteredCodec, getSchemaConfigRegisteredDecoder, getSchemaConfigRegisteredEncoder, getSignatureModeCodec, getSignatureModeDecoder, getSignatureModeEncoder, getStorageTypeCodec, getStorageTypeDecoder, getStorageTypeEncoder, getUpdateRegistryAuthorityDiscriminatorBytes, getUpdateRegistryAuthorityInstruction, getUpdateRegistryAuthorityInstructionAsync, getUpdateRegistryAuthorityInstructionDataCodec, getUpdateRegistryAuthorityInstructionDataDecoder, getUpdateRegistryAuthorityInstructionDataEncoder, getValidityProofCodec, getValidityProofDecoder, getValidityProofEncoder, handleTransactionError, hasDeployedConfig, hasSatiRegistration, hexToBytes, identifySatiAccount, identifySatiInstruction, inferMimeType, isSatiAgentRegistry, isSatiError, isValidAgentRegistry, loadDeployedConfig, networkErrorMessage, normalizeRegistrationFile, outcomeToScore, parseCloseCompressedAttestationInstruction, parseCloseRegularAttestationInstruction, parseCreateCompressedAttestationInstruction, parseCreateRegularAttestationInstruction, parseFeedbackContent, parseInitializeInstruction, parseLinkEvmAddressInstruction, parseRegisterAgentInstruction, parseRegisterSchemaConfigInstruction, parseRegistrationFile, parseReputationScoreContent, parseUpdateRegistryAuthorityInstruction, parseValidationContent, serializeEncryptedPayload, serializeFeedback, serializeReputationScore, serializeUniversalLayout, serializeValidation, stringifyRegistrationFile, transactionExpiredMessage, transactionFailedMessage, validateBaseLayout, validateContentSize, validateRegistrationFile, validateReputationScoreContent, walletDisconnectedMessage, walletRejectedMessage, zeroDataHash };
4706
+ export { AGENT_INDEX_DISCRIMINATOR, ASSOCIATED_TOKEN_PROGRAM_ADDRESS, ATTESTATION_SEED, type AccountMeta, type Address, AgentIdentity, AgentIndex, AgentIndexArgs, AgentMint, AgentNotFoundError, AgentRegistered, AgentRegisteredArgs, type AgentSearchOptions, type AgentSearchResult, AttestationClosed, AttestationClosedArgs, AttestationCreated, AttestationCreatedArgs, type AttestationFilter, type AttestationResult, AttestationWithProof, BASE_OFFSETS, type BaseLayout, type BuildFeedbackParams, type BuiltTransaction, CLOSE_COMPRESSED_ATTESTATION_DISCRIMINATOR, CLOSE_REGULAR_ATTESTATION_DISCRIMINATOR, COMPRESSED_OFFSETS, CREATE_COMPRESSED_ATTESTATION_DISCRIMINATOR, CREATE_REGULAR_ATTESTATION_DISCRIMINATOR, CREDENTIAL_SEED, CloseAttestationResult, CloseCompressedAttestationAsyncInput, CloseCompressedAttestationInput, CloseCompressedAttestationInstruction, CloseCompressedAttestationInstructionData, CloseCompressedAttestationInstructionDataArgs, CloseCompressedAttestationParams, CloseRegularAttestationAsyncInput, CloseRegularAttestationInput, CloseRegularAttestationInstruction, CloseRegularAttestationInstructionData, CloseRegularAttestationInstructionDataArgs, CloseRegularAttestationParams, CompressedAccountMeta, CompressedAccountMetaArgs, type CompressedAttestation, CompressedProof, CompressedProofArgs, type ContentSizeValidationOptions, type ContentSizeValidationResult, ContentType, CounterpartyMessageParams, CreateCompressedAttestationAsyncInput, CreateCompressedAttestationInput, CreateCompressedAttestationInstruction, CreateCompressedAttestationInstructionData, CreateCompressedAttestationInstructionDataArgs, type CreateFeedbackParams, CreateRegularAttestationAsyncInput, CreateRegularAttestationInput, CreateRegularAttestationInstruction, CreateRegularAttestationInstructionData, CreateRegularAttestationInstructionDataArgs, type CreateReputationScoreParams, type CreateValidationParams, type CreationProofResult, DOMAINS, DataType, DeployedSASConfig, DuplicateAttestationError, ED25519_PROGRAM_ADDRESS, ENCRYPTION_VERSION, ERC8004_TYPE, Ed25519Instruction, Ed25519SignatureParams, type EncryptedPayload, type EncryptionKeypair, type Endpoint, EvmAddressLink, EvmAddressLinked, EvmAddressLinkedArgs, FEEDBACK_OFFSETS, type FailedReason, type FailedResult, FeedbackCache, type FeedbackContent, type FeedbackData, type FeedbackSearchOptions, FeedbackSigningMessage, FeedbackSigningParams, type GiveFeedbackParams, type GiveFeedbackResult, INITIALIZE_DISCRIMINATOR, InitializeAsyncInput, InitializeInput, InitializeInstruction, InitializeInstructionData, InitializeInstructionDataArgs, LIGHT_ERROR_CODES, LINK_EVM_ADDRESS_DISCRIMINATOR, LinkEvmAddressAsyncInput, LinkEvmAddressInput, LinkEvmAddressInstruction, LinkEvmAddressInstructionData, LinkEvmAddressInstructionDataArgs, LinkEvmAddressParams, LinkEvmAddressResult, MAX_AGENT_OWNER_SIGNED_CONTENT_SIZE, MAX_CONTENT_SIZE, MAX_COUNTERPARTY_SIGNED_CONTENT_SIZE, MAX_DUAL_SIGNATURE_CONTENT_SIZE, MAX_PLAINTEXT_SIZE, MIN_BASE_LAYOUT_SIZE, MIN_ENCRYPTED_SIZE, MerkleProofWithContext, MetadataEntry, MetadataEntryArgs, type MetadataUploader, type MutationProofResult, NONCE_SIZE, OFFSETS, Outcome, PRIVKEY_SIZE, PUBKEY_SIZE, type PackedAddressTreeInfo, PackedAddressTreeInfoArgs, type PackedStateTreeInfo, PackedStateTreeInfoArgs, type PaginatedAttestations, type ParsedAttestation, ParsedCloseCompressedAttestationInstruction, ParsedCloseRegularAttestationInstruction, ParsedCreateCompressedAttestationInstruction, ParsedCreateRegularAttestationInstruction, type ParsedFeedback, type ParsedFeedbackAttestation, ParsedInitializeInstruction, ParsedLinkEvmAddressInstruction, ParsedRegisterAgentInstruction, ParsedRegisterSchemaConfigInstruction, ParsedSatiInstruction, ParsedUpdateRegistryAuthorityInstruction, type ParsedValidation, type ParsedValidationAttestation, type PreparedFeedbackData, type Properties, PropertiesSchema, type PropertyFile, PropertyFileSchema, type PublicKeyLike, REGISTER_AGENT_DISCRIMINATOR, REGISTER_SCHEMA_CONFIG_DISCRIMINATOR, REGISTRY_CONFIG_DISCRIMINATOR, REPUTATION_SCHEMA_NAME, REPUTATION_SCHEMA_VERSION, REPUTATION_SCORE_OFFSETS, RegisterAgentAsyncInput, RegisterAgentInput, RegisterAgentInstruction, RegisterAgentInstructionData, RegisterAgentInstructionDataArgs, RegisterAgentResult, RegisterSchemaConfigAsyncInput, RegisterSchemaConfigInput, RegisterSchemaConfigInstruction, RegisterSchemaConfigInstructionData, RegisterSchemaConfigInstructionDataArgs, type RegistrationEntry, RegistrationEntrySchema, type RegistrationFile, type RegistrationFileParams, RegistrationFileSchema, RegistryAuthorityUpdated, RegistryAuthorityUpdatedArgs, RegistryConfig, RegistryConfigArgs, RegistryInitialized, RegistryInitializedArgs, type ReputationScoreContent, type ReputationScoreData, type ReputationSummary, SASDeploymentResult, SAS_DATA_LEN_OFFSET, SAS_HEADER_SIZE, SAS_PROGRAM_ADDRESS, SATIClientOptions, type SATILightClient, SATILightClientImpl, SATISASConfig, SATI_ATTESTATION_SEED, SATI_CHAIN_ID, SATI_CHAIN_IDS, SATI_CHAIN_ID_DEVNET, SATI_ERROR__AGENT_ATA_EMPTY, SATI_ERROR__AGENT_ATA_MINT_MISMATCH, SATI_ERROR__AGENT_ATA_REQUIRED, SATI_ERROR__AGENT_MINT_ACCOUNT_MISMATCH, SATI_ERROR__AGENT_MINT_MISMATCH, SATI_ERROR__AGENT_SIGNATURE_NOT_FOUND, SATI_ERROR__ATTESTATION_DATA_TOO_LARGE, SATI_ERROR__ATTESTATION_DATA_TOO_SMALL, SATI_ERROR__ATTESTATION_NOT_CLOSEABLE, SATI_ERROR__CONTENT_TOO_LARGE, SATI_ERROR__COUNTERPARTY_SIGNATURE_NOT_FOUND, SATI_ERROR__DELEGATE_MISMATCH, SATI_ERROR__DELEGATION_ATTESTATION_REQUIRED, SATI_ERROR__DELEGATION_EXPIRED, SATI_ERROR__DELEGATION_OWNER_MISMATCH, SATI_ERROR__DUPLICATE_SIGNERS, SATI_ERROR__ED25519_INSTRUCTION_NOT_FOUND, SATI_ERROR__EVM_ADDRESS_MISMATCH, SATI_ERROR__IMMUTABLE_AUTHORITY, SATI_ERROR__INVALID_ADDRESS_TREE_INFO, SATI_ERROR__INVALID_AUTHORITY, SATI_ERROR__INVALID_CONTENT_TYPE, SATI_ERROR__INVALID_DELEGATION_P_D_A, SATI_ERROR__INVALID_ED25519_INSTRUCTION, SATI_ERROR__INVALID_EVM_ADDRESS_RECOVERY, SATI_ERROR__INVALID_GROUP_MINT, SATI_ERROR__INVALID_INSTRUCTIONS_SYSVAR, SATI_ERROR__INVALID_OUTCOME, SATI_ERROR__INVALID_OUTPUT_STATE_TREE_INDEX, SATI_ERROR__INVALID_SECP256K1_SIGNATURE, SATI_ERROR__INVALID_SIGNATURE, SATI_ERROR__INVALID_SIGNATURE_COUNT, SATI_ERROR__LIGHT_CPI_INVOCATION_FAILED, SATI_ERROR__MESSAGE_MISMATCH, SATI_ERROR__METADATA_KEY_TOO_LONG, SATI_ERROR__METADATA_VALUE_TOO_LONG, SATI_ERROR__MINT_AUTHORITY_NOT_RENOUNCED, SATI_ERROR__MISSING_SIGNATURES, SATI_ERROR__NAME_TOO_LONG, SATI_ERROR__OVERFLOW, SATI_ERROR__OWNER_ONLY, SATI_ERROR__SCHEMA_CONFIG_NOT_FOUND, SATI_ERROR__SECP256K1_RECOVERY_FAILED, SATI_ERROR__SELF_ATTESTATION_NOT_ALLOWED, SATI_ERROR__SIGNATURE_MISMATCH, SATI_ERROR__STORAGE_TYPE_MISMATCH, SATI_ERROR__STORAGE_TYPE_NOT_SUPPORTED, SATI_ERROR__SYMBOL_TOO_LONG, SATI_ERROR__TOO_MANY_METADATA_ENTRIES, SATI_ERROR__UNAUTHORIZED_CLOSE, SATI_ERROR__UNSUPPORTED_LAYOUT_VERSION, SATI_ERROR__URI_TOO_LONG, SATI_PROGRAM_ADDRESS, SATI_PROGRAM_ID, SCHEMA_CONFIG_DISCRIMINATOR, SCHEMA_SEED, SOLANA_CHAIN_REFS, Sati, SatiAccount, SatiAgentBuilder, SatiError, type SatiErrorCode, SatiInstruction, SatiWarning, SchemaConfig, SchemaConfigArgs, SchemaConfigRegistered, SchemaConfigRegisteredArgs, SchemaDeploymentStatus, SchemaNotFoundError, type ServiceDefinition, ServiceDefinitionSchema, type SignatureInput, SignatureMode, SignatureModeArgs, SignatureVerificationResult, SigningMessage, SolanaNetwork, StorageType, StorageTypeArgs, TAG_SIZE, TOKEN_2022_PROGRAM_ADDRESS, TransactionConfig, type TrustMechanism, TrustMechanismSchema, UPDATE_REGISTRY_AUTHORITY_DISCRIMINATOR, UpdateAgentMetadataParams, UpdateAgentMetadataResult, UpdateRegistryAuthorityAsyncInput, UpdateRegistryAuthorityInput, UpdateRegistryAuthorityInstruction, UpdateRegistryAuthorityInstructionData, UpdateRegistryAuthorityInstructionDataArgs, type UpdateReputationScoreParams, VALIDATION_OFFSETS, VALID_TRUST_MODELS, type ValidationContent, type ValidationData, type ValidationError, type ValidationResult, ValidationType, ValidityProof, ValidityProofArgs, type ValidityProofResult, address, addressToBytes, assertRegistrationFile, buildCounterpartyMessage, buildFeedbackContent, buildFeedbackSigningMessage, buildRegistrationFile, buildSatiRegistrationEntry, bytesToAddress, bytesToHex, computeAttestationNonce, computeDataHash, computeDataHashFromHashes, computeDataHashFromStrings, computeEvmLinkHash, computeInteractionHash, computeReputationNonce, createBatchEd25519Instruction, createEd25519Instruction, createJsonContent, createPinataUploader, createSATILightClient, createSatiUploader, decodeAgentIndex, decodeRegistryConfig, decodeSchemaConfig, decryptContent, deriveEncryptionKeypair, deriveEncryptionPublicKey, deriveReputationAttestationPda, deriveReputationSchemaPda, deriveSasEventAuthorityPda, deriveSatiPda, deriveSatiProgramCredentialPda, deserializeEncryptedPayload, deserializeFeedback, deserializeReputationScore, deserializeUniversalLayout, deserializeValidation, duplicateAttestationMessage, encryptContent, fetchAgentIndex, fetchAllAgentIndex, fetchAllMaybeAgentIndex, fetchAllMaybeRegistryConfig, fetchAllMaybeSchemaConfig, fetchAllRegistryConfig, fetchAllSchemaConfig, fetchMaybeAgentIndex, fetchMaybeRegistryConfig, fetchMaybeSchemaConfig, fetchRegistrationFile, fetchRegistryConfig, fetchSchemaConfig, findAgentIndexPda, findAssociatedTokenAddress, findRegistryConfigPda, findSchemaConfigPda, formatCaip10, getAgentIndexCodec, getAgentIndexDecoder, getAgentIndexDiscriminatorBytes, getAgentIndexEncoder, getAgentIndexSize, getAgentRegisteredCodec, getAgentRegisteredDecoder, getAgentRegisteredEncoder, getAttestationClosedCodec, getAttestationClosedDecoder, getAttestationClosedEncoder, getAttestationCreatedCodec, getAttestationCreatedDecoder, getAttestationCreatedEncoder, getCloseCompressedAttestationDiscriminatorBytes, getCloseCompressedAttestationInstruction, getCloseCompressedAttestationInstructionAsync, getCloseCompressedAttestationInstructionDataCodec, getCloseCompressedAttestationInstructionDataDecoder, getCloseCompressedAttestationInstructionDataEncoder, getCloseRegularAttestationDiscriminatorBytes, getCloseRegularAttestationInstruction, getCloseRegularAttestationInstructionAsync, getCloseRegularAttestationInstructionDataCodec, getCloseRegularAttestationInstructionDataDecoder, getCloseRegularAttestationInstructionDataEncoder, getCompressedAccountMetaCodec, getCompressedAccountMetaDecoder, getCompressedAccountMetaEncoder, getCompressedProofCodec, getCompressedProofDecoder, getCompressedProofEncoder, getContentTypeLabel, getCreateCompressedAttestationDiscriminatorBytes, getCreateCompressedAttestationInstruction, getCreateCompressedAttestationInstructionAsync, getCreateCompressedAttestationInstructionDataCodec, getCreateCompressedAttestationInstructionDataDecoder, getCreateCompressedAttestationInstructionDataEncoder, getCreateRegularAttestationDiscriminatorBytes, getCreateRegularAttestationInstruction, getCreateRegularAttestationInstructionAsync, getCreateRegularAttestationInstructionDataCodec, getCreateRegularAttestationInstructionDataDecoder, getCreateRegularAttestationInstructionDataEncoder, getDeployedNetworks, getEvmAddressLinkedCodec, getEvmAddressLinkedDecoder, getEvmAddressLinkedEncoder, getImageUrl, getInitializeDiscriminatorBytes, getInitializeInstruction, getInitializeInstructionAsync, getInitializeInstructionDataCodec, getInitializeInstructionDataDecoder, getInitializeInstructionDataEncoder, getLinkEvmAddressDiscriminatorBytes, getLinkEvmAddressInstruction, getLinkEvmAddressInstructionAsync, getLinkEvmAddressInstructionDataCodec, getLinkEvmAddressInstructionDataDecoder, getLinkEvmAddressInstructionDataEncoder, getMaxContentSize, getMetadataEntryCodec, getMetadataEntryDecoder, getMetadataEntryEncoder, getOutcomeLabel, getPackedAddressTreeInfoCodec, getPackedAddressTreeInfoDecoder, getPackedAddressTreeInfoEncoder, getPackedStateTreeInfoCodec, getPackedStateTreeInfoDecoder, getPackedStateTreeInfoEncoder, getRegisterAgentDiscriminatorBytes, getRegisterAgentInstruction, getRegisterAgentInstructionAsync, getRegisterAgentInstructionDataCodec, getRegisterAgentInstructionDataDecoder, getRegisterAgentInstructionDataEncoder, getRegisterSchemaConfigDiscriminatorBytes, getRegisterSchemaConfigInstruction, getRegisterSchemaConfigInstructionAsync, getRegisterSchemaConfigInstructionDataCodec, getRegisterSchemaConfigInstructionDataDecoder, getRegisterSchemaConfigInstructionDataEncoder, getRegistryAuthorityUpdatedCodec, getRegistryAuthorityUpdatedDecoder, getRegistryAuthorityUpdatedEncoder, getRegistryConfigCodec, getRegistryConfigDecoder, getRegistryConfigDiscriminatorBytes, getRegistryConfigEncoder, getRegistryConfigSize, getRegistryInitializedCodec, getRegistryInitializedDecoder, getRegistryInitializedEncoder, getSatiAgentIds, getSatiErrorMessage, getSchemaConfigCodec, getSchemaConfigDecoder, getSchemaConfigDiscriminatorBytes, getSchemaConfigEncoder, getSchemaConfigRegisteredCodec, getSchemaConfigRegisteredDecoder, getSchemaConfigRegisteredEncoder, getSignatureModeCodec, getSignatureModeDecoder, getSignatureModeEncoder, getStorageTypeCodec, getStorageTypeDecoder, getStorageTypeEncoder, getUpdateRegistryAuthorityDiscriminatorBytes, getUpdateRegistryAuthorityInstruction, getUpdateRegistryAuthorityInstructionAsync, getUpdateRegistryAuthorityInstructionDataCodec, getUpdateRegistryAuthorityInstructionDataDecoder, getUpdateRegistryAuthorityInstructionDataEncoder, getValidityProofCodec, getValidityProofDecoder, getValidityProofEncoder, handleTransactionError, hasDeployedConfig, hasSatiRegistration, hexToBytes, identifySatiAccount, identifySatiInstruction, inferMimeType, isSatiAgentRegistry, isSatiError, isValidAgentRegistry, loadDeployedConfig, networkErrorMessage, normalizeRegistrationFile, outcomeToScore, parseCloseCompressedAttestationInstruction, parseCloseRegularAttestationInstruction, parseCreateCompressedAttestationInstruction, parseCreateRegularAttestationInstruction, parseFeedbackContent, parseInitializeInstruction, parseLinkEvmAddressInstruction, parseRegisterAgentInstruction, parseRegisterSchemaConfigInstruction, parseRegistrationFile, parseReputationScoreContent, parseUpdateRegistryAuthorityInstruction, parseValidationContent, serializeEncryptedPayload, serializeFeedback, serializeReputationScore, serializeUniversalLayout, serializeValidation, stringifyRegistrationFile, transactionExpiredMessage, transactionFailedMessage, validateBaseLayout, validateContentSize, validateRegistrationFile, validateReputationScoreContent, walletDisconnectedMessage, walletRejectedMessage, zeroDataHash };
4697
4707
  //# sourceMappingURL=index.d.cts.map