@cascade-fyi/sati-sdk 0.7.0 → 0.9.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/dist/index.d.cts CHANGED
@@ -1543,13 +1543,24 @@ declare const MAX_CONTENT_SIZE = 512;
1543
1543
  */
1544
1544
  declare const MAX_DUAL_SIGNATURE_CONTENT_SIZE = 70;
1545
1545
  /**
1546
- * Maximum content size for SingleSignature mode attestations.
1546
+ * Maximum content size for CounterpartySigned mode attestations.
1547
1547
  *
1548
- * SingleSignature mode has more headroom because:
1549
- * 1. Content appears only once (no SIWS message duplication)
1548
+ * CounterpartySigned has a SIWS message containing the content, so content
1549
+ * appears TWICE in the transaction (data blob + SIWS Details field).
1550
+ * This is similar to DualSignature but with one fewer signature (no agent sig),
1551
+ * giving slightly more headroom.
1552
+ *
1553
+ * Use ContentType.IPFS or ContentType.Arweave for larger content.
1554
+ */
1555
+ declare const MAX_COUNTERPARTY_SIGNED_CONTENT_SIZE = 100;
1556
+ /**
1557
+ * Maximum content size for AgentOwnerSigned mode attestations.
1558
+ *
1559
+ * AgentOwnerSigned has more headroom because:
1560
+ * 1. Content appears only once (no SIWS message - agent signs interaction_hash)
1550
1561
  * 2. No counterparty signature verification overhead
1551
1562
  */
1552
- declare const MAX_SINGLE_SIGNATURE_CONTENT_SIZE = 240;
1563
+ declare const MAX_AGENT_OWNER_SIGNED_CONTENT_SIZE = 240;
1553
1564
  /**
1554
1565
  * Minimum universal base layout size.
1555
1566
  * All schemas share: layout_version(1) + task_ref(32) + agent_mint(32) + counterparty(32) +
@@ -1627,17 +1638,17 @@ declare enum DataType {
1627
1638
  /**
1628
1639
  * Feedback outcome values (ERC-8004 compatible)
1629
1640
  *
1630
- * For ERC-8004 score mapping:
1631
- * - Negative(0) 0
1632
- * - Neutral(1) 50
1633
- * - Positive(2) 100
1641
+ * Maps to ERC-8004 outcome semantics:
1642
+ * - Negative(0) - unfavorable interaction
1643
+ * - Neutral(1) - default / no strong signal
1644
+ * - Positive(2) - favorable interaction
1634
1645
  */
1635
1646
  declare enum Outcome {
1636
- /** Negative feedback (score 0) */
1647
+ /** Negative feedback */
1637
1648
  Negative = 0,
1638
- /** Neutral feedback (score 50) */
1649
+ /** Neutral feedback (default) */
1639
1650
  Neutral = 1,
1640
- /** Positive feedback (score 100) */
1651
+ /** Positive feedback */
1641
1652
  Positive = 2,
1642
1653
  }
1643
1654
  /**
@@ -1698,18 +1709,24 @@ interface BaseLayout {
1698
1709
  /**
1699
1710
  * Feedback schema - uses universal base layout
1700
1711
  *
1701
- * Schema-specific fields (tags, score, message) go in JSON content:
1702
- * { "score": 85, "tags": ["fast", "accurate"], "m": "Great response!" }
1712
+ * Schema-specific fields (value, tags, message) go in JSON content:
1713
+ * { "value": 85, "valueDecimals": 0, "tag1": "quality", "tag2": "latency", "m": "Great response!" }
1703
1714
  */
1704
1715
  interface FeedbackData extends BaseLayout {}
1705
1716
  /**
1706
1717
  * Feedback JSON content structure (optional fields in content)
1707
1718
  */
1708
1719
  interface FeedbackContent {
1709
- /** ERC-8004 compatible score: 0-100 */
1710
- score?: number;
1711
- /** Category tags (max 32 chars each) */
1712
- tags?: string[];
1720
+ /** ERC-8004 signed fixed-point value */
1721
+ value?: number;
1722
+ /** Decimal places for value (0-18) */
1723
+ valueDecimals?: number;
1724
+ /** First tag dimension */
1725
+ tag1?: string;
1726
+ /** Second tag dimension */
1727
+ tag2?: string;
1728
+ /** Endpoint URI being reviewed */
1729
+ endpoint?: string;
1713
1730
  /** Feedback message */
1714
1731
  m?: string;
1715
1732
  }
@@ -1805,8 +1822,8 @@ declare function parseValidationContent(content: Uint8Array, contentType: Conten
1805
1822
  *
1806
1823
  * Note: task_ref is deterministic: keccak256(counterparty, agent_mint)
1807
1824
  *
1808
- * Schema-specific fields (score, methodology) go in JSON content:
1809
- * { "score": 85, "methodology": "weighted_average", "components": {...} }
1825
+ * Schema-specific fields go in JSON content:
1826
+ * { "score": 85, "methodology": "weighted_average", "feedbackCount": 42 }
1810
1827
  */
1811
1828
  interface ReputationScoreData extends BaseLayout {}
1812
1829
  /**
@@ -2541,7 +2558,7 @@ interface CounterpartyMessageParams {
2541
2558
  * outcome: Outcome.Positive,
2542
2559
  * dataHash: dataHash,
2543
2560
  * contentType: ContentType.JSON,
2544
- * content: new TextEncoder().encode('{"score": 95, "tags": ["fast"]}'),
2561
+ * content: new TextEncoder().encode('{"value": 95, "valueDecimals": 0, "tag1": "quality"}'),
2545
2562
  * });
2546
2563
  *
2547
2564
  * // Build counterparty message
@@ -3248,8 +3265,8 @@ interface RegistrationFile {
3248
3265
  properties: Properties;
3249
3266
  /** Project website URL */
3250
3267
  external_url?: string;
3251
- /** Service endpoints (A2A, MCP, agentWallet) */
3252
- endpoints?: Endpoint[];
3268
+ /** Service endpoints (A2A, MCP, agentWallet) - ERC-8004 "services" array */
3269
+ services?: Endpoint[];
3253
3270
  /** Cross-chain registration entries */
3254
3271
  registrations?: RegistrationEntry[];
3255
3272
  /** Supported trust mechanisms */
@@ -3257,7 +3274,7 @@ interface RegistrationFile {
3257
3274
  /** Agent operational status */
3258
3275
  active?: boolean;
3259
3276
  /** Accepts x402 payments */
3260
- x402support?: boolean;
3277
+ x402Support?: boolean;
3261
3278
  }
3262
3279
  /** Input parameters for buildRegistrationFile */
3263
3280
  interface RegistrationFileParams {
@@ -3266,11 +3283,11 @@ interface RegistrationFileParams {
3266
3283
  image: string;
3267
3284
  imageMimeType?: string;
3268
3285
  externalUrl?: string;
3269
- endpoints?: Endpoint[];
3286
+ services?: Endpoint[];
3270
3287
  registrations?: RegistrationEntry[];
3271
3288
  supportedTrust?: TrustMechanism[];
3272
3289
  active?: boolean;
3273
- x402support?: boolean;
3290
+ x402Support?: boolean;
3274
3291
  }
3275
3292
  /**
3276
3293
  * Infer MIME type from image URL extension.
@@ -3445,13 +3462,17 @@ interface GiveFeedbackParams {
3445
3462
  payer: KeyPairSigner;
3446
3463
  /** Agent mint address to review */
3447
3464
  agentMint: Address$1;
3448
- /** Numeric score 0-100 (auto-maps to outcome if not provided) */
3449
- score?: number;
3450
- /** Tag dimensions for the feedback (1 or 2 tags) */
3451
- tags?: [string] | [string, string];
3465
+ /** ERC-8004 signed fixed-point value (e.g. 87 for score, -32 for -3.2% yield) */
3466
+ value?: number;
3467
+ /** Decimal places for value (0-18). E.g. valueDecimals=0 means integer, =2 means 2 decimal places. Default 0. */
3468
+ valueDecimals?: number;
3469
+ /** First tag dimension (e.g. "starred", "uptime", "successRate") */
3470
+ tag1?: string;
3471
+ /** Second tag dimension (optional sub-category) */
3472
+ tag2?: string;
3452
3473
  /** Human-readable feedback message */
3453
3474
  message?: string;
3454
- /** Endpoint being reviewed */
3475
+ /** Endpoint URI being reviewed */
3455
3476
  endpoint?: string;
3456
3477
  /** Explicit outcome (defaults to Neutral if not set) */
3457
3478
  outcome?: Outcome;
@@ -3489,8 +3510,10 @@ interface PreparedFeedbackData {
3489
3510
  lookupTable?: Address$1;
3490
3511
  /** Original input values for reconstructing display data */
3491
3512
  meta: {
3492
- score?: number;
3493
- tags?: string[];
3513
+ value?: number;
3514
+ valueDecimals?: number;
3515
+ tag1?: string;
3516
+ tag2?: string;
3494
3517
  message?: string;
3495
3518
  endpoint?: string;
3496
3519
  };
@@ -3501,12 +3524,14 @@ interface FeedbackSearchOptions {
3501
3524
  agentMint?: Address$1;
3502
3525
  /** Filter by counterparty (reviewer) */
3503
3526
  counterparty?: Address$1;
3504
- /** Filter by tag dimensions */
3505
- tags?: string[];
3506
- /** Minimum score (inclusive) */
3507
- minScore?: number;
3508
- /** Maximum score (inclusive) */
3509
- maxScore?: number;
3527
+ /** Filter by tag1 */
3528
+ tag1?: string;
3529
+ /** Filter by tag2 */
3530
+ tag2?: string;
3531
+ /** Minimum value (inclusive) */
3532
+ minValue?: number;
3533
+ /** Maximum value (inclusive) */
3534
+ maxValue?: number;
3510
3535
  /** Include transaction hash in results (extra RPC call) */
3511
3536
  includeTxHash?: boolean;
3512
3537
  }
@@ -3520,10 +3545,14 @@ interface ParsedFeedback {
3520
3545
  counterparty: Address$1;
3521
3546
  /** Feedback outcome */
3522
3547
  outcome: Outcome;
3523
- /** Numeric score 0-100 (from JSON content) */
3524
- score?: number;
3525
- /** Tag dimensions */
3526
- tags: string[];
3548
+ /** ERC-8004 signed fixed-point value */
3549
+ value?: number;
3550
+ /** Decimal places for value (0-18) */
3551
+ valueDecimals?: number;
3552
+ /** First tag dimension */
3553
+ tag1?: string;
3554
+ /** Second tag dimension */
3555
+ tag2?: string;
3527
3556
  /** Feedback message */
3528
3557
  message?: string;
3529
3558
  /** Endpoint reviewed */
@@ -3535,10 +3564,10 @@ interface ParsedFeedback {
3535
3564
  }
3536
3565
  /** Reputation summary aggregated from feedback. */
3537
3566
  interface ReputationSummary {
3538
- /** Number of feedback attestations */
3567
+ /** Number of feedback attestations with values */
3539
3568
  count: number;
3540
- /** Average score (0-100) across attestations with scores */
3541
- averageScore: number;
3569
+ /** Average value across attestations (raw, not adjusted for valueDecimals) */
3570
+ averageValue: number;
3542
3571
  }
3543
3572
  /** Options for searching registered agents. */
3544
3573
  interface AgentSearchOptions {
@@ -3651,7 +3680,7 @@ interface CreateFeedbackParams {
3651
3680
  * @example
3652
3681
  * ```typescript
3653
3682
  * // Small content (fits in DualSignature)
3654
- * content: new TextEncoder().encode('{"score":85,"tags":["fast"]}')
3683
+ * content: new TextEncoder().encode('{"value":85,"valueDecimals":0,"tag1":"starred"}')
3655
3684
  *
3656
3685
  * // Large content (use IPFS reference)
3657
3686
  * contentType: ContentType.IPFS,
@@ -3961,7 +3990,11 @@ declare class Sati {
3961
3990
  signature: string;
3962
3991
  }>;
3963
3992
  /**
3964
- * Get current owner of an agent
3993
+ * Get current owner of an agent.
3994
+ *
3995
+ * Uses `getTokenLargestAccounts` which relies on an SPL token index.
3996
+ * This index can lag behind transaction confirmation on RPC node pools,
3997
+ * so we retry with backoff for recently created or transferred tokens.
3965
3998
  */
3966
3999
  getAgentOwner(mint: Address$1): Promise<Address$1>;
3967
4000
  /**
@@ -4232,8 +4265,9 @@ declare class Sati {
4232
4265
  * const result = await sati.giveFeedback({
4233
4266
  * payer: myKeypair,
4234
4267
  * agentMint: address("Agent..."),
4235
- * score: 85,
4236
- * tags: ["quality", "speed"],
4268
+ * value: 87,
4269
+ * valueDecimals: 0,
4270
+ * tag1: "starred",
4237
4271
  * message: "Great response time",
4238
4272
  * });
4239
4273
  * ```
@@ -4281,8 +4315,8 @@ declare class Sati {
4281
4315
  * ```typescript
4282
4316
  * const feedbacks = await sati.searchFeedback({
4283
4317
  * agentMint: address("Agent..."),
4284
- * tags: ["quality"],
4285
- * minScore: 70,
4318
+ * tag1: "starred",
4319
+ * minValue: 70,
4286
4320
  * });
4287
4321
  * ```
4288
4322
  */
@@ -4290,15 +4324,15 @@ declare class Sati {
4290
4324
  /**
4291
4325
  * Get reputation summary for an agent.
4292
4326
  *
4293
- * Aggregates feedback scores, optionally filtered by tags.
4327
+ * Aggregates feedback values, optionally filtered by tag1 and/or tag2.
4294
4328
  *
4295
4329
  * @example
4296
4330
  * ```typescript
4297
4331
  * const summary = await sati.getReputationSummary(address("Agent..."));
4298
- * console.log(`${summary.count} reviews, avg ${summary.averageScore}`);
4332
+ * console.log(`${summary.count} reviews, avg ${summary.averageValue}`);
4299
4333
  * ```
4300
4334
  */
4301
- getReputationSummary(agentMint: Address$1, tags?: string[]): Promise<ReputationSummary>;
4335
+ getReputationSummary(agentMint: Address$1, tag1?: string, tag2?: string): Promise<ReputationSummary>;
4302
4336
  /**
4303
4337
  * Search validation attestations for an agent.
4304
4338
  *
@@ -4452,5 +4486,5 @@ declare function networkErrorMessage(): string;
4452
4486
  declare function transactionExpiredMessage(): string;
4453
4487
  declare function transactionFailedMessage(detail?: string): string;
4454
4488
  //#endregion
4455
- 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, 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_CONTENT_SIZE, MAX_DUAL_SIGNATURE_CONTENT_SIZE, MAX_PLAINTEXT_SIZE, MAX_SINGLE_SIGNATURE_CONTENT_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, type PropertyFile, 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, type RegistrationFile, type RegistrationFileParams, 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_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_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_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 SignatureInput, SignatureMode, SignatureModeArgs, SignatureVerificationResult, SigningMessage, SolanaNetwork, StorageType, StorageTypeArgs, TAG_SIZE, TOKEN_2022_PROGRAM_ADDRESS, type TrustMechanism, UPDATE_REGISTRY_AUTHORITY_DISCRIMINATOR, UpdateAgentMetadataParams, UpdateAgentMetadataResult, UpdateRegistryAuthorityAsyncInput, UpdateRegistryAuthorityInput, UpdateRegistryAuthorityInstruction, UpdateRegistryAuthorityInstructionData, UpdateRegistryAuthorityInstructionDataArgs, type UpdateReputationScoreParams, VALIDATION_OFFSETS, type ValidationContent, type ValidationData, ValidationType, ValidityProof, ValidityProofArgs, type ValidityProofResult, address, addressToBytes, buildCounterpartyMessage, buildFeedbackSigningMessage, buildRegistrationFile, buildSatiRegistrationEntry, bytesToAddress, 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, identifySatiAccount, identifySatiInstruction, inferMimeType, isSatiError, loadDeployedConfig, networkErrorMessage, outcomeToScore, parseCloseCompressedAttestationInstruction, parseCloseRegularAttestationInstruction, parseCreateCompressedAttestationInstruction, parseCreateRegularAttestationInstruction, parseFeedbackContent, parseInitializeInstruction, parseLinkEvmAddressInstruction, parseRegisterAgentInstruction, parseRegisterSchemaConfigInstruction, parseReputationScoreContent, parseUpdateRegistryAuthorityInstruction, parseValidationContent, serializeEncryptedPayload, serializeFeedback, serializeReputationScore, serializeUniversalLayout, serializeValidation, stringifyRegistrationFile, transactionExpiredMessage, transactionFailedMessage, validateBaseLayout, validateContentSize, validateReputationScoreContent, walletDisconnectedMessage, walletRejectedMessage, zeroDataHash };
4489
+ 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, 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, type PropertyFile, 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, type RegistrationFile, type RegistrationFileParams, 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_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_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_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 SignatureInput, SignatureMode, SignatureModeArgs, SignatureVerificationResult, SigningMessage, SolanaNetwork, StorageType, StorageTypeArgs, TAG_SIZE, TOKEN_2022_PROGRAM_ADDRESS, type TrustMechanism, UPDATE_REGISTRY_AUTHORITY_DISCRIMINATOR, UpdateAgentMetadataParams, UpdateAgentMetadataResult, UpdateRegistryAuthorityAsyncInput, UpdateRegistryAuthorityInput, UpdateRegistryAuthorityInstruction, UpdateRegistryAuthorityInstructionData, UpdateRegistryAuthorityInstructionDataArgs, type UpdateReputationScoreParams, VALIDATION_OFFSETS, type ValidationContent, type ValidationData, ValidationType, ValidityProof, ValidityProofArgs, type ValidityProofResult, address, addressToBytes, buildCounterpartyMessage, buildFeedbackSigningMessage, buildRegistrationFile, buildSatiRegistrationEntry, bytesToAddress, 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, identifySatiAccount, identifySatiInstruction, inferMimeType, isSatiError, loadDeployedConfig, networkErrorMessage, outcomeToScore, parseCloseCompressedAttestationInstruction, parseCloseRegularAttestationInstruction, parseCreateCompressedAttestationInstruction, parseCreateRegularAttestationInstruction, parseFeedbackContent, parseInitializeInstruction, parseLinkEvmAddressInstruction, parseRegisterAgentInstruction, parseRegisterSchemaConfigInstruction, parseReputationScoreContent, parseUpdateRegistryAuthorityInstruction, parseValidationContent, serializeEncryptedPayload, serializeFeedback, serializeReputationScore, serializeUniversalLayout, serializeValidation, stringifyRegistrationFile, transactionExpiredMessage, transactionFailedMessage, validateBaseLayout, validateContentSize, validateReputationScoreContent, walletDisconnectedMessage, walletRejectedMessage, zeroDataHash };
4456
4490
  //# sourceMappingURL=index.d.cts.map