@ghostspeak/sdk 1.6.2 → 1.6.3

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.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as _solana_addresses from '@solana/addresses';
2
2
  import { Address as Address$1 } from '@solana/addresses';
3
- import * as _solana_kit from '@solana/kit';
4
3
  import { ReadonlyUint8Array, Address, Encoder, Decoder, Codec, EncodedAccount, Account, MaybeEncodedAccount, MaybeAccount, fetchEncodedAccount, FetchAccountConfig, fetchEncodedAccounts, FetchAccountsConfig, Option, OptionOrNullable, GetDiscriminatedUnionVariant, GetDiscriminatedUnionVariantContent, SolanaError, SOLANA_ERROR__INSTRUCTION_ERROR__CUSTOM, IAccountMeta, IInstruction, IInstructionWithData, IInstructionWithAccounts, WritableAccount, WritableSignerAccount, IAccountSignerMeta, ReadonlyAccount, TransactionSigner, ReadonlySignerAccount, Rpc, GetLatestBlockhashApi, SendTransactionApi, GetAccountInfoApi, SimulateTransactionApi, GetFeeForMessageApi, GetProgramAccountsApi, GetEpochInfoApi, GetSignatureStatusesApi, GetMultipleAccountsApi, RpcSubscriptions, SignatureNotificationsApi, SlotNotificationsApi, Signature, Slot, Lamports, Epoch, TransactionMessage } from '@solana/kit';
4
+ import * as _solana_rpc_types from '@solana/rpc-types';
5
5
 
6
6
  /**
7
7
  * This code was AUTOGENERATED using the codama library.
@@ -12570,7 +12570,7 @@ declare class SimpleRpcClient {
12570
12570
  * Get latest blockhash
12571
12571
  */
12572
12572
  getLatestBlockhash(): Promise<Readonly<{
12573
- blockhash: _solana_kit.Blockhash;
12573
+ blockhash: _solana_rpc_types.Blockhash;
12574
12574
  lastValidBlockHeight: bigint;
12575
12575
  }>>;
12576
12576
  /**
@@ -12584,12 +12584,12 @@ declare class SimpleRpcClient {
12584
12584
  * Get signature statuses
12585
12585
  */
12586
12586
  getSignatureStatuses(signatures: Signature[]): Promise<readonly (Readonly<{
12587
- confirmationStatus: _solana_kit.Commitment | null;
12587
+ confirmationStatus: _solana_rpc_types.Commitment | null;
12588
12588
  confirmations: bigint | null;
12589
- err: _solana_kit.TransactionError | null;
12590
- slot: _solana_kit.Slot;
12589
+ err: _solana_rpc_types.TransactionError | null;
12590
+ slot: _solana_rpc_types.Slot;
12591
12591
  status: Readonly<{
12592
- Err: _solana_kit.TransactionError;
12592
+ Err: _solana_rpc_types.TransactionError;
12593
12593
  }> | Readonly<{
12594
12594
  Ok: null;
12595
12595
  }>;
@@ -12602,15 +12602,15 @@ declare class SimpleRpcClient {
12602
12602
  replaceRecentBlockhash?: boolean;
12603
12603
  }): Promise<Readonly<{
12604
12604
  context: Readonly<{
12605
- slot: _solana_kit.Slot;
12605
+ slot: _solana_rpc_types.Slot;
12606
12606
  }>;
12607
12607
  value: Readonly<{
12608
12608
  readonly accounts: null;
12609
12609
  }> & Readonly<{
12610
- err: _solana_kit.TransactionError | null;
12610
+ err: _solana_rpc_types.TransactionError | null;
12611
12611
  logs: string[] | null;
12612
12612
  returnData: Readonly<{
12613
- data: _solana_kit.Base64EncodedDataResponse;
12613
+ data: _solana_rpc_types.Base64EncodedDataResponse;
12614
12614
  programId: Address$1;
12615
12615
  }> | null;
12616
12616
  unitsConsumed?: bigint;
@@ -12665,6 +12665,10 @@ declare abstract class BaseInstructions {
12665
12665
  * Get or create the send and confirm transaction function using factory pattern
12666
12666
  */
12667
12667
  private getSendAndConfirmTransaction;
12668
+ /**
12669
+ * Calculate estimated transaction size for validation
12670
+ */
12671
+ protected estimateTransactionSize(instructions: IInstruction[]): number;
12668
12672
  /**
12669
12673
  * Send a transaction with instructions and signers using REAL Web3.js v2 patterns
12670
12674
  * Returns transaction result with verification URLs
@@ -12723,6 +12727,14 @@ declare abstract class BaseInstructions {
12723
12727
  * Centralizes the common pattern for detailed transaction results
12724
12728
  */
12725
12729
  protected executeInstructionWithDetails(instructionGetter: () => unknown, signer: TransactionSigner, context?: string): Promise<TransactionResult>;
12730
+ /**
12731
+ * Get raw account data without decoding (for discriminator validation)
12732
+ */
12733
+ protected getRawAccount(address: Address$1, commitment?: Commitment$1): Promise<EncodedAccount | null>;
12734
+ /**
12735
+ * Get all program accounts without filtering (for recovery operations)
12736
+ */
12737
+ protected getAllProgramAccounts(commitment?: Commitment$1): Promise<EncodedAccount[]>;
12726
12738
  }
12727
12739
 
12728
12740
  interface AgentRegistrationParams {
@@ -12739,10 +12751,26 @@ declare class AgentInstructions extends BaseInstructions {
12739
12751
  * Register a new AI agent
12740
12752
  */
12741
12753
  register(signer: KeyPairSigner, params: AgentRegistrationParams): Promise<string>;
12754
+ /**
12755
+ * Create a new agent (user-friendly wrapper for register)
12756
+ */
12757
+ create(signer: KeyPairSigner, params: {
12758
+ name: string;
12759
+ description: string;
12760
+ category: string;
12761
+ capabilities: string[];
12762
+ metadataUri: string;
12763
+ serviceEndpoint: string;
12764
+ }): Promise<string>;
12742
12765
  /**
12743
12766
  * Update an existing agent
12744
12767
  */
12745
- update(signer: KeyPairSigner, agentAddress: Address$1, agentType: number, metadataUri: string, agentId: string): Promise<string>;
12768
+ update(signer: KeyPairSigner, agentAddress: Address$1, params: {
12769
+ description?: string;
12770
+ metadataUri?: string;
12771
+ capabilities?: string[];
12772
+ serviceEndpoint?: string;
12773
+ }): Promise<string>;
12746
12774
  /**
12747
12775
  * Verify an agent (admin operation)
12748
12776
  */
@@ -12756,11 +12784,11 @@ declare class AgentInstructions extends BaseInstructions {
12756
12784
  */
12757
12785
  activate(signer: KeyPairSigner, agentAddress: Address$1, agentId: string): Promise<string>;
12758
12786
  /**
12759
- * Get agent account information using centralized pattern
12787
+ * Get agent account information using centralized pattern with discriminator validation
12760
12788
  */
12761
12789
  getAccount(agentAddress: Address$1): Promise<Agent | null>;
12762
12790
  /**
12763
- * Get all agents (with pagination) using centralized pattern
12791
+ * Get all agents (with pagination) using centralized pattern with discriminator validation
12764
12792
  */
12765
12793
  getAllAgents(limit?: number, offset?: number): Promise<Agent[]>;
12766
12794
  /**
@@ -12768,7 +12796,7 @@ declare class AgentInstructions extends BaseInstructions {
12768
12796
  */
12769
12797
  searchByCapabilities(capabilities: string[]): Promise<AgentWithAddress[]>;
12770
12798
  /**
12771
- * List agents (alias for getAllAgents for CLI compatibility)
12799
+ * List agents (alias for getAllAgents for CLI compatibility) with discriminator validation
12772
12800
  */
12773
12801
  list(options?: {
12774
12802
  limit?: number;
@@ -12796,6 +12824,63 @@ declare class AgentInstructions extends BaseInstructions {
12796
12824
  listByOwner(options: {
12797
12825
  owner: Address$1;
12798
12826
  }): Promise<AgentWithAddress[]>;
12827
+ /**
12828
+ * Check if user has admin privileges
12829
+ */
12830
+ isAdmin(userAddress: Address$1): Promise<boolean>;
12831
+ /**
12832
+ * Get unverified agents
12833
+ */
12834
+ getUnverifiedAgents(): Promise<AgentWithAddress[]>;
12835
+ /**
12836
+ * Reject agent verification
12837
+ */
12838
+ rejectVerification(signer: KeyPairSigner, agentAddress: Address$1, params: {
12839
+ reason: string;
12840
+ }): Promise<string>;
12841
+ /**
12842
+ * Request additional information from agent
12843
+ */
12844
+ requestAdditionalInfo(signer: KeyPairSigner, agentAddress: Address$1, params: {
12845
+ request: string;
12846
+ }): Promise<string>;
12847
+ /**
12848
+ * Get agent analytics
12849
+ */
12850
+ getAnalytics(agentAddress?: Address$1): Promise<{
12851
+ totalEarnings: number;
12852
+ jobsCompleted: number;
12853
+ successRate: number;
12854
+ averageRating: number;
12855
+ totalTransactions: number;
12856
+ uniqueClients: number;
12857
+ totalVolume: bigint;
12858
+ activeAgents: number;
12859
+ totalJobs: number;
12860
+ totalAgents: number;
12861
+ verifiedAgents: number;
12862
+ jobsByCategory: Record<string, number>;
12863
+ earningsTrend: {
12864
+ date: string;
12865
+ amount: number;
12866
+ }[];
12867
+ topClients: {
12868
+ address: string;
12869
+ jobs: number;
12870
+ }[];
12871
+ topCategories: string[];
12872
+ topPerformers: {
12873
+ agent: string;
12874
+ earnings: number;
12875
+ }[];
12876
+ growthMetrics: {
12877
+ weeklyGrowth: number;
12878
+ monthlyGrowth: number;
12879
+ userGrowth: number;
12880
+ revenueGrowth: number;
12881
+ };
12882
+ insights: string[];
12883
+ }>;
12799
12884
  /**
12800
12885
  * Get agent status details
12801
12886
  */
@@ -12977,7 +13062,7 @@ declare class EscrowInstructions extends BaseInstructions {
12977
13062
  /**
12978
13063
  * Create a new escrow account via work order
12979
13064
  */
12980
- create(workOrderAddress: Address$1, params: CreateEscrowParams): Promise<string>;
13065
+ create(params: CreateEscrowParams): Promise<string>;
12981
13066
  /**
12982
13067
  * Release escrow funds by submitting work delivery
12983
13068
  */
@@ -13079,7 +13164,7 @@ declare class A2AInstructions extends BaseInstructions {
13079
13164
  * including creation, bidding, monitoring, and settlement with real Web3.js v2 execution.
13080
13165
  */
13081
13166
 
13082
- interface CreateAuctionParams extends BaseInstructionParams, BaseTimeParams {
13167
+ interface CreateAuctionParams extends BaseTimeParams {
13083
13168
  auctionData: {
13084
13169
  auctionType: AuctionType;
13085
13170
  startingPrice: bigint;
@@ -13089,10 +13174,12 @@ interface CreateAuctionParams extends BaseInstructionParams, BaseTimeParams {
13089
13174
  };
13090
13175
  metadataUri?: string;
13091
13176
  agent: Address;
13177
+ signer: TransactionSigner;
13092
13178
  }
13093
- interface PlaceBidParams extends BaseInstructionParams {
13179
+ interface PlaceBidParams {
13094
13180
  auction: Address;
13095
13181
  bidAmount: bigint;
13182
+ signer: TransactionSigner;
13096
13183
  }
13097
13184
  interface FinalizeAuctionParams extends BaseInstructionParams {
13098
13185
  auction: Address;
@@ -13153,6 +13240,24 @@ interface AuctionAnalytics {
13153
13240
  */
13154
13241
  declare class AuctionInstructions extends BaseInstructions {
13155
13242
  constructor(config: GhostSpeakConfig);
13243
+ /**
13244
+ * Create a new auction (simplified interface)
13245
+ */
13246
+ create(signer: KeyPairSigner, params: {
13247
+ title: string;
13248
+ description: string;
13249
+ category: string;
13250
+ requirements: string[];
13251
+ startPrice: bigint;
13252
+ minIncrement: bigint;
13253
+ duration: bigint;
13254
+ paymentToken: Address;
13255
+ agentAddress: Address;
13256
+ }): Promise<string>;
13257
+ /**
13258
+ * Place a bid on an auction (simplified interface)
13259
+ */
13260
+ placeBid(signer: KeyPairSigner, auctionAddress: Address, bidAmount: bigint): Promise<string>;
13156
13261
  /**
13157
13262
  * Create a new service auction
13158
13263
  *
@@ -13243,7 +13348,7 @@ declare class AuctionInstructions extends BaseInstructions {
13243
13348
  */
13244
13349
  finalizeAuctionWithDetails(params: FinalizeAuctionParams): Promise<TransactionResult>;
13245
13350
  /**
13246
- * Get auction account data
13351
+ * Get auction account data with discriminator validation
13247
13352
  *
13248
13353
  * @param auctionAddress - The auction account address
13249
13354
  * @returns Auction account data or null if not found
@@ -13304,6 +13409,13 @@ declare class AuctionInstructions extends BaseInstructions {
13304
13409
  private validateBidParams;
13305
13410
  private validateAuctionCanBeFinalized;
13306
13411
  private auctionToSummary;
13412
+ /**
13413
+ * List auctions (alias for listAuctions for CLI compatibility)
13414
+ */
13415
+ list(options?: {
13416
+ filter?: AuctionFilter;
13417
+ limit?: number;
13418
+ }): Promise<AuctionSummary[]>;
13307
13419
  private applyAuctionFilter;
13308
13420
  }
13309
13421
 
@@ -13524,6 +13636,28 @@ declare class DisputeInstructions extends BaseInstructions {
13524
13636
  * @returns Comprehensive dispute resolution analytics
13525
13637
  */
13526
13638
  getDisputeAnalytics(): Promise<DisputeAnalytics>;
13639
+ /**
13640
+ * Escalate a dispute to human review
13641
+ *
13642
+ * Escalates a dispute when automated resolution fails or when either party
13643
+ * is unsatisfied with the initial resolution. This triggers human moderator
13644
+ * review with potential governance intervention.
13645
+ *
13646
+ * @param signer - The party escalating the dispute
13647
+ * @param disputeAddress - The dispute account address
13648
+ * @param escalationReason - Reason for escalation
13649
+ * @returns Transaction signature
13650
+ *
13651
+ * @example
13652
+ * ```typescript
13653
+ * const signature = await client.dispute.escalateDispute(
13654
+ * signer,
13655
+ * disputeAddress,
13656
+ * "AI resolution seems biased, requesting human review"
13657
+ * )
13658
+ * ```
13659
+ */
13660
+ escalateDispute(signer: TransactionSigner, disputeAddress: Address, escalationReason: string): Promise<Signature>;
13527
13661
  /**
13528
13662
  * Monitor dispute for status updates
13529
13663
  *
@@ -13532,13 +13666,6 @@ declare class DisputeInstructions extends BaseInstructions {
13532
13666
  * @returns Cleanup function to stop monitoring
13533
13667
  */
13534
13668
  monitorDispute(disputeAddress: Address, callback: (dispute: DisputeSummary) => void): Promise<() => void>;
13535
- /**
13536
- * Escalate dispute to human review
13537
- *
13538
- * @param disputeAddress - The dispute to escalate
13539
- * @param escalationReason - Reason for escalation
13540
- */
13541
- escalateDispute(disputeAddress: Address, escalationReason: string): Promise<void>;
13542
13669
  private validateFileDisputeParams;
13543
13670
  private validateEvidenceParams;
13544
13671
  private validateResolveDisputeParams;
@@ -14357,6 +14484,75 @@ declare class ComplianceInstructions extends BaseInstructions {
14357
14484
  private deriveAuditTrailPda;
14358
14485
  }
14359
14486
 
14487
+ interface CreateChannelParams {
14488
+ name: string;
14489
+ description?: string;
14490
+ visibility?: 'public' | 'private';
14491
+ isPublic?: boolean;
14492
+ participants?: Address$1[];
14493
+ channelType?: ChannelType;
14494
+ }
14495
+ interface SendChannelMessageParams {
14496
+ channelId: string;
14497
+ content: string;
14498
+ messageType?: MessageType;
14499
+ attachments?: string[];
14500
+ }
14501
+ interface ChannelWithMetadata {
14502
+ address: Address$1;
14503
+ data: Channel;
14504
+ participantCount: number;
14505
+ messageCount: number;
14506
+ lastActivity: bigint;
14507
+ }
14508
+ /**
14509
+ * Instructions for channel management operations
14510
+ */
14511
+ declare class ChannelInstructions extends BaseInstructions {
14512
+ constructor(config: GhostSpeakConfig);
14513
+ /**
14514
+ * Create a new communication channel with smart defaults
14515
+ */
14516
+ create(signer: KeyPairSigner, params: CreateChannelParams): Promise<{
14517
+ channelId: Address$1;
14518
+ signature: string;
14519
+ }>;
14520
+ /**
14521
+ * Send a message to a channel (supports both object params and string content)
14522
+ */
14523
+ sendMessage(signer: KeyPairSigner, channelAddress: Address$1, contentOrParams: string | SendChannelMessageParams, _metadata?: unknown): Promise<string>;
14524
+ /**
14525
+ * List channels by participant
14526
+ */
14527
+ listByParticipant(params: {
14528
+ participant: Address$1;
14529
+ }): Promise<ChannelWithMetadata[]>;
14530
+ /**
14531
+ * Get channel details
14532
+ */
14533
+ getChannel(channelAddress: Address$1): Promise<Channel | null>;
14534
+ /**
14535
+ * List all public channels
14536
+ */
14537
+ listPublicChannels(limit?: number): Promise<ChannelWithMetadata[]>;
14538
+ /**
14539
+ * Get messages from a channel (paginated)
14540
+ */
14541
+ getChannelMessages(_channelAddress: Address$1, _options?: {
14542
+ limit?: number;
14543
+ offset?: number;
14544
+ }): Promise<{
14545
+ message: Address$1;
14546
+ content: string;
14547
+ sender: Address$1;
14548
+ timestamp: number;
14549
+ }[]>;
14550
+ /**
14551
+ * Derive channel PDA
14552
+ */
14553
+ private deriveChannelPda;
14554
+ }
14555
+
14360
14556
  interface KeyPairSigner {
14361
14557
  address: Address$1;
14362
14558
  publicKey: Address$1;
@@ -14378,6 +14574,7 @@ declare class GhostSpeakClient {
14378
14574
  readonly bulkDeals: BulkDealsInstructions;
14379
14575
  readonly analytics: AnalyticsInstructions;
14380
14576
  readonly compliance: ComplianceInstructions;
14577
+ readonly channel: ChannelInstructions;
14381
14578
  constructor(config: GhostSpeakConfig);
14382
14579
  /**
14383
14580
  * Create a new GhostSpeak client instance
@@ -14410,7 +14607,7 @@ declare class GhostSpeakClient {
14410
14607
  /**
14411
14608
  * Create an escrow account
14412
14609
  */
14413
- createEscrow(signer: KeyPairSigner, workOrderAddress: Address$1, params: CreateEscrowParams): Promise<string>;
14610
+ createEscrow(signer: KeyPairSigner, params: CreateEscrowParams): Promise<string>;
14414
14611
  /**
14415
14612
  * Get escrow account information
14416
14613
  */
@@ -14433,6 +14630,187 @@ declare class GhostSpeakClient {
14433
14630
  getA2AMessages(sessionAddress: Address$1): Promise<A2AMessage$1[]>;
14434
14631
  }
14435
14632
 
14633
+ /**
14634
+ * Discriminator Validation Utilities
14635
+ *
14636
+ * Handles discriminator validation and provides fallback mechanisms
14637
+ * for accounts with mismatched discriminators
14638
+ */
14639
+
14640
+ interface DiscriminatorValidationResult {
14641
+ isValid: boolean;
14642
+ expectedLength: number;
14643
+ actualLength: number;
14644
+ canDecode: boolean;
14645
+ needsMigration: boolean;
14646
+ errorMessage?: string;
14647
+ }
14648
+ interface AccountInspectionResult {
14649
+ address: string;
14650
+ dataLength: number;
14651
+ discriminator: Uint8Array | null;
14652
+ discriminatorLength: number;
14653
+ isAgentAccount: boolean;
14654
+ needsMigration: boolean;
14655
+ rawData: Uint8Array;
14656
+ }
14657
+ /**
14658
+ * Validates account discriminator before attempting to decode
14659
+ */
14660
+ declare function validateAccountDiscriminator(accountData: Uint8Array, expectedDiscriminator: Uint8Array): DiscriminatorValidationResult;
14661
+ /**
14662
+ * Create user-friendly error message for discriminator issues
14663
+ */
14664
+ declare function createDiscriminatorErrorMessage(validation: DiscriminatorValidationResult, accountType: string, address: string): string;
14665
+ /**
14666
+ * Safe Agent account decoding with discriminator validation
14667
+ * Returns a compatibility result with exists property
14668
+ */
14669
+ declare function safeDecodeAgent(encodedAccount: {
14670
+ address: Address$1;
14671
+ data: Uint8Array;
14672
+ }): Promise<{
14673
+ exists: boolean;
14674
+ data?: unknown;
14675
+ } | null>;
14676
+ /**
14677
+ * Inspects account data and extracts useful information about discriminator
14678
+ */
14679
+ declare function inspectAccountData(encodedAccount: EncodedAccount | MaybeEncodedAccount, address: string): AccountInspectionResult;
14680
+
14681
+ /**
14682
+ * Account Migration Utility
14683
+ *
14684
+ * Handles migration of old Agent accounts that were created with
14685
+ * different discriminator formats to the current format.
14686
+ */
14687
+
14688
+ interface MigrationPlan {
14689
+ address: string;
14690
+ currentState: 'valid' | 'needs_migration' | 'invalid' | 'not_exists';
14691
+ migrationType: 'none' | 'recreate' | 'data_conversion' | 'unsupported';
14692
+ issues: string[];
14693
+ recommendations: string[];
14694
+ canAutoMigrate: boolean;
14695
+ }
14696
+ interface MigrationResult {
14697
+ success: boolean;
14698
+ address: string;
14699
+ action: 'skipped' | 'migrated' | 'failed';
14700
+ error?: string;
14701
+ newAccountData?: Uint8Array;
14702
+ }
14703
+ interface LegacyAgentData {
14704
+ discriminator: Uint8Array;
14705
+ owner?: string;
14706
+ name?: string;
14707
+ }
14708
+ /**
14709
+ * Analyzes an account and creates a migration plan
14710
+ */
14711
+ declare function createMigrationPlan(encodedAccount: EncodedAccount | MaybeEncodedAccount, address: string): Promise<MigrationPlan>;
14712
+ /**
14713
+ * Attempts to extract meaningful data from a legacy account
14714
+ */
14715
+ declare function extractLegacyData(encodedAccount: EncodedAccount | MaybeEncodedAccount): LegacyAgentData | null;
14716
+ /**
14717
+ * Creates a detailed migration report for multiple accounts
14718
+ */
14719
+ declare function createMigrationReport(accounts: {
14720
+ address: string;
14721
+ encodedAccount: EncodedAccount | MaybeEncodedAccount;
14722
+ }[]): Promise<{
14723
+ summary: {
14724
+ total: number;
14725
+ valid: number;
14726
+ needsMigration: number;
14727
+ invalid: number;
14728
+ canAutoMigrate: number;
14729
+ };
14730
+ plans: MigrationPlan[];
14731
+ recommendations: string[];
14732
+ }>;
14733
+ /**
14734
+ * Simulates migration without actually performing it
14735
+ */
14736
+ declare function simulateMigration(encodedAccount: EncodedAccount | MaybeEncodedAccount, address: string): Promise<{
14737
+ plan: MigrationPlan;
14738
+ simulation: {
14739
+ wouldSucceed: boolean;
14740
+ estimatedSteps: string[];
14741
+ warnings: string[];
14742
+ requiredActions: string[];
14743
+ };
14744
+ }>;
14745
+ /**
14746
+ * Provides user-friendly migration instructions
14747
+ */
14748
+ declare function getMigrationInstructions(plan: MigrationPlan): string[];
14749
+
14750
+ /**
14751
+ * Account Diagnostics Utility
14752
+ *
14753
+ * Comprehensive diagnostic tools for inspecting and debugging
14754
+ * account discriminator issues and data format problems.
14755
+ */
14756
+
14757
+ interface DiagnosticReport {
14758
+ address: string;
14759
+ timestamp: string;
14760
+ accountExists: boolean;
14761
+ discriminatorValidation: ReturnType<typeof validateAccountDiscriminator>;
14762
+ inspection: AccountInspectionResult;
14763
+ migrationPlan: Awaited<ReturnType<typeof createMigrationPlan>>;
14764
+ migrationSimulation: Awaited<ReturnType<typeof simulateMigration>>;
14765
+ recommendations: string[];
14766
+ debugInfo: {
14767
+ expectedDiscriminator: number[];
14768
+ actualDiscriminator: number[] | null;
14769
+ dataPreview: number[];
14770
+ programId?: string;
14771
+ };
14772
+ }
14773
+ interface BatchDiagnosticReport {
14774
+ summary: {
14775
+ total: number;
14776
+ valid: number;
14777
+ invalid: number;
14778
+ needsMigration: number;
14779
+ notExists: number;
14780
+ };
14781
+ reports: DiagnosticReport[];
14782
+ globalRecommendations: string[];
14783
+ timestamp: string;
14784
+ }
14785
+ /**
14786
+ * Runs comprehensive diagnostics on a single account
14787
+ */
14788
+ declare function runAccountDiagnostics(encodedAccount: EncodedAccount | MaybeEncodedAccount, address: string): Promise<DiagnosticReport>;
14789
+ /**
14790
+ * Runs diagnostics on multiple accounts
14791
+ */
14792
+ declare function runBatchDiagnostics(accounts: {
14793
+ address: string;
14794
+ encodedAccount: EncodedAccount | MaybeEncodedAccount;
14795
+ }[]): Promise<BatchDiagnosticReport>;
14796
+ /**
14797
+ * Fetches and diagnoses an account directly from the blockchain
14798
+ */
14799
+ declare function diagnoseAccountFromChain(rpc: Parameters<typeof fetchEncodedAccount>[0], address: Address, options?: {
14800
+ logToConsole?: boolean;
14801
+ }): Promise<DiagnosticReport>;
14802
+ /**
14803
+ * Fetches and diagnoses multiple accounts from the blockchain
14804
+ */
14805
+ declare function diagnoseBatchFromChain(rpc: Parameters<typeof fetchEncodedAccount>[0], addresses: Address[], options?: {
14806
+ logToConsole?: boolean;
14807
+ maxConcurrent?: number;
14808
+ }): Promise<BatchDiagnosticReport>;
14809
+ /**
14810
+ * Exports a diagnostic report as JSON
14811
+ */
14812
+ declare function exportDiagnosticReport(report: DiagnosticReport | BatchDiagnosticReport, filename?: string): string;
14813
+
14436
14814
  /**
14437
14815
  * Derive A2A session PDA
14438
14816
  * Pattern: ['a2a_session', creator]
@@ -14455,4 +14833,34 @@ declare function deriveA2AMessagePda(programId: Address$1, session: Address$1, s
14455
14833
  */
14456
14834
  declare const GHOSTSPEAK_PROGRAM_ID: _solana_addresses.Address<"AJVoWJ4JC1xJR9ufGBGuMgFpHMLouB29sFRTJRvEK1ZR">;
14457
14835
 
14458
- export { A2AInstructions, type A2AMessage, type A2AMessageArgs, type A2AMessageSentEvent, type A2AMessageSentEventArgs, type A2ASession, type A2ASessionArgs, type A2ASessionCreatedEvent, type A2ASessionCreatedEventArgs, type A2AStatus, type A2AStatusArgs, type A2AStatusUpdatedEvent, type A2AStatusUpdatedEventArgs, A2_A_MESSAGE_DISCRIMINATOR, A2_A_SESSION_DISCRIMINATOR, A2_A_STATUS_DISCRIMINATOR, ACCEPT_JOB_APPLICATION_DISCRIMINATOR, ACTIVATE_AGENT_DISCRIMINATOR, ADD_TOP_AGENT_DISCRIMINATOR, AGENT_DISCRIMINATOR, AGENT_INCENTIVES_DISCRIMINATOR, AGENT_TREE_CONFIG_DISCRIMINATOR, AGENT_VERIFICATION_DISCRIMINATOR, ANALYTICS_DASHBOARD_DISCRIMINATOR, APPLY_TO_JOB_DISCRIMINATOR, APPROVE_EXTENSION_DISCRIMINATOR, ARBITRATOR_REGISTRY_DISCRIMINATOR, AUCTION_MARKETPLACE_DISCRIMINATOR, AUDIT_TRAIL_DISCRIMINATOR, type AcceptJobApplicationAsyncInput, type AcceptJobApplicationInput, type AcceptJobApplicationInstruction, type AcceptJobApplicationInstructionData, type AcceptJobApplicationInstructionDataArgs, type AccessAuditConfig, type AccessAuditConfigArgs, type AccessPolicy, type AccessPolicyArgs, type AccountLockoutPolicies, type AccountLockoutPoliciesArgs, type Action, type ActionArgs, type ActionExport, type ActionExportArgs, type ActivateAgentAsyncInput, type ActivateAgentInput, type ActivateAgentInstruction, type ActivateAgentInstructionData, type ActivateAgentInstructionDataArgs, type ActivationRequirement, type ActivationRequirementArgs, ActivationRequirementType, type ActivationRequirementTypeArgs, type AddTopAgentInput, type AddTopAgentInstruction, type AddTopAgentInstructionData, type AddTopAgentInstructionDataArgs, type Agent, type AgentAccount, type AgentArgs, type AgentIncentives, type AgentIncentivesArgs, AgentInstructions, type AgentListedForResaleEvent, type AgentListedForResaleEventArgs, type AgentRegisteredEvent, type AgentRegisteredEventArgs, type AgentRegistrationData, type AgentReplicatedEvent, type AgentReplicatedEventArgs, type AgentServiceUpdatedEvent, type AgentServiceUpdatedEventArgs, type AgentStatusChangedEvent, type AgentStatusChangedEventArgs, type AgentTreeConfig, type AgentTreeConfigArgs, type AgentUpdatedEvent, type AgentUpdatedEventArgs, type AgentVerification, type AgentVerificationArgs, type AgentVerificationData, type AgentVerificationDataArgs, type AgentWithAddress, type AgingPolicy, type AgingPolicyArgs, type AnalyticsDashboard, type AnalyticsDashboardArgs, type AnalyticsDashboardCreatedEvent, type AnalyticsDashboardCreatedEventArgs, type AnalyticsDashboardUpdatedEvent, type AnalyticsDashboardUpdatedEventArgs, AnalyticsInstructions, ApplicationStatus, type ApplicationStatusArgs, type ApplyToJobAsyncInput, type ApplyToJobInput, type ApplyToJobInstruction, type ApplyToJobInstructionData, type ApplyToJobInstructionDataArgs, type ApprovalLevel, type ApprovalLevelArgs, type ApproveExtensionInput, type ApproveExtensionInstruction, type ApproveExtensionInstructionData, type ApproveExtensionInstructionDataArgs, type ArbitratorRegistry, type ArbitratorRegistryArgs, type AuctionBid, type AuctionBidArgs, type AuctionBidPlacedEvent, type AuctionBidPlacedEventArgs, type AuctionFailedEvent, type AuctionFailedEventArgs, type AuctionFinalizedEvent, type AuctionFinalizedEventArgs, AuctionInstructions, type AuctionMarketplace, type AuctionMarketplaceArgs, AuctionStatus, type AuctionStatusArgs, AuctionType, type AuctionTypeArgs, AuditAction, type AuditActionArgs, type AuditConfig, type AuditConfigArgs, type AuditContext, type AuditContextArgs, type AuditContextExport, type AuditContextExportArgs, type AuditEntry, type AuditEntryArgs, type AuditTrail, type AuditTrailArgs, type AuditTrailInitializedEvent, type AuditTrailInitializedEventArgs, AuthenticationLevel, type AuthenticationLevelArgs, AuthenticationMethod, type AuthenticationMethodArgs, type AuthenticationPolicies, type AuthenticationPoliciesArgs, type AuthenticationStrength, type AuthenticationStrengthArgs, type AuthorizationPolicies, type AuthorizationPoliciesArgs, BULK_DEAL_DISCRIMINATOR, BackupFrequency, type BackupFrequencyArgs, type BiometricPolicies, type BiometricPoliciesArgs, type BiometricProtection, type BiometricProtectionArgs, type BiometricQuality, type BiometricQualityArgs, type BiometricQualityExport, type BiometricQualityExportArgs, BiometricStorageMethod, type BiometricStorageMethodArgs, BiometricType, type BiometricTypeArgs, type BulkDeal, type BulkDealArgs, type BulkDealBatchExecutedEvent, type BulkDealBatchExecutedEventArgs, type BulkDealCreatedEvent, type BulkDealCreatedEventArgs, BulkDealsInstructions, CHANNEL_DISCRIMINATOR, COMPLIANCE_REPORT_DISCRIMINATOR, CREATE_A2A_SESSION_DISCRIMINATOR, CREATE_ANALYTICS_DASHBOARD_DISCRIMINATOR, CREATE_BULK_DEAL_DISCRIMINATOR, CREATE_CHANNEL_DISCRIMINATOR, CREATE_DYNAMIC_PRICING_ENGINE_DISCRIMINATOR, CREATE_INCENTIVE_PROGRAM_DISCRIMINATOR, CREATE_JOB_POSTING_DISCRIMINATOR, CREATE_MARKET_ANALYTICS_DISCRIMINATOR, CREATE_MULTISIG_DISCRIMINATOR, CREATE_REPLICATION_TEMPLATE_DISCRIMINATOR, CREATE_ROYALTY_STREAM_DISCRIMINATOR, CREATE_SERVICE_AUCTION_DISCRIMINATOR, CREATE_SERVICE_LISTING_DISCRIMINATOR, CREATE_WORK_ORDER_DISCRIMINATOR, type Channel, type ChannelArgs, type ChannelCreatedEvent, type ChannelCreatedEventArgs, ChannelType, type ChannelTypeArgs, type Commitment$1 as Commitment, type ComplianceFlags, type ComplianceFlagsArgs, ComplianceInstructions, type ComplianceMetrics$1 as ComplianceMetrics, type ComplianceMetricsArgs, type CompliancePolicies, type CompliancePoliciesArgs, type ComplianceReport, type ComplianceReportArgs, type ComplianceReportGeneratedEvent, type ComplianceReportGeneratedEventArgs, type ComplianceStatus, type ComplianceStatusArgs, type ComplianceStatusExport, type ComplianceStatusExportArgs, type CompressedAgentCreatedEvent, type CompressedAgentCreatedEventArgs, ConditionType, type ConditionTypeArgs, type ConstraintCondition, type ConstraintConditionArgs, ConstraintOperator, type ConstraintOperatorArgs, ContractStatus, type ContractStatusArgs, type CounterOfferMadeEvent, type CounterOfferMadeEventArgs, type CreateA2ASessionParams$1 as CreateA2ASessionParams, type CreateA2aSessionAsyncInput, type CreateA2aSessionInput, type CreateA2aSessionInstruction, type CreateA2aSessionInstructionData, type CreateA2aSessionInstructionDataArgs, type CreateAnalyticsDashboardAsyncInput, type CreateAnalyticsDashboardInput, type CreateAnalyticsDashboardInstruction, type CreateAnalyticsDashboardInstructionData, type CreateAnalyticsDashboardInstructionDataArgs, type CreateBulkDealAsyncInput, type CreateBulkDealInput, type CreateBulkDealInstruction, type CreateBulkDealInstructionData, type CreateBulkDealInstructionDataArgs, type CreateChannelInput, type CreateChannelInstruction, type CreateChannelInstructionData, type CreateChannelInstructionDataArgs, type CreateDynamicPricingEngineAsyncInput, type CreateDynamicPricingEngineInput, type CreateDynamicPricingEngineInstruction, type CreateDynamicPricingEngineInstructionData, type CreateDynamicPricingEngineInstructionDataArgs, type CreateEscrowParams$1 as CreateEscrowParams, type CreateIncentiveProgramAsyncInput, type CreateIncentiveProgramInput, type CreateIncentiveProgramInstruction, type CreateIncentiveProgramInstructionData, type CreateIncentiveProgramInstructionDataArgs, type CreateJobPostingAsyncInput, type CreateJobPostingInput, type CreateJobPostingInstruction, type CreateJobPostingInstructionData, type CreateJobPostingInstructionDataArgs, type CreateJobPostingParams$1 as CreateJobPostingParams, type CreateMarketAnalyticsAsyncInput, type CreateMarketAnalyticsInput, type CreateMarketAnalyticsInstruction, type CreateMarketAnalyticsInstructionData, type CreateMarketAnalyticsInstructionDataArgs, type CreateMultisigAsyncInput, type CreateMultisigInput, type CreateMultisigInstruction, type CreateMultisigInstructionData, type CreateMultisigInstructionDataArgs, type CreateReplicationTemplateAsyncInput, type CreateReplicationTemplateInput, type CreateReplicationTemplateInstruction, type CreateReplicationTemplateInstructionData, type CreateReplicationTemplateInstructionDataArgs, type CreateRoyaltyStreamAsyncInput, type CreateRoyaltyStreamInput, type CreateRoyaltyStreamInstruction, type CreateRoyaltyStreamInstructionData, type CreateRoyaltyStreamInstructionDataArgs, type CreateServiceAuctionAsyncInput, type CreateServiceAuctionInput, type CreateServiceAuctionInstruction, type CreateServiceAuctionInstructionData, type CreateServiceAuctionInstructionDataArgs, type CreateServiceListingAsyncInput, type CreateServiceListingInput, type CreateServiceListingInstruction, type CreateServiceListingInstructionData, type CreateServiceListingInstructionDataArgs, type CreateServiceListingParams$1 as CreateServiceListingParams, type CreateWorkOrderInput, type CreateWorkOrderInstruction, type CreateWorkOrderInstructionData, type CreateWorkOrderInstructionDataArgs, DEACTIVATE_AGENT_DISCRIMINATOR, DISPUTE_CASE_DISCRIMINATOR, DISTRIBUTE_INCENTIVES_DISCRIMINATOR, DYNAMIC_PRICING_ENGINE_DISCRIMINATOR, DataAccessLevel, type DataAccessLevelArgs, type DataProtectionPolicies, type DataProtectionPoliciesArgs, type DeactivateAgentAsyncInput, type DeactivateAgentInput, type DeactivateAgentInstruction, type DeactivateAgentInstructionData, type DeactivateAgentInstructionDataArgs, DealType, type DealTypeArgs, DegradationHandling, type DegradationHandlingArgs, type DelegationInfo, type DelegationInfoArgs, type DelegationScope, type DelegationScopeArgs, Deliverable, type DeliverableArgs, type DisputeCase, type DisputeCaseArgs, type DisputeEvidence$1 as DisputeEvidence, type DisputeEvidenceArgs, type DisputeEvidenceSubmittedEvent, type DisputeEvidenceSubmittedEventArgs, type DisputeFiledEvent, type DisputeFiledEventArgs, type DisputeFilter, DisputeInstructions, type DisputeResolvedEvent, type DisputeResolvedEventArgs, DisputeStatus, type DisputeStatusArgs, type DisputeSummary, type DistributeIncentivesInput, type DistributeIncentivesInstruction, type DistributeIncentivesInstructionData, type DistributeIncentivesInstructionDataArgs, type DynamicPricingConfig, type DynamicPricingConfigArgs, type DynamicPricingConfigExport, type DynamicPricingConfigExportArgs, type DynamicPricingEngine, type DynamicPricingEngineArgs, type DynamicPricingEngineCreatedEvent, type DynamicPricingEngineCreatedEventArgs, type DynamicPricingUpdatedEvent, type DynamicPricingUpdatedEventArgs, EXECUTE_BULK_DEAL_BATCH_DISCRIMINATOR, EXPORT_ACTION_DISCRIMINATOR, EXPORT_AUDIT_CONTEXT_DISCRIMINATOR, EXPORT_BIOMETRIC_QUALITY_DISCRIMINATOR, EXPORT_COMPLIANCE_STATUS_DISCRIMINATOR, EXPORT_DYNAMIC_PRICING_CONFIG_DISCRIMINATOR, EXPORT_MULTISIG_CONFIG_DISCRIMINATOR, EXPORT_REPORT_ENTRY_DISCRIMINATOR, EXPORT_RESOURCE_CONSTRAINTS_DISCRIMINATOR, EXPORT_RULE_CONDITION_DISCRIMINATOR, EXTENSION_DISCRIMINATOR, type EmergencyAccessConfig, type EmergencyAccessConfigArgs, type EmergencyConfig, type EmergencyConfigArgs, EnforcementLevel, type EnforcementLevelArgs, type EscrowAccount, EscrowInstructions, EscrowStatus, type ExecuteBulkDealBatchAsyncInput, type ExecuteBulkDealBatchInput, type ExecuteBulkDealBatchInstruction, type ExecuteBulkDealBatchInstructionData, type ExecuteBulkDealBatchInstructionDataArgs, type ExecutionCondition, type ExecutionConditionArgs, type ExecutionParams, type ExecutionParamsArgs, type ExportActionInput, type ExportActionInstruction, type ExportActionInstructionData, type ExportActionInstructionDataArgs, type ExportAuditContextInput, type ExportAuditContextInstruction, type ExportAuditContextInstructionData, type ExportAuditContextInstructionDataArgs, type ExportBiometricQualityInput, type ExportBiometricQualityInstruction, type ExportBiometricQualityInstructionData, type ExportBiometricQualityInstructionDataArgs, type ExportComplianceStatusInput, type ExportComplianceStatusInstruction, type ExportComplianceStatusInstructionData, type ExportComplianceStatusInstructionDataArgs, type ExportDynamicPricingConfigInput, type ExportDynamicPricingConfigInstruction, type ExportDynamicPricingConfigInstructionData, type ExportDynamicPricingConfigInstructionDataArgs, type ExportMultisigConfigInput, type ExportMultisigConfigInstruction, type ExportMultisigConfigInstructionData, type ExportMultisigConfigInstructionDataArgs, type ExportReportEntryInput, type ExportReportEntryInstruction, type ExportReportEntryInstructionData, type ExportReportEntryInstructionDataArgs, type ExportResourceConstraintsInput, type ExportResourceConstraintsInstruction, type ExportResourceConstraintsInstructionData, type ExportResourceConstraintsInstructionDataArgs, type ExportRuleConditionInput, type ExportRuleConditionInstruction, type ExportRuleConditionInstructionData, type ExportRuleConditionInstructionDataArgs, type ExtendedRpcApi, type Extension, type ExtensionApprovedEvent, type ExtensionApprovedEventArgs, type ExtensionArgs, type ExtensionMetadata, type ExtensionMetadataArgs, type ExtensionRegisteredEvent, type ExtensionRegisteredEventArgs, ExtensionStatus, type ExtensionStatusArgs, ExtensionType, type ExtensionTypeArgs, FILE_DISPUTE_DISCRIMINATOR, FINALIZE_AUCTION_DISCRIMINATOR, type FileDisputeAsyncInput, type FileDisputeInput, type FileDisputeInstruction, type FileDisputeInstructionData, type FileDisputeInstructionDataArgs, type FinalizeAuctionInput, type FinalizeAuctionInstruction, type FinalizeAuctionInstructionData, type FinalizeAuctionInstructionDataArgs, GENERATE_COMPLIANCE_REPORT_DISCRIMINATOR, GHOSTSPEAK_MARKETPLACE_ERROR__ACCESS_DENIED, GHOSTSPEAK_MARKETPLACE_ERROR__ACCOUNT_ALREADY_INITIALIZED, GHOSTSPEAK_MARKETPLACE_ERROR__ACCOUNT_NOT_INITIALIZED, GHOSTSPEAK_MARKETPLACE_ERROR__AGENT_ALREADY_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__AGENT_ALREADY_REGISTERED, GHOSTSPEAK_MARKETPLACE_ERROR__AGENT_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__AGENT_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__ALREADY_VOTED, GHOSTSPEAK_MARKETPLACE_ERROR__ANALYTICS_NOT_ENABLED, GHOSTSPEAK_MARKETPLACE_ERROR__APPLICATION_ALREADY_PROCESSED, GHOSTSPEAK_MARKETPLACE_ERROR__APPLICATION_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__ARITHMETIC_OVERFLOW, GHOSTSPEAK_MARKETPLACE_ERROR__ARITHMETIC_UNDERFLOW, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_ALREADY_ENDED, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_DURATION_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_DURATION_TOO_SHORT, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_ENDED, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_NOT_ENDED, GHOSTSPEAK_MARKETPLACE_ERROR__BID_INCREMENT_TOO_LOW, GHOSTSPEAK_MARKETPLACE_ERROR__BID_TOO_LOW, GHOSTSPEAK_MARKETPLACE_ERROR__BULK_DEAL_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__CANNOT_CANCEL_AUCTION_WITH_BIDS, GHOSTSPEAK_MARKETPLACE_ERROR__CAPABILITY_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__CHANNEL_ALREADY_EXISTS, GHOSTSPEAK_MARKETPLACE_ERROR__CHANNEL_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__COMPLETION_PROOF_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__COMPLIANCE_CHECK_FAILED, GHOSTSPEAK_MARKETPLACE_ERROR__COMPUTE_BUDGET_EXCEEDED, GHOSTSPEAK_MARKETPLACE_ERROR__DATA_CORRUPTION_DETECTED, GHOSTSPEAK_MARKETPLACE_ERROR__DEADLINE_PASSED, GHOSTSPEAK_MARKETPLACE_ERROR__DEAL_ALREADY_FINALIZED, GHOSTSPEAK_MARKETPLACE_ERROR__DEAL_EXPIRED, GHOSTSPEAK_MARKETPLACE_ERROR__DEAL_FULL, GHOSTSPEAK_MARKETPLACE_ERROR__DEAL_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__DESCRIPTION_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_ALREADY_RESOLVED, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_CASE_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_DETAILS_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_REASON_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_WINDOW_EXPIRED, GHOSTSPEAK_MARKETPLACE_ERROR__DIVISION_BY_ZERO, GHOSTSPEAK_MARKETPLACE_ERROR__ESCROW_ALREADY_RELEASED, GHOSTSPEAK_MARKETPLACE_ERROR__ESCROW_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__EVIDENCE_WINDOW_EXPIRED, GHOSTSPEAK_MARKETPLACE_ERROR__EXTENSION_ALREADY_ENABLED, GHOSTSPEAK_MARKETPLACE_ERROR__EXTENSION_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__FEATURE_NOT_ENABLED, GHOSTSPEAK_MARKETPLACE_ERROR__GOVERNANCE_PROPOSAL_INVALID, GHOSTSPEAK_MARKETPLACE_ERROR__INCENTIVE_POOL_EXHAUSTED, GHOSTSPEAK_MARKETPLACE_ERROR__INPUT_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__INSUFFICIENT_BALANCE, GHOSTSPEAK_MARKETPLACE_ERROR__INSUFFICIENT_FUNDS, GHOSTSPEAK_MARKETPLACE_ERROR__INSUFFICIENT_PARTICIPANTS, GHOSTSPEAK_MARKETPLACE_ERROR__INSUFFICIENT_VOTING_POWER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_A2_A_PROTOCOL_MESSAGE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_ACCOUNT_OWNER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_AGENT_OWNER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_AGENT_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_AMOUNT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_APPLICATION_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_BID, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_CHANNEL_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_CONTRACT_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DEADLINE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DEAL_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DELIVERY_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DISCOUNT_PERCENTAGE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DISPUTE_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_ESCROW_AMOUNT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_ESCROW_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_EXPIRATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_EXTENSION_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_EXTENSION_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_GENOME_HASH, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_INCENTIVE_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_INPUT_FORMAT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_INPUT_LENGTH, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_JOB_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_MAX_PARTICIPANTS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_MESSAGE_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_METADATA_URI, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_METRICS_DATA, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_MIN_PARTICIPANTS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_NEGOTIATION_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_OFFER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_OFFER_AMOUNT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PARAMETER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PARTICIPANT_COUNT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PAYMENT_AMOUNT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PERCENTAGE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PERIOD, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PRICE_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PRICE_RANGE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_RATING, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_REPLICATION_CONFIG, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_REPORT_DATA, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_REPORT_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_REPUTATION_SCORE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_ROYALTY_PERCENTAGE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_SERVICE_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_SERVICE_ENDPOINT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_SERVICE_TYPE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_STARTING_PRICE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_STATE_TRANSITION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_STATUS_TRANSITION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_TASK_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_TASK_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_TRANSACTION_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_VALUE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_VOLUME, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_VOLUME_TIER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_WORK_ORDER_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__IPFS_HASH_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__JOB_ALREADY_FILLED, GHOSTSPEAK_MARKETPLACE_ERROR__JOB_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__LISTING_ALREADY_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__LISTING_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__MAINTENANCE_MODE_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__MAXIMUM_RETRIES_EXCEEDED, GHOSTSPEAK_MARKETPLACE_ERROR__MESSAGE_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__MESSAGE_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__METADATA_URI_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__METRICS_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__NAME_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__NEGOTIATION_EXPIRED, GHOSTSPEAK_MARKETPLACE_ERROR__NEGOTIATION_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__NO_DELIVERABLES, GHOSTSPEAK_MARKETPLACE_ERROR__NO_PARTICIPANTS, GHOSTSPEAK_MARKETPLACE_ERROR__OPERATION_NOT_SUPPORTED, GHOSTSPEAK_MARKETPLACE_ERROR__OPERATION_TIMED_OUT, GHOSTSPEAK_MARKETPLACE_ERROR__OVERLAPPING_VOLUME_TIERS, GHOSTSPEAK_MARKETPLACE_ERROR__PAYMENT_ALREADY_PROCESSED, GHOSTSPEAK_MARKETPLACE_ERROR__PRICE_MODEL_NOT_SUPPORTED, GHOSTSPEAK_MARKETPLACE_ERROR__PROTOCOL_VERSION_MISMATCH, GHOSTSPEAK_MARKETPLACE_ERROR__RATE_LIMIT_EXCEEDED, GHOSTSPEAK_MARKETPLACE_ERROR__REPLICATION_NOT_ALLOWED, GHOSTSPEAK_MARKETPLACE_ERROR__REPORT_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__REQUIREMENT_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__RESOLUTION_NOTES_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__RESOURCE_LOCKED, GHOSTSPEAK_MARKETPLACE_ERROR__ROYALTY_CONFIGURATION_INVALID, GHOSTSPEAK_MARKETPLACE_ERROR__SERVICE_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__SERVICE_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__SIGNATURE_VERIFICATION_FAILED, GHOSTSPEAK_MARKETPLACE_ERROR__STRING_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__TASK_ALREADY_COMPLETED, GHOSTSPEAK_MARKETPLACE_ERROR__TASK_DEADLINE_EXCEEDED, GHOSTSPEAK_MARKETPLACE_ERROR__TASK_ID_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__TASK_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__TERM_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__TITLE_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__TOKEN_TRANSFER_FAILED, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_AUDIT_ENTRIES, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_BIDS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_CAPABILITIES, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_COUNTER_OFFERS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_DELIVERABLES, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_EVIDENCE_ITEMS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_EVIDENCE_SUBMISSIONS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_REQUIREMENTS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_TERMS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_TOP_AGENTS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_VOLUME_TIERS, GHOSTSPEAK_MARKETPLACE_ERROR__UNAUTHORIZED_ACCESS, GHOSTSPEAK_MARKETPLACE_ERROR__UNAUTHORIZED_ARBITRATOR, GHOSTSPEAK_MARKETPLACE_ERROR__UPDATE_FREQUENCY_TOO_HIGH, GHOSTSPEAK_MARKETPLACE_ERROR__VALUE_BELOW_MINIMUM, GHOSTSPEAK_MARKETPLACE_ERROR__VALUE_EXCEEDS_MAXIMUM, GHOSTSPEAK_MARKETPLACE_ERROR__VOTING_PERIOD_ENDED, GHOSTSPEAK_MARKETPLACE_ERROR__WORK_ORDER_ALREADY_EXISTS, GHOSTSPEAK_MARKETPLACE_ERROR__WORK_ORDER_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS, GHOSTSPEAK_PROGRAM_ID, GOVERNANCE_PROPOSAL_DISCRIMINATOR, type GenerateComplianceReportAsyncInput, type GenerateComplianceReportInput, type GenerateComplianceReportInstruction, type GenerateComplianceReportInstructionData, type GenerateComplianceReportInstructionDataArgs, type GeographicRegion, type GeographicRegionArgs, GhostSpeakClient, type GhostSpeakConfig, GhostSpeakError, GhostspeakMarketplaceAccount, type GhostspeakMarketplaceError, GhostspeakMarketplaceInstruction, GovernanceInstructions, type GovernanceProposal, type GovernanceProposalArgs, type GovernanceProposalCreatedEvent, type GovernanceProposalCreatedEventArgs, type HierarchicalBoundary, type HierarchicalBoundaryArgs, INCENTIVE_PROGRAM_DISCRIMINATOR, INITIALIZE_AUDIT_TRAIL_DISCRIMINATOR, INITIALIZE_GOVERNANCE_PROPOSAL_DISCRIMINATOR, INITIALIZE_RBAC_CONFIG_DISCRIMINATOR, INITIATE_NEGOTIATION_DISCRIMINATOR, type IncentiveConfig, type IncentiveConfigArgs, type IncentiveDistributedEvent, type IncentiveDistributedEventArgs, type IncentiveProgram, type IncentiveProgramArgs, type IncentiveProgramCreatedEvent, type IncentiveProgramCreatedEventArgs, type IncidentResponsePolicies, type IncidentResponsePoliciesArgs, type InitializeAuditTrailAsyncInput, type InitializeAuditTrailInput, type InitializeAuditTrailInstruction, type InitializeAuditTrailInstructionData, type InitializeAuditTrailInstructionDataArgs, type InitializeGovernanceProposalAsyncInput, type InitializeGovernanceProposalInput, type InitializeGovernanceProposalInstruction, type InitializeGovernanceProposalInstructionData, type InitializeGovernanceProposalInstructionDataArgs, type InitializeRbacConfigAsyncInput, type InitializeRbacConfigInput, type InitializeRbacConfigInstruction, type InitializeRbacConfigInstructionData, type InitializeRbacConfigInstructionDataArgs, type InitiateNegotiationAsyncInput, type InitiateNegotiationInput, type InitiateNegotiationInstruction, type InitiateNegotiationInstructionData, type InitiateNegotiationInstructionDataArgs, JOB_APPLICATION_DISCRIMINATOR, JOB_CONTRACT_DISCRIMINATOR, JOB_POSTING_DISCRIMINATOR, type JobApplication, type JobApplicationAcceptedEvent, type JobApplicationAcceptedEventArgs, type JobApplicationArgs, type JobApplicationSubmittedEvent, type JobApplicationSubmittedEventArgs, type JobContract, type JobContractArgs, type JobPosting, type JobPostingArgs, type JobPostingCreatedEvent, type JobPostingCreatedEventArgs, type KeyPairSigner, LIST_AGENT_FOR_RESALE_DISCRIMINATOR, type LatitudeRange, type LatitudeRangeArgs, type ListAgentForResaleAsyncInput, type ListAgentForResaleInput, type ListAgentForResaleInstruction, type ListAgentForResaleInstructionData, type ListAgentForResaleInstructionDataArgs, type LocationConstraints, type LocationConstraintsArgs, type LongitudeRange, type LongitudeRangeArgs, MAKE_COUNTER_OFFER_DISCRIMINATOR, MANAGE_AGENT_STATUS_DISCRIMINATOR, MARKET_ANALYTICS_DISCRIMINATOR, MESSAGE_DISCRIMINATOR, MULTISIG_DISCRIMINATOR, type MakeCounterOfferInput, type MakeCounterOfferInstruction, type MakeCounterOfferInstructionData, type MakeCounterOfferInstructionDataArgs, type ManageAgentStatusAsyncInput, type ManageAgentStatusInput, type ManageAgentStatusInstruction, type ManageAgentStatusInstructionData, type ManageAgentStatusInstructionDataArgs, type MarketAnalytics, type MarketAnalyticsArgs, type MarketAnalyticsCreatedEvent, type MarketAnalyticsCreatedEventArgs, type MarketAnalyticsUpdatedEvent, type MarketAnalyticsUpdatedEventArgs, MarketplaceInstructions, type Message, type MessageArgs, type MessageSentEvent, type MessageSentEventArgs, MessageType, type MessageTypeArgs, type Multisig, type MultisigArgs, type MultisigConfig, type MultisigConfigArgs, type MultisigConfigExport, type MultisigConfigExportArgs, type MultisigCreatedEvent, type MultisigCreatedEventArgs, type MultisigSignature, type MultisigSignatureArgs, type MultisigSummary, NEGOTIATION_CHATBOT_DISCRIMINATOR, type NegotiationChatbot, type NegotiationChatbotArgs, type NegotiationInitiatedEvent, type NegotiationInitiatedEventArgs, NegotiationStatus, type NegotiationStatusArgs, type NetworkSecurityPolicies, type NetworkSecurityPoliciesArgs, NotificationMethod, type NotificationMethodArgs, NotificationPriority, type NotificationPriorityArgs, type NotificationRequirement, type NotificationRequirementArgs, type NotificationTarget, type NotificationTargetArgs, NotificationTargetType, type NotificationTargetTypeArgs, NotificationTiming, type NotificationTimingArgs, PAYMENT_DISCRIMINATOR, PLACE_AUCTION_BID_DISCRIMINATOR, PROCESS_PAYMENT_DISCRIMINATOR, PURCHASE_SERVICE_DISCRIMINATOR, type ParsedAcceptJobApplicationInstruction, type ParsedActivateAgentInstruction, type ParsedAddTopAgentInstruction, type ParsedApplyToJobInstruction, type ParsedApproveExtensionInstruction, type ParsedCreateA2aSessionInstruction, type ParsedCreateAnalyticsDashboardInstruction, type ParsedCreateBulkDealInstruction, type ParsedCreateChannelInstruction, type ParsedCreateDynamicPricingEngineInstruction, type ParsedCreateIncentiveProgramInstruction, type ParsedCreateJobPostingInstruction, type ParsedCreateMarketAnalyticsInstruction, type ParsedCreateMultisigInstruction, type ParsedCreateReplicationTemplateInstruction, type ParsedCreateRoyaltyStreamInstruction, type ParsedCreateServiceAuctionInstruction, type ParsedCreateServiceListingInstruction, type ParsedCreateWorkOrderInstruction, type ParsedDeactivateAgentInstruction, type ParsedDistributeIncentivesInstruction, type ParsedExecuteBulkDealBatchInstruction, type ParsedExportActionInstruction, type ParsedExportAuditContextInstruction, type ParsedExportBiometricQualityInstruction, type ParsedExportComplianceStatusInstruction, type ParsedExportDynamicPricingConfigInstruction, type ParsedExportMultisigConfigInstruction, type ParsedExportReportEntryInstruction, type ParsedExportResourceConstraintsInstruction, type ParsedExportRuleConditionInstruction, type ParsedFileDisputeInstruction, type ParsedFinalizeAuctionInstruction, type ParsedGenerateComplianceReportInstruction, type ParsedGhostspeakMarketplaceInstruction, type ParsedInitializeAuditTrailInstruction, type ParsedInitializeGovernanceProposalInstruction, type ParsedInitializeRbacConfigInstruction, type ParsedInitiateNegotiationInstruction, type ParsedListAgentForResaleInstruction, type ParsedMakeCounterOfferInstruction, type ParsedManageAgentStatusInstruction, type ParsedPlaceAuctionBidInstruction, type ParsedProcessPaymentInstruction, type ParsedPurchaseServiceInstruction, type ParsedRegisterAgentCompressedInstruction, type ParsedRegisterAgentInstruction, type ParsedRegisterExtensionInstruction, type ParsedReplicateAgentInstruction, type ParsedResolveDisputeInstruction, type ParsedSendA2aMessageInstruction, type ParsedSendMessageInstruction, type ParsedSubmitDisputeEvidenceInstruction, type ParsedSubmitWorkDeliveryInstruction, type ParsedUpdateA2aStatusInstruction, type ParsedUpdateAgentInstruction, type ParsedUpdateAgentReputationInstruction, type ParsedUpdateAgentServiceInstruction, type ParsedUpdateAnalyticsDashboardInstruction, type ParsedUpdateDynamicPricingInstruction, type ParsedUpdateMarketAnalyticsInstruction, type ParsedVerifyAgentInstruction, type PasswordPolicies, type PasswordPoliciesArgs, type Payment, type PaymentArgs, type PaymentProcessedEvent, type PaymentProcessedEventArgs, type PendingTransaction, type PendingTransactionArgs, type Permission, type PermissionArgs, type PermissionConstraint, type PermissionConstraintArgs, PermissionConstraintType, type PermissionConstraintTypeArgs, type PermissionMetadata, type PermissionMetadataArgs, type PermissionScope, type PermissionScopeArgs, type PlaceAuctionBidInput, type PlaceAuctionBidInstruction, type PlaceAuctionBidInstructionData, type PlaceAuctionBidInstructionDataArgs, type PolicyMetadata, type PolicyMetadataArgs, type PolicyRule, type PolicyRuleArgs, type PolicyScope, type PolicyScopeArgs, PolicyStatus, type PolicyStatusArgs, PolicyType, type PolicyTypeArgs, PricingAlgorithm, type PricingAlgorithmArgs, PricingModel, type PricingModelArgs, type ProcessPaymentAsyncInput, type ProcessPaymentInput, type ProcessPaymentInstruction, type ProcessPaymentInstructionData, type ProcessPaymentInstructionDataArgs, type ProposalAccount, type ProposalAccountArgs, type ProposalFilter, type ProposalInstruction, type ProposalInstructionArgs, type ProposalMetadata, type ProposalMetadataArgs, ProposalStatus, type ProposalStatusArgs, type ProposalSummary, ProposalType, type ProposalTypeArgs, type PurchaseServiceAsyncInput, type PurchaseServiceInput, type PurchaseServiceInstruction, type PurchaseServiceInstructionData, type PurchaseServiceInstructionDataArgs, PurchaseStatus, type PurchaseStatusArgs, QuorumMethod, type QuorumMethodArgs, type QuorumRequirements, type QuorumRequirementsArgs, RBAC_CONFIG_DISCRIMINATOR, REGISTER_AGENT_COMPRESSED_DISCRIMINATOR, REGISTER_AGENT_DISCRIMINATOR, REGISTER_EXTENSION_DISCRIMINATOR, REPLICATE_AGENT_DISCRIMINATOR, REPLICATION_RECORD_DISCRIMINATOR, REPLICATION_TEMPLATE_DISCRIMINATOR, RESALE_MARKET_DISCRIMINATOR, RESOLVE_DISPUTE_DISCRIMINATOR, ROYALTY_STREAM_DISCRIMINATOR, type RbacConfig, type RbacConfigArgs, type RbacConfigInitializedEvent, type RbacConfigInitializedEventArgs, type RegisterAgentAsyncInput, type RegisterAgentCompressedAsyncInput, type RegisterAgentCompressedInput, type RegisterAgentCompressedInstruction, type RegisterAgentCompressedInstructionData, type RegisterAgentCompressedInstructionDataArgs, type RegisterAgentInput, type RegisterAgentInstruction, type RegisterAgentInstructionData, type RegisterAgentInstructionDataArgs, type RegisterAgentParams, type RegisterExtensionAsyncInput, type RegisterExtensionInput, type RegisterExtensionInstruction, type RegisterExtensionInstructionData, type RegisterExtensionInstructionDataArgs, type ReplicateAgentAsyncInput, type ReplicateAgentInput, type ReplicateAgentInstruction, type ReplicateAgentInstructionData, type ReplicateAgentInstructionDataArgs, type ReplicationRecord, type ReplicationRecordArgs, type ReplicationTemplate, type ReplicationTemplateArgs, type ReplicationTemplateCreatedEvent, type ReplicationTemplateCreatedEventArgs, type ReportData, type ReportDataArgs, type ReportEntry, type ReportEntryArgs, type ReportEntryExport, type ReportEntryExportArgs, ReportStatus, type ReportStatusArgs, type ReportSummary, type ReportSummaryArgs, ReportType, type ReportTypeArgs, ReportingFrequency, type ReportingFrequencyArgs, type ResaleMarket, type ResaleMarketArgs, type ResolveDisputeAsyncInput, type ResolveDisputeInput, type ResolveDisputeInstruction, type ResolveDisputeInstructionData, type ResolveDisputeInstructionDataArgs, type ResourceConstraints, type ResourceConstraintsArgs, type ResourceConstraintsExport, type ResourceConstraintsExportArgs, type RetryConfig, type ReviewSchedule, type ReviewScheduleArgs, type RiskAcceptance, type RiskAcceptanceArgs, type RiskAssessment, type RiskAssessmentArgs, RiskCategory, type RiskCategoryArgs, type RiskFactor, type RiskFactorArgs, type RiskIndicator, type RiskIndicatorArgs, RiskLevel, type RiskLevelArgs, type Role, type RoleArgs, type RoleConstraints, type RoleConstraintsArgs, type RoleMetadata, type RoleMetadataArgs, RoleStatus, type RoleStatusArgs, RoleType, type RoleTypeArgs, type RoyaltyConfig, type RoyaltyConfigArgs, type RoyaltyStream, type RoyaltyStreamArgs, type RoyaltyStreamCreatedEvent, type RoyaltyStreamCreatedEventArgs, type RpcAccountInfo, type RpcAccountInfoResponse, type RpcApi, type RpcMultipleAccountsResponse, type RpcProgramAccount, type RpcProgramAccountsResponse, type RpcResponse, type RpcSubscriptionApi, type RuleCondition, type RuleConditionArgs, type RuleConditionExport, type RuleConditionExportArgs, RuleEffect, type RuleEffectArgs, SEND_A2A_MESSAGE_DISCRIMINATOR, SEND_MESSAGE_DISCRIMINATOR, SERVICE_LISTING_DISCRIMINATOR, SERVICE_PURCHASE_DISCRIMINATOR, SUBMIT_DISPUTE_EVIDENCE_DISCRIMINATOR, SUBMIT_WORK_DELIVERY_DISCRIMINATOR, type ScopeBoundaries, type ScopeBoundariesArgs, ScopeInheritance, type ScopeInheritanceArgs, ScopeType, type ScopeTypeArgs, SecurityEventType, type SecurityEventTypeArgs, type SecurityPolicies, type SecurityPoliciesArgs, type SendA2AMessageParams$1 as SendA2AMessageParams, type SendA2aMessageInput, type SendA2aMessageInstruction, type SendA2aMessageInstructionData, type SendA2aMessageInstructionDataArgs, type SendMessageInput, type SendMessageInstruction, type SendMessageInstructionData, type SendMessageInstructionDataArgs, type ServiceAuctionCreatedEvent, type ServiceAuctionCreatedEventArgs, type ServiceListing, type ServiceListingArgs, type ServiceListingCreatedEvent, type ServiceListingCreatedEventArgs, type ServiceListingData, type ServiceListingWithAddress, type ServicePurchase, type ServicePurchaseArgs, type ServicePurchasedEvent, type ServicePurchasedEventArgs, type SessionConstraints, type SessionConstraintsArgs, type SessionPolicies, type SessionPoliciesArgs, type SimulatedTransactionResponse, type SodConstraint, type SodConstraintArgs, SodConstraintType, type SodConstraintTypeArgs, type SolanaRpcClient, StepUpTrigger, type StepUpTriggerArgs, type SubmissionDetails, type SubmissionDetailsArgs, type SubmitDisputeEvidenceAsyncInput, type SubmitDisputeEvidenceInput, type SubmitDisputeEvidenceInstruction, type SubmitDisputeEvidenceInstructionData, type SubmitDisputeEvidenceInstructionDataArgs, type SubmitWorkDeliveryAsyncInput, type SubmitWorkDeliveryInput, type SubmitWorkDeliveryInstruction, type SubmitWorkDeliveryInstructionData, type SubmitWorkDeliveryInstructionDataArgs, type TimeConstraints, type TimeConstraintsArgs, type TimeLock, type TimeLockArgs, TimeLockType, type TimeLockTypeArgs, type TopAgentAddedEvent, type TopAgentAddedEventArgs, TransactionPriority, type TransactionPriorityArgs, type TransactionResponse, TransactionStatus, type TransactionStatusArgs, TransactionType, type TransactionTypeArgs, TrendDirection, type TrendDirectionArgs, UPDATE_A2A_STATUS_DISCRIMINATOR, UPDATE_AGENT_DISCRIMINATOR, UPDATE_AGENT_REPUTATION_DISCRIMINATOR, UPDATE_AGENT_SERVICE_DISCRIMINATOR, UPDATE_ANALYTICS_DASHBOARD_DISCRIMINATOR, UPDATE_DYNAMIC_PRICING_DISCRIMINATOR, UPDATE_MARKET_ANALYTICS_DISCRIMINATOR, USER_REGISTRY_DISCRIMINATOR, UnlockMethod, type UnlockMethodArgs, type UpdateA2aStatusAsyncInput, type UpdateA2aStatusInput, type UpdateA2aStatusInstruction, type UpdateA2aStatusInstructionData, type UpdateA2aStatusInstructionDataArgs, type UpdateAgentAsyncInput, type UpdateAgentInput, type UpdateAgentInstruction, type UpdateAgentInstructionData, type UpdateAgentInstructionDataArgs, type UpdateAgentReputationAsyncInput, type UpdateAgentReputationInput, type UpdateAgentReputationInstruction, type UpdateAgentReputationInstructionData, type UpdateAgentReputationInstructionDataArgs, type UpdateAgentServiceAsyncInput, type UpdateAgentServiceInput, type UpdateAgentServiceInstruction, type UpdateAgentServiceInstructionData, type UpdateAgentServiceInstructionDataArgs, type UpdateAnalyticsDashboardAsyncInput, type UpdateAnalyticsDashboardInput, type UpdateAnalyticsDashboardInstruction, type UpdateAnalyticsDashboardInstructionData, type UpdateAnalyticsDashboardInstructionDataArgs, type UpdateDynamicPricingInput, type UpdateDynamicPricingInstruction, type UpdateDynamicPricingInstructionData, type UpdateDynamicPricingInstructionDataArgs, type UpdateMarketAnalyticsInput, type UpdateMarketAnalyticsInstruction, type UpdateMarketAnalyticsInstructionData, type UpdateMarketAnalyticsInstructionDataArgs, type UserRegistry, type UserRegistryArgs, VERIFY_AGENT_DISCRIMINATOR, ValueType, type ValueTypeArgs, type VerifyAgentAsyncInput, type VerifyAgentInput, type VerifyAgentInstruction, type VerifyAgentInstructionData, type VerifyAgentInstructionDataArgs, ViolationSeverity, type ViolationSeverityArgs, type VolumeTier, type VolumeTierArgs, type Vote, type VoteArgs, VoteChoice, type VoteChoiceArgs, type VotingResults, type VotingResultsArgs, WORK_DELIVERY_DISCRIMINATOR, WORK_ORDER_DISCRIMINATOR, type WorkDelivery, type WorkDeliveryArgs, type WorkDeliverySubmittedEvent, type WorkDeliverySubmittedEventArgs, type WorkOrder, type WorkOrderArgs, type WorkOrderCreatedEvent, type WorkOrderCreatedEventArgs, WorkOrderStatus, type WorkOrderStatusArgs, decodeA2AMessage, decodeA2ASession, decodeA2AStatus, decodeAgent, decodeAgentIncentives, decodeAgentTreeConfig, decodeAgentVerification, decodeAnalyticsDashboard, decodeArbitratorRegistry, decodeAuctionMarketplace, decodeAuditTrail, decodeBulkDeal, decodeChannel, decodeComplianceReport, decodeDisputeCase, decodeDynamicPricingEngine, decodeExtension, decodeGovernanceProposal, decodeIncentiveProgram, decodeJobApplication, decodeJobContract, decodeJobPosting, decodeMarketAnalytics, decodeMessage, decodeMultisig, decodeNegotiationChatbot, decodePayment, decodeRbacConfig, decodeReplicationRecord, decodeReplicationTemplate, decodeResaleMarket, decodeRoyaltyStream, decodeServiceListing, decodeServicePurchase, decodeUserRegistry, decodeWorkDelivery, decodeWorkOrder, delegationScope, deriveA2AMessagePda, deriveA2ASessionPda, fetchA2AMessage, fetchA2ASession, fetchA2AStatus, fetchAgent, fetchAgentIncentives, fetchAgentTreeConfig, fetchAgentVerification, fetchAllA2AMessage, fetchAllA2ASession, fetchAllA2AStatus, fetchAllAgent, fetchAllAgentIncentives, fetchAllAgentTreeConfig, fetchAllAgentVerification, fetchAllAnalyticsDashboard, fetchAllArbitratorRegistry, fetchAllAuctionMarketplace, fetchAllAuditTrail, fetchAllBulkDeal, fetchAllChannel, fetchAllComplianceReport, fetchAllDisputeCase, fetchAllDynamicPricingEngine, fetchAllExtension, fetchAllGovernanceProposal, fetchAllIncentiveProgram, fetchAllJobApplication, fetchAllJobContract, fetchAllJobPosting, fetchAllMarketAnalytics, fetchAllMaybeA2AMessage, fetchAllMaybeA2ASession, fetchAllMaybeA2AStatus, fetchAllMaybeAgent, fetchAllMaybeAgentIncentives, fetchAllMaybeAgentTreeConfig, fetchAllMaybeAgentVerification, fetchAllMaybeAnalyticsDashboard, fetchAllMaybeArbitratorRegistry, fetchAllMaybeAuctionMarketplace, fetchAllMaybeAuditTrail, fetchAllMaybeBulkDeal, fetchAllMaybeChannel, fetchAllMaybeComplianceReport, fetchAllMaybeDisputeCase, fetchAllMaybeDynamicPricingEngine, fetchAllMaybeExtension, fetchAllMaybeGovernanceProposal, fetchAllMaybeIncentiveProgram, fetchAllMaybeJobApplication, fetchAllMaybeJobContract, fetchAllMaybeJobPosting, fetchAllMaybeMarketAnalytics, fetchAllMaybeMessage, fetchAllMaybeMultisig, fetchAllMaybeNegotiationChatbot, fetchAllMaybePayment, fetchAllMaybeRbacConfig, fetchAllMaybeReplicationRecord, fetchAllMaybeReplicationTemplate, fetchAllMaybeResaleMarket, fetchAllMaybeRoyaltyStream, fetchAllMaybeServiceListing, fetchAllMaybeServicePurchase, fetchAllMaybeUserRegistry, fetchAllMaybeWorkDelivery, fetchAllMaybeWorkOrder, fetchAllMessage, fetchAllMultisig, fetchAllNegotiationChatbot, fetchAllPayment, fetchAllRbacConfig, fetchAllReplicationRecord, fetchAllReplicationTemplate, fetchAllResaleMarket, fetchAllRoyaltyStream, fetchAllServiceListing, fetchAllServicePurchase, fetchAllUserRegistry, fetchAllWorkDelivery, fetchAllWorkOrder, fetchAnalyticsDashboard, fetchArbitratorRegistry, fetchAuctionMarketplace, fetchAuditTrail, fetchBulkDeal, fetchChannel, fetchComplianceReport, fetchDisputeCase, fetchDynamicPricingEngine, fetchExtension, fetchGovernanceProposal, fetchIncentiveProgram, fetchJobApplication, fetchJobContract, fetchJobPosting, fetchMarketAnalytics, fetchMaybeA2AMessage, fetchMaybeA2ASession, fetchMaybeA2AStatus, fetchMaybeAgent, fetchMaybeAgentIncentives, fetchMaybeAgentTreeConfig, fetchMaybeAgentVerification, fetchMaybeAnalyticsDashboard, fetchMaybeArbitratorRegistry, fetchMaybeAuctionMarketplace, fetchMaybeAuditTrail, fetchMaybeBulkDeal, fetchMaybeChannel, fetchMaybeComplianceReport, fetchMaybeDisputeCase, fetchMaybeDynamicPricingEngine, fetchMaybeExtension, fetchMaybeGovernanceProposal, fetchMaybeIncentiveProgram, fetchMaybeJobApplication, fetchMaybeJobContract, fetchMaybeJobPosting, fetchMaybeMarketAnalytics, fetchMaybeMessage, fetchMaybeMultisig, fetchMaybeNegotiationChatbot, fetchMaybePayment, fetchMaybeRbacConfig, fetchMaybeReplicationRecord, fetchMaybeReplicationTemplate, fetchMaybeResaleMarket, fetchMaybeRoyaltyStream, fetchMaybeServiceListing, fetchMaybeServicePurchase, fetchMaybeUserRegistry, fetchMaybeWorkDelivery, fetchMaybeWorkOrder, fetchMessage, fetchMultisig, fetchNegotiationChatbot, fetchPayment, fetchRbacConfig, fetchReplicationRecord, fetchReplicationTemplate, fetchResaleMarket, fetchRoyaltyStream, fetchServiceListing, fetchServicePurchase, fetchUserRegistry, fetchWorkDelivery, fetchWorkOrder, getA2AMessageCodec, getA2AMessageDecoder, getA2AMessageDiscriminatorBytes, getA2AMessageEncoder, getA2AMessageSentEventCodec, getA2AMessageSentEventDecoder, getA2AMessageSentEventEncoder, getA2ASessionCodec, getA2ASessionCreatedEventCodec, getA2ASessionCreatedEventDecoder, getA2ASessionCreatedEventEncoder, getA2ASessionDecoder, getA2ASessionDiscriminatorBytes, getA2ASessionEncoder, getA2AStatusCodec, getA2AStatusDecoder, getA2AStatusDiscriminatorBytes, getA2AStatusEncoder, getA2AStatusUpdatedEventCodec, getA2AStatusUpdatedEventDecoder, getA2AStatusUpdatedEventEncoder, getAcceptJobApplicationDiscriminatorBytes, getAcceptJobApplicationInstruction, getAcceptJobApplicationInstructionAsync, getAcceptJobApplicationInstructionDataCodec, getAcceptJobApplicationInstructionDataDecoder, getAcceptJobApplicationInstructionDataEncoder, getAccessAuditConfigCodec, getAccessAuditConfigDecoder, getAccessAuditConfigEncoder, getAccessPolicyCodec, getAccessPolicyDecoder, getAccessPolicyEncoder, getAccountLockoutPoliciesCodec, getAccountLockoutPoliciesDecoder, getAccountLockoutPoliciesEncoder, getActionCodec, getActionDecoder, getActionEncoder, getActionExportCodec, getActionExportDecoder, getActionExportEncoder, getActivateAgentDiscriminatorBytes, getActivateAgentInstruction, getActivateAgentInstructionAsync, getActivateAgentInstructionDataCodec, getActivateAgentInstructionDataDecoder, getActivateAgentInstructionDataEncoder, getActivationRequirementCodec, getActivationRequirementDecoder, getActivationRequirementEncoder, getActivationRequirementTypeCodec, getActivationRequirementTypeDecoder, getActivationRequirementTypeEncoder, getAddTopAgentDiscriminatorBytes, getAddTopAgentInstruction, getAddTopAgentInstructionDataCodec, getAddTopAgentInstructionDataDecoder, getAddTopAgentInstructionDataEncoder, getAgentCodec, getAgentDecoder, getAgentDiscriminatorBytes, getAgentEncoder, getAgentIncentivesCodec, getAgentIncentivesDecoder, getAgentIncentivesDiscriminatorBytes, getAgentIncentivesEncoder, getAgentIncentivesSize, getAgentListedForResaleEventCodec, getAgentListedForResaleEventDecoder, getAgentListedForResaleEventEncoder, getAgentRegisteredEventCodec, getAgentRegisteredEventDecoder, getAgentRegisteredEventEncoder, getAgentReplicatedEventCodec, getAgentReplicatedEventDecoder, getAgentReplicatedEventEncoder, getAgentServiceUpdatedEventCodec, getAgentServiceUpdatedEventDecoder, getAgentServiceUpdatedEventEncoder, getAgentStatusChangedEventCodec, getAgentStatusChangedEventDecoder, getAgentStatusChangedEventEncoder, getAgentTreeConfigCodec, getAgentTreeConfigDecoder, getAgentTreeConfigDiscriminatorBytes, getAgentTreeConfigEncoder, getAgentTreeConfigSize, getAgentUpdatedEventCodec, getAgentUpdatedEventDecoder, getAgentUpdatedEventEncoder, getAgentVerificationCodec, getAgentVerificationDataCodec, getAgentVerificationDataDecoder, getAgentVerificationDataEncoder, getAgentVerificationDecoder, getAgentVerificationDiscriminatorBytes, getAgentVerificationEncoder, getAgingPolicyCodec, getAgingPolicyDecoder, getAgingPolicyEncoder, getAnalyticsDashboardCodec, getAnalyticsDashboardCreatedEventCodec, getAnalyticsDashboardCreatedEventDecoder, getAnalyticsDashboardCreatedEventEncoder, getAnalyticsDashboardDecoder, getAnalyticsDashboardDiscriminatorBytes, getAnalyticsDashboardEncoder, getAnalyticsDashboardUpdatedEventCodec, getAnalyticsDashboardUpdatedEventDecoder, getAnalyticsDashboardUpdatedEventEncoder, getApplicationStatusCodec, getApplicationStatusDecoder, getApplicationStatusEncoder, getApplyToJobDiscriminatorBytes, getApplyToJobInstruction, getApplyToJobInstructionAsync, getApplyToJobInstructionDataCodec, getApplyToJobInstructionDataDecoder, getApplyToJobInstructionDataEncoder, getApprovalLevelCodec, getApprovalLevelDecoder, getApprovalLevelEncoder, getApproveExtensionDiscriminatorBytes, getApproveExtensionInstruction, getApproveExtensionInstructionDataCodec, getApproveExtensionInstructionDataDecoder, getApproveExtensionInstructionDataEncoder, getArbitratorRegistryCodec, getArbitratorRegistryDecoder, getArbitratorRegistryDiscriminatorBytes, getArbitratorRegistryEncoder, getAuctionBidCodec, getAuctionBidDecoder, getAuctionBidEncoder, getAuctionBidPlacedEventCodec, getAuctionBidPlacedEventDecoder, getAuctionBidPlacedEventEncoder, getAuctionFailedEventCodec, getAuctionFailedEventDecoder, getAuctionFailedEventEncoder, getAuctionFinalizedEventCodec, getAuctionFinalizedEventDecoder, getAuctionFinalizedEventEncoder, getAuctionMarketplaceCodec, getAuctionMarketplaceDecoder, getAuctionMarketplaceDiscriminatorBytes, getAuctionMarketplaceEncoder, getAuctionStatusCodec, getAuctionStatusDecoder, getAuctionStatusEncoder, getAuctionTypeCodec, getAuctionTypeDecoder, getAuctionTypeEncoder, getAuditActionCodec, getAuditActionDecoder, getAuditActionEncoder, getAuditConfigCodec, getAuditConfigDecoder, getAuditConfigEncoder, getAuditContextCodec, getAuditContextDecoder, getAuditContextEncoder, getAuditContextExportCodec, getAuditContextExportDecoder, getAuditContextExportEncoder, getAuditEntryCodec, getAuditEntryDecoder, getAuditEntryEncoder, getAuditTrailCodec, getAuditTrailDecoder, getAuditTrailDiscriminatorBytes, getAuditTrailEncoder, getAuditTrailInitializedEventCodec, getAuditTrailInitializedEventDecoder, getAuditTrailInitializedEventEncoder, getAuthenticationLevelCodec, getAuthenticationLevelDecoder, getAuthenticationLevelEncoder, getAuthenticationMethodCodec, getAuthenticationMethodDecoder, getAuthenticationMethodEncoder, getAuthenticationPoliciesCodec, getAuthenticationPoliciesDecoder, getAuthenticationPoliciesEncoder, getAuthenticationStrengthCodec, getAuthenticationStrengthDecoder, getAuthenticationStrengthEncoder, getAuthorizationPoliciesCodec, getAuthorizationPoliciesDecoder, getAuthorizationPoliciesEncoder, getBackupFrequencyCodec, getBackupFrequencyDecoder, getBackupFrequencyEncoder, getBiometricPoliciesCodec, getBiometricPoliciesDecoder, getBiometricPoliciesEncoder, getBiometricProtectionCodec, getBiometricProtectionDecoder, getBiometricProtectionEncoder, getBiometricQualityCodec, getBiometricQualityDecoder, getBiometricQualityEncoder, getBiometricQualityExportCodec, getBiometricQualityExportDecoder, getBiometricQualityExportEncoder, getBiometricStorageMethodCodec, getBiometricStorageMethodDecoder, getBiometricStorageMethodEncoder, getBiometricTypeCodec, getBiometricTypeDecoder, getBiometricTypeEncoder, getBulkDealBatchExecutedEventCodec, getBulkDealBatchExecutedEventDecoder, getBulkDealBatchExecutedEventEncoder, getBulkDealCodec, getBulkDealCreatedEventCodec, getBulkDealCreatedEventDecoder, getBulkDealCreatedEventEncoder, getBulkDealDecoder, getBulkDealDiscriminatorBytes, getBulkDealEncoder, getChannelCodec, getChannelCreatedEventCodec, getChannelCreatedEventDecoder, getChannelCreatedEventEncoder, getChannelDecoder, getChannelDiscriminatorBytes, getChannelEncoder, getChannelTypeCodec, getChannelTypeDecoder, getChannelTypeEncoder, getComplianceFlagsCodec, getComplianceFlagsDecoder, getComplianceFlagsEncoder, getComplianceMetricsCodec, getComplianceMetricsDecoder, getComplianceMetricsEncoder, getCompliancePoliciesCodec, getCompliancePoliciesDecoder, getCompliancePoliciesEncoder, getComplianceReportCodec, getComplianceReportDecoder, getComplianceReportDiscriminatorBytes, getComplianceReportEncoder, getComplianceReportGeneratedEventCodec, getComplianceReportGeneratedEventDecoder, getComplianceReportGeneratedEventEncoder, getComplianceStatusCodec, getComplianceStatusDecoder, getComplianceStatusEncoder, getComplianceStatusExportCodec, getComplianceStatusExportDecoder, getComplianceStatusExportEncoder, getCompressedAgentCreatedEventCodec, getCompressedAgentCreatedEventDecoder, getCompressedAgentCreatedEventEncoder, getConditionTypeCodec, getConditionTypeDecoder, getConditionTypeEncoder, getConstraintConditionCodec, getConstraintConditionDecoder, getConstraintConditionEncoder, getConstraintOperatorCodec, getConstraintOperatorDecoder, getConstraintOperatorEncoder, getContractStatusCodec, getContractStatusDecoder, getContractStatusEncoder, getCounterOfferMadeEventCodec, getCounterOfferMadeEventDecoder, getCounterOfferMadeEventEncoder, getCreateA2aSessionDiscriminatorBytes, getCreateA2aSessionInstruction, getCreateA2aSessionInstructionAsync, getCreateA2aSessionInstructionDataCodec, getCreateA2aSessionInstructionDataDecoder, getCreateA2aSessionInstructionDataEncoder, getCreateAnalyticsDashboardDiscriminatorBytes, getCreateAnalyticsDashboardInstruction, getCreateAnalyticsDashboardInstructionAsync, getCreateAnalyticsDashboardInstructionDataCodec, getCreateAnalyticsDashboardInstructionDataDecoder, getCreateAnalyticsDashboardInstructionDataEncoder, getCreateBulkDealDiscriminatorBytes, getCreateBulkDealInstruction, getCreateBulkDealInstructionAsync, getCreateBulkDealInstructionDataCodec, getCreateBulkDealInstructionDataDecoder, getCreateBulkDealInstructionDataEncoder, getCreateChannelDiscriminatorBytes, getCreateChannelInstruction, getCreateChannelInstructionDataCodec, getCreateChannelInstructionDataDecoder, getCreateChannelInstructionDataEncoder, getCreateDynamicPricingEngineDiscriminatorBytes, getCreateDynamicPricingEngineInstruction, getCreateDynamicPricingEngineInstructionAsync, getCreateDynamicPricingEngineInstructionDataCodec, getCreateDynamicPricingEngineInstructionDataDecoder, getCreateDynamicPricingEngineInstructionDataEncoder, getCreateIncentiveProgramDiscriminatorBytes, getCreateIncentiveProgramInstruction, getCreateIncentiveProgramInstructionAsync, getCreateIncentiveProgramInstructionDataCodec, getCreateIncentiveProgramInstructionDataDecoder, getCreateIncentiveProgramInstructionDataEncoder, getCreateJobPostingDiscriminatorBytes, getCreateJobPostingInstruction, getCreateJobPostingInstructionAsync, getCreateJobPostingInstructionDataCodec, getCreateJobPostingInstructionDataDecoder, getCreateJobPostingInstructionDataEncoder, getCreateMarketAnalyticsDiscriminatorBytes, getCreateMarketAnalyticsInstruction, getCreateMarketAnalyticsInstructionAsync, getCreateMarketAnalyticsInstructionDataCodec, getCreateMarketAnalyticsInstructionDataDecoder, getCreateMarketAnalyticsInstructionDataEncoder, getCreateMultisigDiscriminatorBytes, getCreateMultisigInstruction, getCreateMultisigInstructionAsync, getCreateMultisigInstructionDataCodec, getCreateMultisigInstructionDataDecoder, getCreateMultisigInstructionDataEncoder, getCreateReplicationTemplateDiscriminatorBytes, getCreateReplicationTemplateInstruction, getCreateReplicationTemplateInstructionAsync, getCreateReplicationTemplateInstructionDataCodec, getCreateReplicationTemplateInstructionDataDecoder, getCreateReplicationTemplateInstructionDataEncoder, getCreateRoyaltyStreamDiscriminatorBytes, getCreateRoyaltyStreamInstruction, getCreateRoyaltyStreamInstructionAsync, getCreateRoyaltyStreamInstructionDataCodec, getCreateRoyaltyStreamInstructionDataDecoder, getCreateRoyaltyStreamInstructionDataEncoder, getCreateServiceAuctionDiscriminatorBytes, getCreateServiceAuctionInstruction, getCreateServiceAuctionInstructionAsync, getCreateServiceAuctionInstructionDataCodec, getCreateServiceAuctionInstructionDataDecoder, getCreateServiceAuctionInstructionDataEncoder, getCreateServiceListingDiscriminatorBytes, getCreateServiceListingInstruction, getCreateServiceListingInstructionAsync, getCreateServiceListingInstructionDataCodec, getCreateServiceListingInstructionDataDecoder, getCreateServiceListingInstructionDataEncoder, getCreateWorkOrderDiscriminatorBytes, getCreateWorkOrderInstruction, getCreateWorkOrderInstructionDataCodec, getCreateWorkOrderInstructionDataDecoder, getCreateWorkOrderInstructionDataEncoder, getDataAccessLevelCodec, getDataAccessLevelDecoder, getDataAccessLevelEncoder, getDataProtectionPoliciesCodec, getDataProtectionPoliciesDecoder, getDataProtectionPoliciesEncoder, getDeactivateAgentDiscriminatorBytes, getDeactivateAgentInstruction, getDeactivateAgentInstructionAsync, getDeactivateAgentInstructionDataCodec, getDeactivateAgentInstructionDataDecoder, getDeactivateAgentInstructionDataEncoder, getDealTypeCodec, getDealTypeDecoder, getDealTypeEncoder, getDegradationHandlingCodec, getDegradationHandlingDecoder, getDegradationHandlingEncoder, getDelegationInfoCodec, getDelegationInfoDecoder, getDelegationInfoEncoder, getDelegationScopeCodec, getDelegationScopeDecoder, getDelegationScopeEncoder, getDeliverableCodec, getDeliverableDecoder, getDeliverableEncoder, getDisputeCaseCodec, getDisputeCaseDecoder, getDisputeCaseDiscriminatorBytes, getDisputeCaseEncoder, getDisputeEvidenceCodec, getDisputeEvidenceDecoder, getDisputeEvidenceEncoder, getDisputeEvidenceSubmittedEventCodec, getDisputeEvidenceSubmittedEventDecoder, getDisputeEvidenceSubmittedEventEncoder, getDisputeFiledEventCodec, getDisputeFiledEventDecoder, getDisputeFiledEventEncoder, getDisputeResolvedEventCodec, getDisputeResolvedEventDecoder, getDisputeResolvedEventEncoder, getDisputeStatusCodec, getDisputeStatusDecoder, getDisputeStatusEncoder, getDistributeIncentivesDiscriminatorBytes, getDistributeIncentivesInstruction, getDistributeIncentivesInstructionDataCodec, getDistributeIncentivesInstructionDataDecoder, getDistributeIncentivesInstructionDataEncoder, getDynamicPricingConfigCodec, getDynamicPricingConfigDecoder, getDynamicPricingConfigEncoder, getDynamicPricingConfigExportCodec, getDynamicPricingConfigExportDecoder, getDynamicPricingConfigExportEncoder, getDynamicPricingEngineCodec, getDynamicPricingEngineCreatedEventCodec, getDynamicPricingEngineCreatedEventDecoder, getDynamicPricingEngineCreatedEventEncoder, getDynamicPricingEngineDecoder, getDynamicPricingEngineDiscriminatorBytes, getDynamicPricingEngineEncoder, getDynamicPricingUpdatedEventCodec, getDynamicPricingUpdatedEventDecoder, getDynamicPricingUpdatedEventEncoder, getEmergencyAccessConfigCodec, getEmergencyAccessConfigDecoder, getEmergencyAccessConfigEncoder, getEmergencyConfigCodec, getEmergencyConfigDecoder, getEmergencyConfigEncoder, getEnforcementLevelCodec, getEnforcementLevelDecoder, getEnforcementLevelEncoder, getExecuteBulkDealBatchDiscriminatorBytes, getExecuteBulkDealBatchInstruction, getExecuteBulkDealBatchInstructionAsync, getExecuteBulkDealBatchInstructionDataCodec, getExecuteBulkDealBatchInstructionDataDecoder, getExecuteBulkDealBatchInstructionDataEncoder, getExecutionConditionCodec, getExecutionConditionDecoder, getExecutionConditionEncoder, getExecutionParamsCodec, getExecutionParamsDecoder, getExecutionParamsEncoder, getExportActionDiscriminatorBytes, getExportActionInstruction, getExportActionInstructionDataCodec, getExportActionInstructionDataDecoder, getExportActionInstructionDataEncoder, getExportAuditContextDiscriminatorBytes, getExportAuditContextInstruction, getExportAuditContextInstructionDataCodec, getExportAuditContextInstructionDataDecoder, getExportAuditContextInstructionDataEncoder, getExportBiometricQualityDiscriminatorBytes, getExportBiometricQualityInstruction, getExportBiometricQualityInstructionDataCodec, getExportBiometricQualityInstructionDataDecoder, getExportBiometricQualityInstructionDataEncoder, getExportComplianceStatusDiscriminatorBytes, getExportComplianceStatusInstruction, getExportComplianceStatusInstructionDataCodec, getExportComplianceStatusInstructionDataDecoder, getExportComplianceStatusInstructionDataEncoder, getExportDynamicPricingConfigDiscriminatorBytes, getExportDynamicPricingConfigInstruction, getExportDynamicPricingConfigInstructionDataCodec, getExportDynamicPricingConfigInstructionDataDecoder, getExportDynamicPricingConfigInstructionDataEncoder, getExportMultisigConfigDiscriminatorBytes, getExportMultisigConfigInstruction, getExportMultisigConfigInstructionDataCodec, getExportMultisigConfigInstructionDataDecoder, getExportMultisigConfigInstructionDataEncoder, getExportReportEntryDiscriminatorBytes, getExportReportEntryInstruction, getExportReportEntryInstructionDataCodec, getExportReportEntryInstructionDataDecoder, getExportReportEntryInstructionDataEncoder, getExportResourceConstraintsDiscriminatorBytes, getExportResourceConstraintsInstruction, getExportResourceConstraintsInstructionDataCodec, getExportResourceConstraintsInstructionDataDecoder, getExportResourceConstraintsInstructionDataEncoder, getExportRuleConditionDiscriminatorBytes, getExportRuleConditionInstruction, getExportRuleConditionInstructionDataCodec, getExportRuleConditionInstructionDataDecoder, getExportRuleConditionInstructionDataEncoder, getExtensionApprovedEventCodec, getExtensionApprovedEventDecoder, getExtensionApprovedEventEncoder, getExtensionCodec, getExtensionDecoder, getExtensionDiscriminatorBytes, getExtensionEncoder, getExtensionMetadataCodec, getExtensionMetadataDecoder, getExtensionMetadataEncoder, getExtensionRegisteredEventCodec, getExtensionRegisteredEventDecoder, getExtensionRegisteredEventEncoder, getExtensionStatusCodec, getExtensionStatusDecoder, getExtensionStatusEncoder, getExtensionTypeCodec, getExtensionTypeDecoder, getExtensionTypeEncoder, getFileDisputeDiscriminatorBytes, getFileDisputeInstruction, getFileDisputeInstructionAsync, getFileDisputeInstructionDataCodec, getFileDisputeInstructionDataDecoder, getFileDisputeInstructionDataEncoder, getFinalizeAuctionDiscriminatorBytes, getFinalizeAuctionInstruction, getFinalizeAuctionInstructionDataCodec, getFinalizeAuctionInstructionDataDecoder, getFinalizeAuctionInstructionDataEncoder, getGenerateComplianceReportDiscriminatorBytes, getGenerateComplianceReportInstruction, getGenerateComplianceReportInstructionAsync, getGenerateComplianceReportInstructionDataCodec, getGenerateComplianceReportInstructionDataDecoder, getGenerateComplianceReportInstructionDataEncoder, getGeographicRegionCodec, getGeographicRegionDecoder, getGeographicRegionEncoder, getGhostspeakMarketplaceErrorMessage, getGovernanceProposalCodec, getGovernanceProposalCreatedEventCodec, getGovernanceProposalCreatedEventDecoder, getGovernanceProposalCreatedEventEncoder, getGovernanceProposalDecoder, getGovernanceProposalDiscriminatorBytes, getGovernanceProposalEncoder, getHierarchicalBoundaryCodec, getHierarchicalBoundaryDecoder, getHierarchicalBoundaryEncoder, getIncentiveConfigCodec, getIncentiveConfigDecoder, getIncentiveConfigEncoder, getIncentiveDistributedEventCodec, getIncentiveDistributedEventDecoder, getIncentiveDistributedEventEncoder, getIncentiveProgramCodec, getIncentiveProgramCreatedEventCodec, getIncentiveProgramCreatedEventDecoder, getIncentiveProgramCreatedEventEncoder, getIncentiveProgramDecoder, getIncentiveProgramDiscriminatorBytes, getIncentiveProgramEncoder, getIncentiveProgramSize, getIncidentResponsePoliciesCodec, getIncidentResponsePoliciesDecoder, getIncidentResponsePoliciesEncoder, getInitializeAuditTrailDiscriminatorBytes, getInitializeAuditTrailInstruction, getInitializeAuditTrailInstructionAsync, getInitializeAuditTrailInstructionDataCodec, getInitializeAuditTrailInstructionDataDecoder, getInitializeAuditTrailInstructionDataEncoder, getInitializeGovernanceProposalDiscriminatorBytes, getInitializeGovernanceProposalInstruction, getInitializeGovernanceProposalInstructionAsync, getInitializeGovernanceProposalInstructionDataCodec, getInitializeGovernanceProposalInstructionDataDecoder, getInitializeGovernanceProposalInstructionDataEncoder, getInitializeRbacConfigDiscriminatorBytes, getInitializeRbacConfigInstruction, getInitializeRbacConfigInstructionAsync, getInitializeRbacConfigInstructionDataCodec, getInitializeRbacConfigInstructionDataDecoder, getInitializeRbacConfigInstructionDataEncoder, getInitiateNegotiationDiscriminatorBytes, getInitiateNegotiationInstruction, getInitiateNegotiationInstructionAsync, getInitiateNegotiationInstructionDataCodec, getInitiateNegotiationInstructionDataDecoder, getInitiateNegotiationInstructionDataEncoder, getJobApplicationAcceptedEventCodec, getJobApplicationAcceptedEventDecoder, getJobApplicationAcceptedEventEncoder, getJobApplicationCodec, getJobApplicationDecoder, getJobApplicationDiscriminatorBytes, getJobApplicationEncoder, getJobApplicationSubmittedEventCodec, getJobApplicationSubmittedEventDecoder, getJobApplicationSubmittedEventEncoder, getJobContractCodec, getJobContractDecoder, getJobContractDiscriminatorBytes, getJobContractEncoder, getJobContractSize, getJobPostingCodec, getJobPostingCreatedEventCodec, getJobPostingCreatedEventDecoder, getJobPostingCreatedEventEncoder, getJobPostingDecoder, getJobPostingDiscriminatorBytes, getJobPostingEncoder, getLatitudeRangeCodec, getLatitudeRangeDecoder, getLatitudeRangeEncoder, getListAgentForResaleDiscriminatorBytes, getListAgentForResaleInstruction, getListAgentForResaleInstructionAsync, getListAgentForResaleInstructionDataCodec, getListAgentForResaleInstructionDataDecoder, getListAgentForResaleInstructionDataEncoder, getLocationConstraintsCodec, getLocationConstraintsDecoder, getLocationConstraintsEncoder, getLongitudeRangeCodec, getLongitudeRangeDecoder, getLongitudeRangeEncoder, getMakeCounterOfferDiscriminatorBytes, getMakeCounterOfferInstruction, getMakeCounterOfferInstructionDataCodec, getMakeCounterOfferInstructionDataDecoder, getMakeCounterOfferInstructionDataEncoder, getManageAgentStatusDiscriminatorBytes, getManageAgentStatusInstruction, getManageAgentStatusInstructionAsync, getManageAgentStatusInstructionDataCodec, getManageAgentStatusInstructionDataDecoder, getManageAgentStatusInstructionDataEncoder, getMarketAnalyticsCodec, getMarketAnalyticsCreatedEventCodec, getMarketAnalyticsCreatedEventDecoder, getMarketAnalyticsCreatedEventEncoder, getMarketAnalyticsDecoder, getMarketAnalyticsDiscriminatorBytes, getMarketAnalyticsEncoder, getMarketAnalyticsUpdatedEventCodec, getMarketAnalyticsUpdatedEventDecoder, getMarketAnalyticsUpdatedEventEncoder, getMessageCodec, getMessageDecoder, getMessageDiscriminatorBytes, getMessageEncoder, getMessageSentEventCodec, getMessageSentEventDecoder, getMessageSentEventEncoder, getMessageTypeCodec, getMessageTypeDecoder, getMessageTypeEncoder, getMultisigCodec, getMultisigConfigCodec, getMultisigConfigDecoder, getMultisigConfigEncoder, getMultisigConfigExportCodec, getMultisigConfigExportDecoder, getMultisigConfigExportEncoder, getMultisigCreatedEventCodec, getMultisigCreatedEventDecoder, getMultisigCreatedEventEncoder, getMultisigDecoder, getMultisigDiscriminatorBytes, getMultisigEncoder, getMultisigSignatureCodec, getMultisigSignatureDecoder, getMultisigSignatureEncoder, getNegotiationChatbotCodec, getNegotiationChatbotDecoder, getNegotiationChatbotDiscriminatorBytes, getNegotiationChatbotEncoder, getNegotiationInitiatedEventCodec, getNegotiationInitiatedEventDecoder, getNegotiationInitiatedEventEncoder, getNegotiationStatusCodec, getNegotiationStatusDecoder, getNegotiationStatusEncoder, getNetworkSecurityPoliciesCodec, getNetworkSecurityPoliciesDecoder, getNetworkSecurityPoliciesEncoder, getNotificationMethodCodec, getNotificationMethodDecoder, getNotificationMethodEncoder, getNotificationPriorityCodec, getNotificationPriorityDecoder, getNotificationPriorityEncoder, getNotificationRequirementCodec, getNotificationRequirementDecoder, getNotificationRequirementEncoder, getNotificationTargetCodec, getNotificationTargetDecoder, getNotificationTargetEncoder, getNotificationTargetTypeCodec, getNotificationTargetTypeDecoder, getNotificationTargetTypeEncoder, getNotificationTimingCodec, getNotificationTimingDecoder, getNotificationTimingEncoder, getPasswordPoliciesCodec, getPasswordPoliciesDecoder, getPasswordPoliciesEncoder, getPaymentCodec, getPaymentDecoder, getPaymentDiscriminatorBytes, getPaymentEncoder, getPaymentProcessedEventCodec, getPaymentProcessedEventDecoder, getPaymentProcessedEventEncoder, getPendingTransactionCodec, getPendingTransactionDecoder, getPendingTransactionEncoder, getPermissionCodec, getPermissionConstraintCodec, getPermissionConstraintDecoder, getPermissionConstraintEncoder, getPermissionConstraintTypeCodec, getPermissionConstraintTypeDecoder, getPermissionConstraintTypeEncoder, getPermissionDecoder, getPermissionEncoder, getPermissionMetadataCodec, getPermissionMetadataDecoder, getPermissionMetadataEncoder, getPermissionScopeCodec, getPermissionScopeDecoder, getPermissionScopeEncoder, getPlaceAuctionBidDiscriminatorBytes, getPlaceAuctionBidInstruction, getPlaceAuctionBidInstructionDataCodec, getPlaceAuctionBidInstructionDataDecoder, getPlaceAuctionBidInstructionDataEncoder, getPolicyMetadataCodec, getPolicyMetadataDecoder, getPolicyMetadataEncoder, getPolicyRuleCodec, getPolicyRuleDecoder, getPolicyRuleEncoder, getPolicyScopeCodec, getPolicyScopeDecoder, getPolicyScopeEncoder, getPolicyStatusCodec, getPolicyStatusDecoder, getPolicyStatusEncoder, getPolicyTypeCodec, getPolicyTypeDecoder, getPolicyTypeEncoder, getPricingAlgorithmCodec, getPricingAlgorithmDecoder, getPricingAlgorithmEncoder, getPricingModelCodec, getPricingModelDecoder, getPricingModelEncoder, getProcessPaymentDiscriminatorBytes, getProcessPaymentInstruction, getProcessPaymentInstructionAsync, getProcessPaymentInstructionDataCodec, getProcessPaymentInstructionDataDecoder, getProcessPaymentInstructionDataEncoder, getProposalAccountCodec, getProposalAccountDecoder, getProposalAccountEncoder, getProposalInstructionCodec, getProposalInstructionDecoder, getProposalInstructionEncoder, getProposalMetadataCodec, getProposalMetadataDecoder, getProposalMetadataEncoder, getProposalStatusCodec, getProposalStatusDecoder, getProposalStatusEncoder, getProposalTypeCodec, getProposalTypeDecoder, getProposalTypeEncoder, getPurchaseServiceDiscriminatorBytes, getPurchaseServiceInstruction, getPurchaseServiceInstructionAsync, getPurchaseServiceInstructionDataCodec, getPurchaseServiceInstructionDataDecoder, getPurchaseServiceInstructionDataEncoder, getPurchaseStatusCodec, getPurchaseStatusDecoder, getPurchaseStatusEncoder, getQuorumMethodCodec, getQuorumMethodDecoder, getQuorumMethodEncoder, getQuorumRequirementsCodec, getQuorumRequirementsDecoder, getQuorumRequirementsEncoder, getRbacConfigCodec, getRbacConfigDecoder, getRbacConfigDiscriminatorBytes, getRbacConfigEncoder, getRbacConfigInitializedEventCodec, getRbacConfigInitializedEventDecoder, getRbacConfigInitializedEventEncoder, getRegisterAgentCompressedDiscriminatorBytes, getRegisterAgentCompressedInstruction, getRegisterAgentCompressedInstructionAsync, getRegisterAgentCompressedInstructionDataCodec, getRegisterAgentCompressedInstructionDataDecoder, getRegisterAgentCompressedInstructionDataEncoder, getRegisterAgentDiscriminatorBytes, getRegisterAgentInstruction, getRegisterAgentInstructionAsync, getRegisterAgentInstructionDataCodec, getRegisterAgentInstructionDataDecoder, getRegisterAgentInstructionDataEncoder, getRegisterExtensionDiscriminatorBytes, getRegisterExtensionInstruction, getRegisterExtensionInstructionAsync, getRegisterExtensionInstructionDataCodec, getRegisterExtensionInstructionDataDecoder, getRegisterExtensionInstructionDataEncoder, getReplicateAgentDiscriminatorBytes, getReplicateAgentInstruction, getReplicateAgentInstructionAsync, getReplicateAgentInstructionDataCodec, getReplicateAgentInstructionDataDecoder, getReplicateAgentInstructionDataEncoder, getReplicationRecordCodec, getReplicationRecordDecoder, getReplicationRecordDiscriminatorBytes, getReplicationRecordEncoder, getReplicationTemplateCodec, getReplicationTemplateCreatedEventCodec, getReplicationTemplateCreatedEventDecoder, getReplicationTemplateCreatedEventEncoder, getReplicationTemplateDecoder, getReplicationTemplateDiscriminatorBytes, getReplicationTemplateEncoder, getReportDataCodec, getReportDataDecoder, getReportDataEncoder, getReportEntryCodec, getReportEntryDecoder, getReportEntryEncoder, getReportEntryExportCodec, getReportEntryExportDecoder, getReportEntryExportEncoder, getReportStatusCodec, getReportStatusDecoder, getReportStatusEncoder, getReportSummaryCodec, getReportSummaryDecoder, getReportSummaryEncoder, getReportTypeCodec, getReportTypeDecoder, getReportTypeEncoder, getReportingFrequencyCodec, getReportingFrequencyDecoder, getReportingFrequencyEncoder, getResaleMarketCodec, getResaleMarketDecoder, getResaleMarketDiscriminatorBytes, getResaleMarketEncoder, getResolveDisputeDiscriminatorBytes, getResolveDisputeInstruction, getResolveDisputeInstructionAsync, getResolveDisputeInstructionDataCodec, getResolveDisputeInstructionDataDecoder, getResolveDisputeInstructionDataEncoder, getResourceConstraintsCodec, getResourceConstraintsDecoder, getResourceConstraintsEncoder, getResourceConstraintsExportCodec, getResourceConstraintsExportDecoder, getResourceConstraintsExportEncoder, getReviewScheduleCodec, getReviewScheduleDecoder, getReviewScheduleEncoder, getRiskAcceptanceCodec, getRiskAcceptanceDecoder, getRiskAcceptanceEncoder, getRiskAssessmentCodec, getRiskAssessmentDecoder, getRiskAssessmentEncoder, getRiskCategoryCodec, getRiskCategoryDecoder, getRiskCategoryEncoder, getRiskFactorCodec, getRiskFactorDecoder, getRiskFactorEncoder, getRiskIndicatorCodec, getRiskIndicatorDecoder, getRiskIndicatorEncoder, getRiskLevelCodec, getRiskLevelDecoder, getRiskLevelEncoder, getRoleCodec, getRoleConstraintsCodec, getRoleConstraintsDecoder, getRoleConstraintsEncoder, getRoleDecoder, getRoleEncoder, getRoleMetadataCodec, getRoleMetadataDecoder, getRoleMetadataEncoder, getRoleStatusCodec, getRoleStatusDecoder, getRoleStatusEncoder, getRoleTypeCodec, getRoleTypeDecoder, getRoleTypeEncoder, getRoyaltyConfigCodec, getRoyaltyConfigDecoder, getRoyaltyConfigEncoder, getRoyaltyStreamCodec, getRoyaltyStreamCreatedEventCodec, getRoyaltyStreamCreatedEventDecoder, getRoyaltyStreamCreatedEventEncoder, getRoyaltyStreamDecoder, getRoyaltyStreamDiscriminatorBytes, getRoyaltyStreamEncoder, getRoyaltyStreamSize, getRuleConditionCodec, getRuleConditionDecoder, getRuleConditionEncoder, getRuleConditionExportCodec, getRuleConditionExportDecoder, getRuleConditionExportEncoder, getRuleEffectCodec, getRuleEffectDecoder, getRuleEffectEncoder, getScopeBoundariesCodec, getScopeBoundariesDecoder, getScopeBoundariesEncoder, getScopeInheritanceCodec, getScopeInheritanceDecoder, getScopeInheritanceEncoder, getScopeTypeCodec, getScopeTypeDecoder, getScopeTypeEncoder, getSecurityEventTypeCodec, getSecurityEventTypeDecoder, getSecurityEventTypeEncoder, getSecurityPoliciesCodec, getSecurityPoliciesDecoder, getSecurityPoliciesEncoder, getSendA2aMessageDiscriminatorBytes, getSendA2aMessageInstruction, getSendA2aMessageInstructionDataCodec, getSendA2aMessageInstructionDataDecoder, getSendA2aMessageInstructionDataEncoder, getSendMessageDiscriminatorBytes, getSendMessageInstruction, getSendMessageInstructionDataCodec, getSendMessageInstructionDataDecoder, getSendMessageInstructionDataEncoder, getServiceAuctionCreatedEventCodec, getServiceAuctionCreatedEventDecoder, getServiceAuctionCreatedEventEncoder, getServiceListingCodec, getServiceListingCreatedEventCodec, getServiceListingCreatedEventDecoder, getServiceListingCreatedEventEncoder, getServiceListingDecoder, getServiceListingDiscriminatorBytes, getServiceListingEncoder, getServicePurchaseCodec, getServicePurchaseDecoder, getServicePurchaseDiscriminatorBytes, getServicePurchaseEncoder, getServicePurchasedEventCodec, getServicePurchasedEventDecoder, getServicePurchasedEventEncoder, getSessionConstraintsCodec, getSessionConstraintsDecoder, getSessionConstraintsEncoder, getSessionPoliciesCodec, getSessionPoliciesDecoder, getSessionPoliciesEncoder, getSodConstraintCodec, getSodConstraintDecoder, getSodConstraintEncoder, getSodConstraintTypeCodec, getSodConstraintTypeDecoder, getSodConstraintTypeEncoder, getStepUpTriggerCodec, getStepUpTriggerDecoder, getStepUpTriggerEncoder, getSubmissionDetailsCodec, getSubmissionDetailsDecoder, getSubmissionDetailsEncoder, getSubmitDisputeEvidenceDiscriminatorBytes, getSubmitDisputeEvidenceInstruction, getSubmitDisputeEvidenceInstructionAsync, getSubmitDisputeEvidenceInstructionDataCodec, getSubmitDisputeEvidenceInstructionDataDecoder, getSubmitDisputeEvidenceInstructionDataEncoder, getSubmitWorkDeliveryDiscriminatorBytes, getSubmitWorkDeliveryInstruction, getSubmitWorkDeliveryInstructionAsync, getSubmitWorkDeliveryInstructionDataCodec, getSubmitWorkDeliveryInstructionDataDecoder, getSubmitWorkDeliveryInstructionDataEncoder, getTimeConstraintsCodec, getTimeConstraintsDecoder, getTimeConstraintsEncoder, getTimeLockCodec, getTimeLockDecoder, getTimeLockEncoder, getTimeLockTypeCodec, getTimeLockTypeDecoder, getTimeLockTypeEncoder, getTopAgentAddedEventCodec, getTopAgentAddedEventDecoder, getTopAgentAddedEventEncoder, getTransactionPriorityCodec, getTransactionPriorityDecoder, getTransactionPriorityEncoder, getTransactionStatusCodec, getTransactionStatusDecoder, getTransactionStatusEncoder, getTransactionTypeCodec, getTransactionTypeDecoder, getTransactionTypeEncoder, getTrendDirectionCodec, getTrendDirectionDecoder, getTrendDirectionEncoder, getUnlockMethodCodec, getUnlockMethodDecoder, getUnlockMethodEncoder, getUpdateA2aStatusDiscriminatorBytes, getUpdateA2aStatusInstruction, getUpdateA2aStatusInstructionAsync, getUpdateA2aStatusInstructionDataCodec, getUpdateA2aStatusInstructionDataDecoder, getUpdateA2aStatusInstructionDataEncoder, getUpdateAgentDiscriminatorBytes, getUpdateAgentInstruction, getUpdateAgentInstructionAsync, getUpdateAgentInstructionDataCodec, getUpdateAgentInstructionDataDecoder, getUpdateAgentInstructionDataEncoder, getUpdateAgentReputationDiscriminatorBytes, getUpdateAgentReputationInstruction, getUpdateAgentReputationInstructionAsync, getUpdateAgentReputationInstructionDataCodec, getUpdateAgentReputationInstructionDataDecoder, getUpdateAgentReputationInstructionDataEncoder, getUpdateAgentServiceDiscriminatorBytes, getUpdateAgentServiceInstruction, getUpdateAgentServiceInstructionAsync, getUpdateAgentServiceInstructionDataCodec, getUpdateAgentServiceInstructionDataDecoder, getUpdateAgentServiceInstructionDataEncoder, getUpdateAnalyticsDashboardDiscriminatorBytes, getUpdateAnalyticsDashboardInstruction, getUpdateAnalyticsDashboardInstructionAsync, getUpdateAnalyticsDashboardInstructionDataCodec, getUpdateAnalyticsDashboardInstructionDataDecoder, getUpdateAnalyticsDashboardInstructionDataEncoder, getUpdateDynamicPricingDiscriminatorBytes, getUpdateDynamicPricingInstruction, getUpdateDynamicPricingInstructionDataCodec, getUpdateDynamicPricingInstructionDataDecoder, getUpdateDynamicPricingInstructionDataEncoder, getUpdateMarketAnalyticsDiscriminatorBytes, getUpdateMarketAnalyticsInstruction, getUpdateMarketAnalyticsInstructionDataCodec, getUpdateMarketAnalyticsInstructionDataDecoder, getUpdateMarketAnalyticsInstructionDataEncoder, getUserRegistryCodec, getUserRegistryDecoder, getUserRegistryDiscriminatorBytes, getUserRegistryEncoder, getUserRegistrySize, getValueTypeCodec, getValueTypeDecoder, getValueTypeEncoder, getVerifyAgentDiscriminatorBytes, getVerifyAgentInstruction, getVerifyAgentInstructionAsync, getVerifyAgentInstructionDataCodec, getVerifyAgentInstructionDataDecoder, getVerifyAgentInstructionDataEncoder, getViolationSeverityCodec, getViolationSeverityDecoder, getViolationSeverityEncoder, getVolumeTierCodec, getVolumeTierDecoder, getVolumeTierEncoder, getVoteChoiceCodec, getVoteChoiceDecoder, getVoteChoiceEncoder, getVoteCodec, getVoteDecoder, getVoteEncoder, getVotingResultsCodec, getVotingResultsDecoder, getVotingResultsEncoder, getWorkDeliveryCodec, getWorkDeliveryDecoder, getWorkDeliveryDiscriminatorBytes, getWorkDeliveryEncoder, getWorkDeliverySubmittedEventCodec, getWorkDeliverySubmittedEventDecoder, getWorkDeliverySubmittedEventEncoder, getWorkOrderCodec, getWorkOrderCreatedEventCodec, getWorkOrderCreatedEventDecoder, getWorkOrderCreatedEventEncoder, getWorkOrderDecoder, getWorkOrderDiscriminatorBytes, getWorkOrderEncoder, getWorkOrderStatusCodec, getWorkOrderStatusDecoder, getWorkOrderStatusEncoder, identifyGhostspeakMarketplaceAccount, identifyGhostspeakMarketplaceInstruction, isDelegationScope, isGhostspeakMarketplaceError, parseAcceptJobApplicationInstruction, parseActivateAgentInstruction, parseAddTopAgentInstruction, parseApplyToJobInstruction, parseApproveExtensionInstruction, parseCreateA2aSessionInstruction, parseCreateAnalyticsDashboardInstruction, parseCreateBulkDealInstruction, parseCreateChannelInstruction, parseCreateDynamicPricingEngineInstruction, parseCreateIncentiveProgramInstruction, parseCreateJobPostingInstruction, parseCreateMarketAnalyticsInstruction, parseCreateMultisigInstruction, parseCreateReplicationTemplateInstruction, parseCreateRoyaltyStreamInstruction, parseCreateServiceAuctionInstruction, parseCreateServiceListingInstruction, parseCreateWorkOrderInstruction, parseDeactivateAgentInstruction, parseDistributeIncentivesInstruction, parseExecuteBulkDealBatchInstruction, parseExportActionInstruction, parseExportAuditContextInstruction, parseExportBiometricQualityInstruction, parseExportComplianceStatusInstruction, parseExportDynamicPricingConfigInstruction, parseExportMultisigConfigInstruction, parseExportReportEntryInstruction, parseExportResourceConstraintsInstruction, parseExportRuleConditionInstruction, parseFileDisputeInstruction, parseFinalizeAuctionInstruction, parseGenerateComplianceReportInstruction, parseInitializeAuditTrailInstruction, parseInitializeGovernanceProposalInstruction, parseInitializeRbacConfigInstruction, parseInitiateNegotiationInstruction, parseListAgentForResaleInstruction, parseMakeCounterOfferInstruction, parseManageAgentStatusInstruction, parsePlaceAuctionBidInstruction, parseProcessPaymentInstruction, parsePurchaseServiceInstruction, parseRegisterAgentCompressedInstruction, parseRegisterAgentInstruction, parseRegisterExtensionInstruction, parseReplicateAgentInstruction, parseResolveDisputeInstruction, parseSendA2aMessageInstruction, parseSendMessageInstruction, parseSubmitDisputeEvidenceInstruction, parseSubmitWorkDeliveryInstruction, parseUpdateA2aStatusInstruction, parseUpdateAgentInstruction, parseUpdateAgentReputationInstruction, parseUpdateAgentServiceInstruction, parseUpdateAnalyticsDashboardInstruction, parseUpdateDynamicPricingInstruction, parseUpdateMarketAnalyticsInstruction, parseVerifyAgentInstruction };
14836
+ /**
14837
+ * System Program Addresses for Solana
14838
+ *
14839
+ * These are the standard system program addresses used across Solana.
14840
+ * Using constants instead of hardcoded values improves maintainability
14841
+ * and ensures consistency across the SDK.
14842
+ */
14843
+
14844
+ /**
14845
+ * Native SOL Mint Address
14846
+ * The mint address for wrapped SOL (native token)
14847
+ */
14848
+ declare const NATIVE_MINT_ADDRESS: Address$1<"So11111111111111111111111111111111111111112">;
14849
+
14850
+ /**
14851
+ * Governance Helper Utilities
14852
+ *
14853
+ * Comprehensive utilities for RBAC management, multi-signature wallets,
14854
+ * proposal lifecycle, and voting mechanisms.
14855
+ */
14856
+
14857
+ /**
14858
+ * Derive multisig account PDA
14859
+ */
14860
+ declare function deriveMultisigPda(programId: Address, authority: Address, multisigId: bigint): Promise<Address>;
14861
+ /**
14862
+ * Derive proposal account PDA
14863
+ */
14864
+ declare function deriveProposalPda(programId: Address, multisig: Address, proposalId: bigint): Promise<Address>;
14865
+
14866
+ export { A2AInstructions, type A2AMessage, type A2AMessageArgs, type A2AMessageSentEvent, type A2AMessageSentEventArgs, type A2ASession, type A2ASessionArgs, type A2ASessionCreatedEvent, type A2ASessionCreatedEventArgs, type A2AStatus, type A2AStatusArgs, type A2AStatusUpdatedEvent, type A2AStatusUpdatedEventArgs, A2_A_MESSAGE_DISCRIMINATOR, A2_A_SESSION_DISCRIMINATOR, A2_A_STATUS_DISCRIMINATOR, ACCEPT_JOB_APPLICATION_DISCRIMINATOR, ACTIVATE_AGENT_DISCRIMINATOR, ADD_TOP_AGENT_DISCRIMINATOR, AGENT_DISCRIMINATOR, AGENT_INCENTIVES_DISCRIMINATOR, AGENT_TREE_CONFIG_DISCRIMINATOR, AGENT_VERIFICATION_DISCRIMINATOR, ANALYTICS_DASHBOARD_DISCRIMINATOR, APPLY_TO_JOB_DISCRIMINATOR, APPROVE_EXTENSION_DISCRIMINATOR, ARBITRATOR_REGISTRY_DISCRIMINATOR, AUCTION_MARKETPLACE_DISCRIMINATOR, AUDIT_TRAIL_DISCRIMINATOR, type AcceptJobApplicationAsyncInput, type AcceptJobApplicationInput, type AcceptJobApplicationInstruction, type AcceptJobApplicationInstructionData, type AcceptJobApplicationInstructionDataArgs, type AccessAuditConfig, type AccessAuditConfigArgs, type AccessPolicy, type AccessPolicyArgs, type AccountInspectionResult, type AccountLockoutPolicies, type AccountLockoutPoliciesArgs, type Action, type ActionArgs, type ActionExport, type ActionExportArgs, type ActivateAgentAsyncInput, type ActivateAgentInput, type ActivateAgentInstruction, type ActivateAgentInstructionData, type ActivateAgentInstructionDataArgs, type ActivationRequirement, type ActivationRequirementArgs, ActivationRequirementType, type ActivationRequirementTypeArgs, type AddTopAgentInput, type AddTopAgentInstruction, type AddTopAgentInstructionData, type AddTopAgentInstructionDataArgs, type Agent, type AgentAccount, type AgentArgs, type AgentIncentives, type AgentIncentivesArgs, AgentInstructions, type AgentListedForResaleEvent, type AgentListedForResaleEventArgs, type AgentRegisteredEvent, type AgentRegisteredEventArgs, type AgentRegistrationData, type AgentReplicatedEvent, type AgentReplicatedEventArgs, type AgentServiceUpdatedEvent, type AgentServiceUpdatedEventArgs, type AgentStatusChangedEvent, type AgentStatusChangedEventArgs, type AgentTreeConfig, type AgentTreeConfigArgs, type AgentUpdatedEvent, type AgentUpdatedEventArgs, type AgentVerification, type AgentVerificationArgs, type AgentVerificationData, type AgentVerificationDataArgs, type AgentWithAddress, type AgingPolicy, type AgingPolicyArgs, type AnalyticsDashboard, type AnalyticsDashboardArgs, type AnalyticsDashboardCreatedEvent, type AnalyticsDashboardCreatedEventArgs, type AnalyticsDashboardUpdatedEvent, type AnalyticsDashboardUpdatedEventArgs, AnalyticsInstructions, ApplicationStatus, type ApplicationStatusArgs, type ApplyToJobAsyncInput, type ApplyToJobInput, type ApplyToJobInstruction, type ApplyToJobInstructionData, type ApplyToJobInstructionDataArgs, type ApprovalLevel, type ApprovalLevelArgs, type ApproveExtensionInput, type ApproveExtensionInstruction, type ApproveExtensionInstructionData, type ApproveExtensionInstructionDataArgs, type ArbitratorRegistry, type ArbitratorRegistryArgs, type AuctionBid, type AuctionBidArgs, type AuctionBidPlacedEvent, type AuctionBidPlacedEventArgs, type AuctionFailedEvent, type AuctionFailedEventArgs, type AuctionFinalizedEvent, type AuctionFinalizedEventArgs, AuctionInstructions, type AuctionMarketplace, type AuctionMarketplaceArgs, AuctionStatus, type AuctionStatusArgs, AuctionType, type AuctionTypeArgs, AuditAction, type AuditActionArgs, type AuditConfig, type AuditConfigArgs, type AuditContext, type AuditContextArgs, type AuditContextExport, type AuditContextExportArgs, type AuditEntry, type AuditEntryArgs, type AuditTrail, type AuditTrailArgs, type AuditTrailInitializedEvent, type AuditTrailInitializedEventArgs, AuthenticationLevel, type AuthenticationLevelArgs, AuthenticationMethod, type AuthenticationMethodArgs, type AuthenticationPolicies, type AuthenticationPoliciesArgs, type AuthenticationStrength, type AuthenticationStrengthArgs, type AuthorizationPolicies, type AuthorizationPoliciesArgs, BULK_DEAL_DISCRIMINATOR, BackupFrequency, type BackupFrequencyArgs, type BatchDiagnosticReport, type BiometricPolicies, type BiometricPoliciesArgs, type BiometricProtection, type BiometricProtectionArgs, type BiometricQuality, type BiometricQualityArgs, type BiometricQualityExport, type BiometricQualityExportArgs, BiometricStorageMethod, type BiometricStorageMethodArgs, BiometricType, type BiometricTypeArgs, type BulkDeal, type BulkDealArgs, type BulkDealBatchExecutedEvent, type BulkDealBatchExecutedEventArgs, type BulkDealCreatedEvent, type BulkDealCreatedEventArgs, BulkDealsInstructions, CHANNEL_DISCRIMINATOR, COMPLIANCE_REPORT_DISCRIMINATOR, CREATE_A2A_SESSION_DISCRIMINATOR, CREATE_ANALYTICS_DASHBOARD_DISCRIMINATOR, CREATE_BULK_DEAL_DISCRIMINATOR, CREATE_CHANNEL_DISCRIMINATOR, CREATE_DYNAMIC_PRICING_ENGINE_DISCRIMINATOR, CREATE_INCENTIVE_PROGRAM_DISCRIMINATOR, CREATE_JOB_POSTING_DISCRIMINATOR, CREATE_MARKET_ANALYTICS_DISCRIMINATOR, CREATE_MULTISIG_DISCRIMINATOR, CREATE_REPLICATION_TEMPLATE_DISCRIMINATOR, CREATE_ROYALTY_STREAM_DISCRIMINATOR, CREATE_SERVICE_AUCTION_DISCRIMINATOR, CREATE_SERVICE_LISTING_DISCRIMINATOR, CREATE_WORK_ORDER_DISCRIMINATOR, type Channel, type ChannelArgs, type ChannelCreatedEvent, type ChannelCreatedEventArgs, ChannelType, type ChannelTypeArgs, type Commitment$1 as Commitment, type ComplianceFlags, type ComplianceFlagsArgs, ComplianceInstructions, type ComplianceMetrics$1 as ComplianceMetrics, type ComplianceMetricsArgs, type CompliancePolicies, type CompliancePoliciesArgs, type ComplianceReport, type ComplianceReportArgs, type ComplianceReportGeneratedEvent, type ComplianceReportGeneratedEventArgs, type ComplianceStatus, type ComplianceStatusArgs, type ComplianceStatusExport, type ComplianceStatusExportArgs, type CompressedAgentCreatedEvent, type CompressedAgentCreatedEventArgs, ConditionType, type ConditionTypeArgs, type ConstraintCondition, type ConstraintConditionArgs, ConstraintOperator, type ConstraintOperatorArgs, ContractStatus, type ContractStatusArgs, type CounterOfferMadeEvent, type CounterOfferMadeEventArgs, type CreateA2ASessionParams$1 as CreateA2ASessionParams, type CreateA2aSessionAsyncInput, type CreateA2aSessionInput, type CreateA2aSessionInstruction, type CreateA2aSessionInstructionData, type CreateA2aSessionInstructionDataArgs, type CreateAnalyticsDashboardAsyncInput, type CreateAnalyticsDashboardInput, type CreateAnalyticsDashboardInstruction, type CreateAnalyticsDashboardInstructionData, type CreateAnalyticsDashboardInstructionDataArgs, type CreateBulkDealAsyncInput, type CreateBulkDealInput, type CreateBulkDealInstruction, type CreateBulkDealInstructionData, type CreateBulkDealInstructionDataArgs, type CreateChannelInput, type CreateChannelInstruction, type CreateChannelInstructionData, type CreateChannelInstructionDataArgs, type CreateDynamicPricingEngineAsyncInput, type CreateDynamicPricingEngineInput, type CreateDynamicPricingEngineInstruction, type CreateDynamicPricingEngineInstructionData, type CreateDynamicPricingEngineInstructionDataArgs, type CreateEscrowParams$1 as CreateEscrowParams, type CreateIncentiveProgramAsyncInput, type CreateIncentiveProgramInput, type CreateIncentiveProgramInstruction, type CreateIncentiveProgramInstructionData, type CreateIncentiveProgramInstructionDataArgs, type CreateJobPostingAsyncInput, type CreateJobPostingInput, type CreateJobPostingInstruction, type CreateJobPostingInstructionData, type CreateJobPostingInstructionDataArgs, type CreateJobPostingParams$1 as CreateJobPostingParams, type CreateMarketAnalyticsAsyncInput, type CreateMarketAnalyticsInput, type CreateMarketAnalyticsInstruction, type CreateMarketAnalyticsInstructionData, type CreateMarketAnalyticsInstructionDataArgs, type CreateMultisigAsyncInput, type CreateMultisigInput, type CreateMultisigInstruction, type CreateMultisigInstructionData, type CreateMultisigInstructionDataArgs, type CreateReplicationTemplateAsyncInput, type CreateReplicationTemplateInput, type CreateReplicationTemplateInstruction, type CreateReplicationTemplateInstructionData, type CreateReplicationTemplateInstructionDataArgs, type CreateRoyaltyStreamAsyncInput, type CreateRoyaltyStreamInput, type CreateRoyaltyStreamInstruction, type CreateRoyaltyStreamInstructionData, type CreateRoyaltyStreamInstructionDataArgs, type CreateServiceAuctionAsyncInput, type CreateServiceAuctionInput, type CreateServiceAuctionInstruction, type CreateServiceAuctionInstructionData, type CreateServiceAuctionInstructionDataArgs, type CreateServiceListingAsyncInput, type CreateServiceListingInput, type CreateServiceListingInstruction, type CreateServiceListingInstructionData, type CreateServiceListingInstructionDataArgs, type CreateServiceListingParams$1 as CreateServiceListingParams, type CreateWorkOrderInput, type CreateWorkOrderInstruction, type CreateWorkOrderInstructionData, type CreateWorkOrderInstructionDataArgs, DEACTIVATE_AGENT_DISCRIMINATOR, DISPUTE_CASE_DISCRIMINATOR, DISTRIBUTE_INCENTIVES_DISCRIMINATOR, DYNAMIC_PRICING_ENGINE_DISCRIMINATOR, DataAccessLevel, type DataAccessLevelArgs, type DataProtectionPolicies, type DataProtectionPoliciesArgs, type DeactivateAgentAsyncInput, type DeactivateAgentInput, type DeactivateAgentInstruction, type DeactivateAgentInstructionData, type DeactivateAgentInstructionDataArgs, DealType, type DealTypeArgs, DegradationHandling, type DegradationHandlingArgs, type DelegationInfo, type DelegationInfoArgs, type DelegationScope, type DelegationScopeArgs, Deliverable, type DeliverableArgs, type DiagnosticReport, type DiscriminatorValidationResult, type DisputeCase, type DisputeCaseArgs, type DisputeEvidence$1 as DisputeEvidence, type DisputeEvidenceArgs, type DisputeEvidenceSubmittedEvent, type DisputeEvidenceSubmittedEventArgs, type DisputeFiledEvent, type DisputeFiledEventArgs, type DisputeFilter, DisputeInstructions, type DisputeResolvedEvent, type DisputeResolvedEventArgs, DisputeStatus, type DisputeStatusArgs, type DisputeSummary, type DistributeIncentivesInput, type DistributeIncentivesInstruction, type DistributeIncentivesInstructionData, type DistributeIncentivesInstructionDataArgs, type DynamicPricingConfig, type DynamicPricingConfigArgs, type DynamicPricingConfigExport, type DynamicPricingConfigExportArgs, type DynamicPricingEngine, type DynamicPricingEngineArgs, type DynamicPricingEngineCreatedEvent, type DynamicPricingEngineCreatedEventArgs, type DynamicPricingUpdatedEvent, type DynamicPricingUpdatedEventArgs, EXECUTE_BULK_DEAL_BATCH_DISCRIMINATOR, EXPORT_ACTION_DISCRIMINATOR, EXPORT_AUDIT_CONTEXT_DISCRIMINATOR, EXPORT_BIOMETRIC_QUALITY_DISCRIMINATOR, EXPORT_COMPLIANCE_STATUS_DISCRIMINATOR, EXPORT_DYNAMIC_PRICING_CONFIG_DISCRIMINATOR, EXPORT_MULTISIG_CONFIG_DISCRIMINATOR, EXPORT_REPORT_ENTRY_DISCRIMINATOR, EXPORT_RESOURCE_CONSTRAINTS_DISCRIMINATOR, EXPORT_RULE_CONDITION_DISCRIMINATOR, EXTENSION_DISCRIMINATOR, type EmergencyAccessConfig, type EmergencyAccessConfigArgs, type EmergencyConfig, type EmergencyConfigArgs, EnforcementLevel, type EnforcementLevelArgs, type EscrowAccount, EscrowInstructions, EscrowStatus, type ExecuteBulkDealBatchAsyncInput, type ExecuteBulkDealBatchInput, type ExecuteBulkDealBatchInstruction, type ExecuteBulkDealBatchInstructionData, type ExecuteBulkDealBatchInstructionDataArgs, type ExecutionCondition, type ExecutionConditionArgs, type ExecutionParams, type ExecutionParamsArgs, type ExportActionInput, type ExportActionInstruction, type ExportActionInstructionData, type ExportActionInstructionDataArgs, type ExportAuditContextInput, type ExportAuditContextInstruction, type ExportAuditContextInstructionData, type ExportAuditContextInstructionDataArgs, type ExportBiometricQualityInput, type ExportBiometricQualityInstruction, type ExportBiometricQualityInstructionData, type ExportBiometricQualityInstructionDataArgs, type ExportComplianceStatusInput, type ExportComplianceStatusInstruction, type ExportComplianceStatusInstructionData, type ExportComplianceStatusInstructionDataArgs, type ExportDynamicPricingConfigInput, type ExportDynamicPricingConfigInstruction, type ExportDynamicPricingConfigInstructionData, type ExportDynamicPricingConfigInstructionDataArgs, type ExportMultisigConfigInput, type ExportMultisigConfigInstruction, type ExportMultisigConfigInstructionData, type ExportMultisigConfigInstructionDataArgs, type ExportReportEntryInput, type ExportReportEntryInstruction, type ExportReportEntryInstructionData, type ExportReportEntryInstructionDataArgs, type ExportResourceConstraintsInput, type ExportResourceConstraintsInstruction, type ExportResourceConstraintsInstructionData, type ExportResourceConstraintsInstructionDataArgs, type ExportRuleConditionInput, type ExportRuleConditionInstruction, type ExportRuleConditionInstructionData, type ExportRuleConditionInstructionDataArgs, type ExtendedRpcApi, type Extension, type ExtensionApprovedEvent, type ExtensionApprovedEventArgs, type ExtensionArgs, type ExtensionMetadata, type ExtensionMetadataArgs, type ExtensionRegisteredEvent, type ExtensionRegisteredEventArgs, ExtensionStatus, type ExtensionStatusArgs, ExtensionType, type ExtensionTypeArgs, FILE_DISPUTE_DISCRIMINATOR, FINALIZE_AUCTION_DISCRIMINATOR, type FileDisputeAsyncInput, type FileDisputeInput, type FileDisputeInstruction, type FileDisputeInstructionData, type FileDisputeInstructionDataArgs, type FinalizeAuctionInput, type FinalizeAuctionInstruction, type FinalizeAuctionInstructionData, type FinalizeAuctionInstructionDataArgs, GENERATE_COMPLIANCE_REPORT_DISCRIMINATOR, GHOSTSPEAK_MARKETPLACE_ERROR__ACCESS_DENIED, GHOSTSPEAK_MARKETPLACE_ERROR__ACCOUNT_ALREADY_INITIALIZED, GHOSTSPEAK_MARKETPLACE_ERROR__ACCOUNT_NOT_INITIALIZED, GHOSTSPEAK_MARKETPLACE_ERROR__AGENT_ALREADY_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__AGENT_ALREADY_REGISTERED, GHOSTSPEAK_MARKETPLACE_ERROR__AGENT_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__AGENT_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__ALREADY_VOTED, GHOSTSPEAK_MARKETPLACE_ERROR__ANALYTICS_NOT_ENABLED, GHOSTSPEAK_MARKETPLACE_ERROR__APPLICATION_ALREADY_PROCESSED, GHOSTSPEAK_MARKETPLACE_ERROR__APPLICATION_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__ARITHMETIC_OVERFLOW, GHOSTSPEAK_MARKETPLACE_ERROR__ARITHMETIC_UNDERFLOW, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_ALREADY_ENDED, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_DURATION_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_DURATION_TOO_SHORT, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_ENDED, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_NOT_ENDED, GHOSTSPEAK_MARKETPLACE_ERROR__BID_INCREMENT_TOO_LOW, GHOSTSPEAK_MARKETPLACE_ERROR__BID_TOO_LOW, GHOSTSPEAK_MARKETPLACE_ERROR__BULK_DEAL_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__CANNOT_CANCEL_AUCTION_WITH_BIDS, GHOSTSPEAK_MARKETPLACE_ERROR__CAPABILITY_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__CHANNEL_ALREADY_EXISTS, GHOSTSPEAK_MARKETPLACE_ERROR__CHANNEL_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__COMPLETION_PROOF_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__COMPLIANCE_CHECK_FAILED, GHOSTSPEAK_MARKETPLACE_ERROR__COMPUTE_BUDGET_EXCEEDED, GHOSTSPEAK_MARKETPLACE_ERROR__DATA_CORRUPTION_DETECTED, GHOSTSPEAK_MARKETPLACE_ERROR__DEADLINE_PASSED, GHOSTSPEAK_MARKETPLACE_ERROR__DEAL_ALREADY_FINALIZED, GHOSTSPEAK_MARKETPLACE_ERROR__DEAL_EXPIRED, GHOSTSPEAK_MARKETPLACE_ERROR__DEAL_FULL, GHOSTSPEAK_MARKETPLACE_ERROR__DEAL_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__DESCRIPTION_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_ALREADY_RESOLVED, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_CASE_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_DETAILS_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_REASON_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_WINDOW_EXPIRED, GHOSTSPEAK_MARKETPLACE_ERROR__DIVISION_BY_ZERO, GHOSTSPEAK_MARKETPLACE_ERROR__ESCROW_ALREADY_RELEASED, GHOSTSPEAK_MARKETPLACE_ERROR__ESCROW_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__EVIDENCE_WINDOW_EXPIRED, GHOSTSPEAK_MARKETPLACE_ERROR__EXTENSION_ALREADY_ENABLED, GHOSTSPEAK_MARKETPLACE_ERROR__EXTENSION_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__FEATURE_NOT_ENABLED, GHOSTSPEAK_MARKETPLACE_ERROR__GOVERNANCE_PROPOSAL_INVALID, GHOSTSPEAK_MARKETPLACE_ERROR__INCENTIVE_POOL_EXHAUSTED, GHOSTSPEAK_MARKETPLACE_ERROR__INPUT_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__INSUFFICIENT_BALANCE, GHOSTSPEAK_MARKETPLACE_ERROR__INSUFFICIENT_FUNDS, GHOSTSPEAK_MARKETPLACE_ERROR__INSUFFICIENT_PARTICIPANTS, GHOSTSPEAK_MARKETPLACE_ERROR__INSUFFICIENT_VOTING_POWER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_A2_A_PROTOCOL_MESSAGE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_ACCOUNT_OWNER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_AGENT_OWNER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_AGENT_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_AMOUNT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_APPLICATION_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_BID, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_CHANNEL_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_CONTRACT_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DEADLINE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DEAL_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DELIVERY_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DISCOUNT_PERCENTAGE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DISPUTE_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_ESCROW_AMOUNT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_ESCROW_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_EXPIRATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_EXTENSION_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_EXTENSION_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_GENOME_HASH, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_INCENTIVE_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_INPUT_FORMAT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_INPUT_LENGTH, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_JOB_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_MAX_PARTICIPANTS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_MESSAGE_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_METADATA_URI, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_METRICS_DATA, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_MIN_PARTICIPANTS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_NEGOTIATION_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_OFFER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_OFFER_AMOUNT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PARAMETER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PARTICIPANT_COUNT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PAYMENT_AMOUNT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PERCENTAGE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PERIOD, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PRICE_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PRICE_RANGE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_RATING, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_REPLICATION_CONFIG, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_REPORT_DATA, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_REPORT_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_REPUTATION_SCORE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_ROYALTY_PERCENTAGE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_SERVICE_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_SERVICE_ENDPOINT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_SERVICE_TYPE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_STARTING_PRICE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_STATE_TRANSITION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_STATUS_TRANSITION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_TASK_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_TASK_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_TRANSACTION_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_VALUE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_VOLUME, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_VOLUME_TIER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_WORK_ORDER_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__IPFS_HASH_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__JOB_ALREADY_FILLED, GHOSTSPEAK_MARKETPLACE_ERROR__JOB_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__LISTING_ALREADY_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__LISTING_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__MAINTENANCE_MODE_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__MAXIMUM_RETRIES_EXCEEDED, GHOSTSPEAK_MARKETPLACE_ERROR__MESSAGE_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__MESSAGE_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__METADATA_URI_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__METRICS_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__NAME_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__NEGOTIATION_EXPIRED, GHOSTSPEAK_MARKETPLACE_ERROR__NEGOTIATION_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__NO_DELIVERABLES, GHOSTSPEAK_MARKETPLACE_ERROR__NO_PARTICIPANTS, GHOSTSPEAK_MARKETPLACE_ERROR__OPERATION_NOT_SUPPORTED, GHOSTSPEAK_MARKETPLACE_ERROR__OPERATION_TIMED_OUT, GHOSTSPEAK_MARKETPLACE_ERROR__OVERLAPPING_VOLUME_TIERS, GHOSTSPEAK_MARKETPLACE_ERROR__PAYMENT_ALREADY_PROCESSED, GHOSTSPEAK_MARKETPLACE_ERROR__PRICE_MODEL_NOT_SUPPORTED, GHOSTSPEAK_MARKETPLACE_ERROR__PROTOCOL_VERSION_MISMATCH, GHOSTSPEAK_MARKETPLACE_ERROR__RATE_LIMIT_EXCEEDED, GHOSTSPEAK_MARKETPLACE_ERROR__REPLICATION_NOT_ALLOWED, GHOSTSPEAK_MARKETPLACE_ERROR__REPORT_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__REQUIREMENT_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__RESOLUTION_NOTES_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__RESOURCE_LOCKED, GHOSTSPEAK_MARKETPLACE_ERROR__ROYALTY_CONFIGURATION_INVALID, GHOSTSPEAK_MARKETPLACE_ERROR__SERVICE_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__SERVICE_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__SIGNATURE_VERIFICATION_FAILED, GHOSTSPEAK_MARKETPLACE_ERROR__STRING_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__TASK_ALREADY_COMPLETED, GHOSTSPEAK_MARKETPLACE_ERROR__TASK_DEADLINE_EXCEEDED, GHOSTSPEAK_MARKETPLACE_ERROR__TASK_ID_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__TASK_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__TERM_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__TITLE_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__TOKEN_TRANSFER_FAILED, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_AUDIT_ENTRIES, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_BIDS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_CAPABILITIES, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_COUNTER_OFFERS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_DELIVERABLES, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_EVIDENCE_ITEMS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_EVIDENCE_SUBMISSIONS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_REQUIREMENTS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_TERMS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_TOP_AGENTS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_VOLUME_TIERS, GHOSTSPEAK_MARKETPLACE_ERROR__UNAUTHORIZED_ACCESS, GHOSTSPEAK_MARKETPLACE_ERROR__UNAUTHORIZED_ARBITRATOR, GHOSTSPEAK_MARKETPLACE_ERROR__UPDATE_FREQUENCY_TOO_HIGH, GHOSTSPEAK_MARKETPLACE_ERROR__VALUE_BELOW_MINIMUM, GHOSTSPEAK_MARKETPLACE_ERROR__VALUE_EXCEEDS_MAXIMUM, GHOSTSPEAK_MARKETPLACE_ERROR__VOTING_PERIOD_ENDED, GHOSTSPEAK_MARKETPLACE_ERROR__WORK_ORDER_ALREADY_EXISTS, GHOSTSPEAK_MARKETPLACE_ERROR__WORK_ORDER_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS, GHOSTSPEAK_PROGRAM_ID, GOVERNANCE_PROPOSAL_DISCRIMINATOR, type GenerateComplianceReportAsyncInput, type GenerateComplianceReportInput, type GenerateComplianceReportInstruction, type GenerateComplianceReportInstructionData, type GenerateComplianceReportInstructionDataArgs, type GeographicRegion, type GeographicRegionArgs, GhostSpeakClient, type GhostSpeakConfig, GhostSpeakError, GhostspeakMarketplaceAccount, type GhostspeakMarketplaceError, GhostspeakMarketplaceInstruction, GovernanceInstructions, type GovernanceProposal, type GovernanceProposalArgs, type GovernanceProposalCreatedEvent, type GovernanceProposalCreatedEventArgs, type HierarchicalBoundary, type HierarchicalBoundaryArgs, INCENTIVE_PROGRAM_DISCRIMINATOR, INITIALIZE_AUDIT_TRAIL_DISCRIMINATOR, INITIALIZE_GOVERNANCE_PROPOSAL_DISCRIMINATOR, INITIALIZE_RBAC_CONFIG_DISCRIMINATOR, INITIATE_NEGOTIATION_DISCRIMINATOR, type IncentiveConfig, type IncentiveConfigArgs, type IncentiveDistributedEvent, type IncentiveDistributedEventArgs, type IncentiveProgram, type IncentiveProgramArgs, type IncentiveProgramCreatedEvent, type IncentiveProgramCreatedEventArgs, type IncidentResponsePolicies, type IncidentResponsePoliciesArgs, type InitializeAuditTrailAsyncInput, type InitializeAuditTrailInput, type InitializeAuditTrailInstruction, type InitializeAuditTrailInstructionData, type InitializeAuditTrailInstructionDataArgs, type InitializeGovernanceProposalAsyncInput, type InitializeGovernanceProposalInput, type InitializeGovernanceProposalInstruction, type InitializeGovernanceProposalInstructionData, type InitializeGovernanceProposalInstructionDataArgs, type InitializeRbacConfigAsyncInput, type InitializeRbacConfigInput, type InitializeRbacConfigInstruction, type InitializeRbacConfigInstructionData, type InitializeRbacConfigInstructionDataArgs, type InitiateNegotiationAsyncInput, type InitiateNegotiationInput, type InitiateNegotiationInstruction, type InitiateNegotiationInstructionData, type InitiateNegotiationInstructionDataArgs, JOB_APPLICATION_DISCRIMINATOR, JOB_CONTRACT_DISCRIMINATOR, JOB_POSTING_DISCRIMINATOR, type JobApplication, type JobApplicationAcceptedEvent, type JobApplicationAcceptedEventArgs, type JobApplicationArgs, type JobApplicationSubmittedEvent, type JobApplicationSubmittedEventArgs, type JobContract, type JobContractArgs, type JobPosting, type JobPostingArgs, type JobPostingCreatedEvent, type JobPostingCreatedEventArgs, type KeyPairSigner, LIST_AGENT_FOR_RESALE_DISCRIMINATOR, type LatitudeRange, type LatitudeRangeArgs, type LegacyAgentData, type ListAgentForResaleAsyncInput, type ListAgentForResaleInput, type ListAgentForResaleInstruction, type ListAgentForResaleInstructionData, type ListAgentForResaleInstructionDataArgs, type LocationConstraints, type LocationConstraintsArgs, type LongitudeRange, type LongitudeRangeArgs, MAKE_COUNTER_OFFER_DISCRIMINATOR, MANAGE_AGENT_STATUS_DISCRIMINATOR, MARKET_ANALYTICS_DISCRIMINATOR, MESSAGE_DISCRIMINATOR, MULTISIG_DISCRIMINATOR, type MakeCounterOfferInput, type MakeCounterOfferInstruction, type MakeCounterOfferInstructionData, type MakeCounterOfferInstructionDataArgs, type ManageAgentStatusAsyncInput, type ManageAgentStatusInput, type ManageAgentStatusInstruction, type ManageAgentStatusInstructionData, type ManageAgentStatusInstructionDataArgs, type MarketAnalytics, type MarketAnalyticsArgs, type MarketAnalyticsCreatedEvent, type MarketAnalyticsCreatedEventArgs, type MarketAnalyticsUpdatedEvent, type MarketAnalyticsUpdatedEventArgs, MarketplaceInstructions, type Message, type MessageArgs, type MessageSentEvent, type MessageSentEventArgs, MessageType, type MessageTypeArgs, type MigrationPlan, type MigrationResult, type Multisig, type MultisigArgs, type MultisigConfig, type MultisigConfigArgs, type MultisigConfigExport, type MultisigConfigExportArgs, type MultisigCreatedEvent, type MultisigCreatedEventArgs, type MultisigSignature, type MultisigSignatureArgs, type MultisigSummary, NATIVE_MINT_ADDRESS, NEGOTIATION_CHATBOT_DISCRIMINATOR, type NegotiationChatbot, type NegotiationChatbotArgs, type NegotiationInitiatedEvent, type NegotiationInitiatedEventArgs, NegotiationStatus, type NegotiationStatusArgs, type NetworkSecurityPolicies, type NetworkSecurityPoliciesArgs, NotificationMethod, type NotificationMethodArgs, NotificationPriority, type NotificationPriorityArgs, type NotificationRequirement, type NotificationRequirementArgs, type NotificationTarget, type NotificationTargetArgs, NotificationTargetType, type NotificationTargetTypeArgs, NotificationTiming, type NotificationTimingArgs, PAYMENT_DISCRIMINATOR, PLACE_AUCTION_BID_DISCRIMINATOR, PROCESS_PAYMENT_DISCRIMINATOR, PURCHASE_SERVICE_DISCRIMINATOR, type ParsedAcceptJobApplicationInstruction, type ParsedActivateAgentInstruction, type ParsedAddTopAgentInstruction, type ParsedApplyToJobInstruction, type ParsedApproveExtensionInstruction, type ParsedCreateA2aSessionInstruction, type ParsedCreateAnalyticsDashboardInstruction, type ParsedCreateBulkDealInstruction, type ParsedCreateChannelInstruction, type ParsedCreateDynamicPricingEngineInstruction, type ParsedCreateIncentiveProgramInstruction, type ParsedCreateJobPostingInstruction, type ParsedCreateMarketAnalyticsInstruction, type ParsedCreateMultisigInstruction, type ParsedCreateReplicationTemplateInstruction, type ParsedCreateRoyaltyStreamInstruction, type ParsedCreateServiceAuctionInstruction, type ParsedCreateServiceListingInstruction, type ParsedCreateWorkOrderInstruction, type ParsedDeactivateAgentInstruction, type ParsedDistributeIncentivesInstruction, type ParsedExecuteBulkDealBatchInstruction, type ParsedExportActionInstruction, type ParsedExportAuditContextInstruction, type ParsedExportBiometricQualityInstruction, type ParsedExportComplianceStatusInstruction, type ParsedExportDynamicPricingConfigInstruction, type ParsedExportMultisigConfigInstruction, type ParsedExportReportEntryInstruction, type ParsedExportResourceConstraintsInstruction, type ParsedExportRuleConditionInstruction, type ParsedFileDisputeInstruction, type ParsedFinalizeAuctionInstruction, type ParsedGenerateComplianceReportInstruction, type ParsedGhostspeakMarketplaceInstruction, type ParsedInitializeAuditTrailInstruction, type ParsedInitializeGovernanceProposalInstruction, type ParsedInitializeRbacConfigInstruction, type ParsedInitiateNegotiationInstruction, type ParsedListAgentForResaleInstruction, type ParsedMakeCounterOfferInstruction, type ParsedManageAgentStatusInstruction, type ParsedPlaceAuctionBidInstruction, type ParsedProcessPaymentInstruction, type ParsedPurchaseServiceInstruction, type ParsedRegisterAgentCompressedInstruction, type ParsedRegisterAgentInstruction, type ParsedRegisterExtensionInstruction, type ParsedReplicateAgentInstruction, type ParsedResolveDisputeInstruction, type ParsedSendA2aMessageInstruction, type ParsedSendMessageInstruction, type ParsedSubmitDisputeEvidenceInstruction, type ParsedSubmitWorkDeliveryInstruction, type ParsedUpdateA2aStatusInstruction, type ParsedUpdateAgentInstruction, type ParsedUpdateAgentReputationInstruction, type ParsedUpdateAgentServiceInstruction, type ParsedUpdateAnalyticsDashboardInstruction, type ParsedUpdateDynamicPricingInstruction, type ParsedUpdateMarketAnalyticsInstruction, type ParsedVerifyAgentInstruction, type PasswordPolicies, type PasswordPoliciesArgs, type Payment, type PaymentArgs, type PaymentProcessedEvent, type PaymentProcessedEventArgs, type PendingTransaction, type PendingTransactionArgs, type Permission, type PermissionArgs, type PermissionConstraint, type PermissionConstraintArgs, PermissionConstraintType, type PermissionConstraintTypeArgs, type PermissionMetadata, type PermissionMetadataArgs, type PermissionScope, type PermissionScopeArgs, type PlaceAuctionBidInput, type PlaceAuctionBidInstruction, type PlaceAuctionBidInstructionData, type PlaceAuctionBidInstructionDataArgs, type PolicyMetadata, type PolicyMetadataArgs, type PolicyRule, type PolicyRuleArgs, type PolicyScope, type PolicyScopeArgs, PolicyStatus, type PolicyStatusArgs, PolicyType, type PolicyTypeArgs, PricingAlgorithm, type PricingAlgorithmArgs, PricingModel, type PricingModelArgs, type ProcessPaymentAsyncInput, type ProcessPaymentInput, type ProcessPaymentInstruction, type ProcessPaymentInstructionData, type ProcessPaymentInstructionDataArgs, type ProposalAccount, type ProposalAccountArgs, type ProposalFilter, type ProposalInstruction, type ProposalInstructionArgs, type ProposalMetadata, type ProposalMetadataArgs, ProposalStatus, type ProposalStatusArgs, type ProposalSummary, ProposalType, type ProposalTypeArgs, type PurchaseServiceAsyncInput, type PurchaseServiceInput, type PurchaseServiceInstruction, type PurchaseServiceInstructionData, type PurchaseServiceInstructionDataArgs, PurchaseStatus, type PurchaseStatusArgs, QuorumMethod, type QuorumMethodArgs, type QuorumRequirements, type QuorumRequirementsArgs, RBAC_CONFIG_DISCRIMINATOR, REGISTER_AGENT_COMPRESSED_DISCRIMINATOR, REGISTER_AGENT_DISCRIMINATOR, REGISTER_EXTENSION_DISCRIMINATOR, REPLICATE_AGENT_DISCRIMINATOR, REPLICATION_RECORD_DISCRIMINATOR, REPLICATION_TEMPLATE_DISCRIMINATOR, RESALE_MARKET_DISCRIMINATOR, RESOLVE_DISPUTE_DISCRIMINATOR, ROYALTY_STREAM_DISCRIMINATOR, type RbacConfig, type RbacConfigArgs, type RbacConfigInitializedEvent, type RbacConfigInitializedEventArgs, type RegisterAgentAsyncInput, type RegisterAgentCompressedAsyncInput, type RegisterAgentCompressedInput, type RegisterAgentCompressedInstruction, type RegisterAgentCompressedInstructionData, type RegisterAgentCompressedInstructionDataArgs, type RegisterAgentInput, type RegisterAgentInstruction, type RegisterAgentInstructionData, type RegisterAgentInstructionDataArgs, type RegisterAgentParams, type RegisterExtensionAsyncInput, type RegisterExtensionInput, type RegisterExtensionInstruction, type RegisterExtensionInstructionData, type RegisterExtensionInstructionDataArgs, type ReplicateAgentAsyncInput, type ReplicateAgentInput, type ReplicateAgentInstruction, type ReplicateAgentInstructionData, type ReplicateAgentInstructionDataArgs, type ReplicationRecord, type ReplicationRecordArgs, type ReplicationTemplate, type ReplicationTemplateArgs, type ReplicationTemplateCreatedEvent, type ReplicationTemplateCreatedEventArgs, type ReportData, type ReportDataArgs, type ReportEntry, type ReportEntryArgs, type ReportEntryExport, type ReportEntryExportArgs, ReportStatus, type ReportStatusArgs, type ReportSummary, type ReportSummaryArgs, ReportType, type ReportTypeArgs, ReportingFrequency, type ReportingFrequencyArgs, type ResaleMarket, type ResaleMarketArgs, type ResolveDisputeAsyncInput, type ResolveDisputeInput, type ResolveDisputeInstruction, type ResolveDisputeInstructionData, type ResolveDisputeInstructionDataArgs, type ResourceConstraints, type ResourceConstraintsArgs, type ResourceConstraintsExport, type ResourceConstraintsExportArgs, type RetryConfig, type ReviewSchedule, type ReviewScheduleArgs, type RiskAcceptance, type RiskAcceptanceArgs, type RiskAssessment, type RiskAssessmentArgs, RiskCategory, type RiskCategoryArgs, type RiskFactor, type RiskFactorArgs, type RiskIndicator, type RiskIndicatorArgs, RiskLevel, type RiskLevelArgs, type Role, type RoleArgs, type RoleConstraints, type RoleConstraintsArgs, type RoleMetadata, type RoleMetadataArgs, RoleStatus, type RoleStatusArgs, RoleType, type RoleTypeArgs, type RoyaltyConfig, type RoyaltyConfigArgs, type RoyaltyStream, type RoyaltyStreamArgs, type RoyaltyStreamCreatedEvent, type RoyaltyStreamCreatedEventArgs, type RpcAccountInfo, type RpcAccountInfoResponse, type RpcApi, type RpcMultipleAccountsResponse, type RpcProgramAccount, type RpcProgramAccountsResponse, type RpcResponse, type RpcSubscriptionApi, type RuleCondition, type RuleConditionArgs, type RuleConditionExport, type RuleConditionExportArgs, RuleEffect, type RuleEffectArgs, SEND_A2A_MESSAGE_DISCRIMINATOR, SEND_MESSAGE_DISCRIMINATOR, SERVICE_LISTING_DISCRIMINATOR, SERVICE_PURCHASE_DISCRIMINATOR, SUBMIT_DISPUTE_EVIDENCE_DISCRIMINATOR, SUBMIT_WORK_DELIVERY_DISCRIMINATOR, type ScopeBoundaries, type ScopeBoundariesArgs, ScopeInheritance, type ScopeInheritanceArgs, ScopeType, type ScopeTypeArgs, SecurityEventType, type SecurityEventTypeArgs, type SecurityPolicies, type SecurityPoliciesArgs, type SendA2AMessageParams$1 as SendA2AMessageParams, type SendA2aMessageInput, type SendA2aMessageInstruction, type SendA2aMessageInstructionData, type SendA2aMessageInstructionDataArgs, type SendMessageInput, type SendMessageInstruction, type SendMessageInstructionData, type SendMessageInstructionDataArgs, type ServiceAuctionCreatedEvent, type ServiceAuctionCreatedEventArgs, type ServiceListing, type ServiceListingArgs, type ServiceListingCreatedEvent, type ServiceListingCreatedEventArgs, type ServiceListingData, type ServiceListingWithAddress, type ServicePurchase, type ServicePurchaseArgs, type ServicePurchasedEvent, type ServicePurchasedEventArgs, type SessionConstraints, type SessionConstraintsArgs, type SessionPolicies, type SessionPoliciesArgs, type SimulatedTransactionResponse, type SodConstraint, type SodConstraintArgs, SodConstraintType, type SodConstraintTypeArgs, type SolanaRpcClient, StepUpTrigger, type StepUpTriggerArgs, type SubmissionDetails, type SubmissionDetailsArgs, type SubmitDisputeEvidenceAsyncInput, type SubmitDisputeEvidenceInput, type SubmitDisputeEvidenceInstruction, type SubmitDisputeEvidenceInstructionData, type SubmitDisputeEvidenceInstructionDataArgs, type SubmitWorkDeliveryAsyncInput, type SubmitWorkDeliveryInput, type SubmitWorkDeliveryInstruction, type SubmitWorkDeliveryInstructionData, type SubmitWorkDeliveryInstructionDataArgs, type TimeConstraints, type TimeConstraintsArgs, type TimeLock, type TimeLockArgs, TimeLockType, type TimeLockTypeArgs, type TopAgentAddedEvent, type TopAgentAddedEventArgs, TransactionPriority, type TransactionPriorityArgs, type TransactionResponse, TransactionStatus, type TransactionStatusArgs, TransactionType, type TransactionTypeArgs, TrendDirection, type TrendDirectionArgs, UPDATE_A2A_STATUS_DISCRIMINATOR, UPDATE_AGENT_DISCRIMINATOR, UPDATE_AGENT_REPUTATION_DISCRIMINATOR, UPDATE_AGENT_SERVICE_DISCRIMINATOR, UPDATE_ANALYTICS_DASHBOARD_DISCRIMINATOR, UPDATE_DYNAMIC_PRICING_DISCRIMINATOR, UPDATE_MARKET_ANALYTICS_DISCRIMINATOR, USER_REGISTRY_DISCRIMINATOR, UnlockMethod, type UnlockMethodArgs, type UpdateA2aStatusAsyncInput, type UpdateA2aStatusInput, type UpdateA2aStatusInstruction, type UpdateA2aStatusInstructionData, type UpdateA2aStatusInstructionDataArgs, type UpdateAgentAsyncInput, type UpdateAgentInput, type UpdateAgentInstruction, type UpdateAgentInstructionData, type UpdateAgentInstructionDataArgs, type UpdateAgentReputationAsyncInput, type UpdateAgentReputationInput, type UpdateAgentReputationInstruction, type UpdateAgentReputationInstructionData, type UpdateAgentReputationInstructionDataArgs, type UpdateAgentServiceAsyncInput, type UpdateAgentServiceInput, type UpdateAgentServiceInstruction, type UpdateAgentServiceInstructionData, type UpdateAgentServiceInstructionDataArgs, type UpdateAnalyticsDashboardAsyncInput, type UpdateAnalyticsDashboardInput, type UpdateAnalyticsDashboardInstruction, type UpdateAnalyticsDashboardInstructionData, type UpdateAnalyticsDashboardInstructionDataArgs, type UpdateDynamicPricingInput, type UpdateDynamicPricingInstruction, type UpdateDynamicPricingInstructionData, type UpdateDynamicPricingInstructionDataArgs, type UpdateMarketAnalyticsInput, type UpdateMarketAnalyticsInstruction, type UpdateMarketAnalyticsInstructionData, type UpdateMarketAnalyticsInstructionDataArgs, type UserRegistry, type UserRegistryArgs, VERIFY_AGENT_DISCRIMINATOR, ValueType, type ValueTypeArgs, type VerifyAgentAsyncInput, type VerifyAgentInput, type VerifyAgentInstruction, type VerifyAgentInstructionData, type VerifyAgentInstructionDataArgs, ViolationSeverity, type ViolationSeverityArgs, type VolumeTier, type VolumeTierArgs, type Vote, type VoteArgs, VoteChoice, type VoteChoiceArgs, type VotingResults, type VotingResultsArgs, WORK_DELIVERY_DISCRIMINATOR, WORK_ORDER_DISCRIMINATOR, type WorkDelivery, type WorkDeliveryArgs, type WorkDeliverySubmittedEvent, type WorkDeliverySubmittedEventArgs, type WorkOrder, type WorkOrderArgs, type WorkOrderCreatedEvent, type WorkOrderCreatedEventArgs, WorkOrderStatus, type WorkOrderStatusArgs, createDiscriminatorErrorMessage, createMigrationPlan, createMigrationReport, decodeA2AMessage, decodeA2ASession, decodeA2AStatus, decodeAgent, decodeAgentIncentives, decodeAgentTreeConfig, decodeAgentVerification, decodeAnalyticsDashboard, decodeArbitratorRegistry, decodeAuctionMarketplace, decodeAuditTrail, decodeBulkDeal, decodeChannel, decodeComplianceReport, decodeDisputeCase, decodeDynamicPricingEngine, decodeExtension, decodeGovernanceProposal, decodeIncentiveProgram, decodeJobApplication, decodeJobContract, decodeJobPosting, decodeMarketAnalytics, decodeMessage, decodeMultisig, decodeNegotiationChatbot, decodePayment, decodeRbacConfig, decodeReplicationRecord, decodeReplicationTemplate, decodeResaleMarket, decodeRoyaltyStream, decodeServiceListing, decodeServicePurchase, decodeUserRegistry, decodeWorkDelivery, decodeWorkOrder, delegationScope, deriveA2AMessagePda, deriveA2ASessionPda, deriveMultisigPda, deriveProposalPda, diagnoseAccountFromChain, diagnoseBatchFromChain, exportDiagnosticReport, extractLegacyData, fetchA2AMessage, fetchA2ASession, fetchA2AStatus, fetchAgent, fetchAgentIncentives, fetchAgentTreeConfig, fetchAgentVerification, fetchAllA2AMessage, fetchAllA2ASession, fetchAllA2AStatus, fetchAllAgent, fetchAllAgentIncentives, fetchAllAgentTreeConfig, fetchAllAgentVerification, fetchAllAnalyticsDashboard, fetchAllArbitratorRegistry, fetchAllAuctionMarketplace, fetchAllAuditTrail, fetchAllBulkDeal, fetchAllChannel, fetchAllComplianceReport, fetchAllDisputeCase, fetchAllDynamicPricingEngine, fetchAllExtension, fetchAllGovernanceProposal, fetchAllIncentiveProgram, fetchAllJobApplication, fetchAllJobContract, fetchAllJobPosting, fetchAllMarketAnalytics, fetchAllMaybeA2AMessage, fetchAllMaybeA2ASession, fetchAllMaybeA2AStatus, fetchAllMaybeAgent, fetchAllMaybeAgentIncentives, fetchAllMaybeAgentTreeConfig, fetchAllMaybeAgentVerification, fetchAllMaybeAnalyticsDashboard, fetchAllMaybeArbitratorRegistry, fetchAllMaybeAuctionMarketplace, fetchAllMaybeAuditTrail, fetchAllMaybeBulkDeal, fetchAllMaybeChannel, fetchAllMaybeComplianceReport, fetchAllMaybeDisputeCase, fetchAllMaybeDynamicPricingEngine, fetchAllMaybeExtension, fetchAllMaybeGovernanceProposal, fetchAllMaybeIncentiveProgram, fetchAllMaybeJobApplication, fetchAllMaybeJobContract, fetchAllMaybeJobPosting, fetchAllMaybeMarketAnalytics, fetchAllMaybeMessage, fetchAllMaybeMultisig, fetchAllMaybeNegotiationChatbot, fetchAllMaybePayment, fetchAllMaybeRbacConfig, fetchAllMaybeReplicationRecord, fetchAllMaybeReplicationTemplate, fetchAllMaybeResaleMarket, fetchAllMaybeRoyaltyStream, fetchAllMaybeServiceListing, fetchAllMaybeServicePurchase, fetchAllMaybeUserRegistry, fetchAllMaybeWorkDelivery, fetchAllMaybeWorkOrder, fetchAllMessage, fetchAllMultisig, fetchAllNegotiationChatbot, fetchAllPayment, fetchAllRbacConfig, fetchAllReplicationRecord, fetchAllReplicationTemplate, fetchAllResaleMarket, fetchAllRoyaltyStream, fetchAllServiceListing, fetchAllServicePurchase, fetchAllUserRegistry, fetchAllWorkDelivery, fetchAllWorkOrder, fetchAnalyticsDashboard, fetchArbitratorRegistry, fetchAuctionMarketplace, fetchAuditTrail, fetchBulkDeal, fetchChannel, fetchComplianceReport, fetchDisputeCase, fetchDynamicPricingEngine, fetchExtension, fetchGovernanceProposal, fetchIncentiveProgram, fetchJobApplication, fetchJobContract, fetchJobPosting, fetchMarketAnalytics, fetchMaybeA2AMessage, fetchMaybeA2ASession, fetchMaybeA2AStatus, fetchMaybeAgent, fetchMaybeAgentIncentives, fetchMaybeAgentTreeConfig, fetchMaybeAgentVerification, fetchMaybeAnalyticsDashboard, fetchMaybeArbitratorRegistry, fetchMaybeAuctionMarketplace, fetchMaybeAuditTrail, fetchMaybeBulkDeal, fetchMaybeChannel, fetchMaybeComplianceReport, fetchMaybeDisputeCase, fetchMaybeDynamicPricingEngine, fetchMaybeExtension, fetchMaybeGovernanceProposal, fetchMaybeIncentiveProgram, fetchMaybeJobApplication, fetchMaybeJobContract, fetchMaybeJobPosting, fetchMaybeMarketAnalytics, fetchMaybeMessage, fetchMaybeMultisig, fetchMaybeNegotiationChatbot, fetchMaybePayment, fetchMaybeRbacConfig, fetchMaybeReplicationRecord, fetchMaybeReplicationTemplate, fetchMaybeResaleMarket, fetchMaybeRoyaltyStream, fetchMaybeServiceListing, fetchMaybeServicePurchase, fetchMaybeUserRegistry, fetchMaybeWorkDelivery, fetchMaybeWorkOrder, fetchMessage, fetchMultisig, fetchNegotiationChatbot, fetchPayment, fetchRbacConfig, fetchReplicationRecord, fetchReplicationTemplate, fetchResaleMarket, fetchRoyaltyStream, fetchServiceListing, fetchServicePurchase, fetchUserRegistry, fetchWorkDelivery, fetchWorkOrder, getA2AMessageCodec, getA2AMessageDecoder, getA2AMessageDiscriminatorBytes, getA2AMessageEncoder, getA2AMessageSentEventCodec, getA2AMessageSentEventDecoder, getA2AMessageSentEventEncoder, getA2ASessionCodec, getA2ASessionCreatedEventCodec, getA2ASessionCreatedEventDecoder, getA2ASessionCreatedEventEncoder, getA2ASessionDecoder, getA2ASessionDiscriminatorBytes, getA2ASessionEncoder, getA2AStatusCodec, getA2AStatusDecoder, getA2AStatusDiscriminatorBytes, getA2AStatusEncoder, getA2AStatusUpdatedEventCodec, getA2AStatusUpdatedEventDecoder, getA2AStatusUpdatedEventEncoder, getAcceptJobApplicationDiscriminatorBytes, getAcceptJobApplicationInstruction, getAcceptJobApplicationInstructionAsync, getAcceptJobApplicationInstructionDataCodec, getAcceptJobApplicationInstructionDataDecoder, getAcceptJobApplicationInstructionDataEncoder, getAccessAuditConfigCodec, getAccessAuditConfigDecoder, getAccessAuditConfigEncoder, getAccessPolicyCodec, getAccessPolicyDecoder, getAccessPolicyEncoder, getAccountLockoutPoliciesCodec, getAccountLockoutPoliciesDecoder, getAccountLockoutPoliciesEncoder, getActionCodec, getActionDecoder, getActionEncoder, getActionExportCodec, getActionExportDecoder, getActionExportEncoder, getActivateAgentDiscriminatorBytes, getActivateAgentInstruction, getActivateAgentInstructionAsync, getActivateAgentInstructionDataCodec, getActivateAgentInstructionDataDecoder, getActivateAgentInstructionDataEncoder, getActivationRequirementCodec, getActivationRequirementDecoder, getActivationRequirementEncoder, getActivationRequirementTypeCodec, getActivationRequirementTypeDecoder, getActivationRequirementTypeEncoder, getAddTopAgentDiscriminatorBytes, getAddTopAgentInstruction, getAddTopAgentInstructionDataCodec, getAddTopAgentInstructionDataDecoder, getAddTopAgentInstructionDataEncoder, getAgentCodec, getAgentDecoder, getAgentDiscriminatorBytes, getAgentEncoder, getAgentIncentivesCodec, getAgentIncentivesDecoder, getAgentIncentivesDiscriminatorBytes, getAgentIncentivesEncoder, getAgentIncentivesSize, getAgentListedForResaleEventCodec, getAgentListedForResaleEventDecoder, getAgentListedForResaleEventEncoder, getAgentRegisteredEventCodec, getAgentRegisteredEventDecoder, getAgentRegisteredEventEncoder, getAgentReplicatedEventCodec, getAgentReplicatedEventDecoder, getAgentReplicatedEventEncoder, getAgentServiceUpdatedEventCodec, getAgentServiceUpdatedEventDecoder, getAgentServiceUpdatedEventEncoder, getAgentStatusChangedEventCodec, getAgentStatusChangedEventDecoder, getAgentStatusChangedEventEncoder, getAgentTreeConfigCodec, getAgentTreeConfigDecoder, getAgentTreeConfigDiscriminatorBytes, getAgentTreeConfigEncoder, getAgentTreeConfigSize, getAgentUpdatedEventCodec, getAgentUpdatedEventDecoder, getAgentUpdatedEventEncoder, getAgentVerificationCodec, getAgentVerificationDataCodec, getAgentVerificationDataDecoder, getAgentVerificationDataEncoder, getAgentVerificationDecoder, getAgentVerificationDiscriminatorBytes, getAgentVerificationEncoder, getAgingPolicyCodec, getAgingPolicyDecoder, getAgingPolicyEncoder, getAnalyticsDashboardCodec, getAnalyticsDashboardCreatedEventCodec, getAnalyticsDashboardCreatedEventDecoder, getAnalyticsDashboardCreatedEventEncoder, getAnalyticsDashboardDecoder, getAnalyticsDashboardDiscriminatorBytes, getAnalyticsDashboardEncoder, getAnalyticsDashboardUpdatedEventCodec, getAnalyticsDashboardUpdatedEventDecoder, getAnalyticsDashboardUpdatedEventEncoder, getApplicationStatusCodec, getApplicationStatusDecoder, getApplicationStatusEncoder, getApplyToJobDiscriminatorBytes, getApplyToJobInstruction, getApplyToJobInstructionAsync, getApplyToJobInstructionDataCodec, getApplyToJobInstructionDataDecoder, getApplyToJobInstructionDataEncoder, getApprovalLevelCodec, getApprovalLevelDecoder, getApprovalLevelEncoder, getApproveExtensionDiscriminatorBytes, getApproveExtensionInstruction, getApproveExtensionInstructionDataCodec, getApproveExtensionInstructionDataDecoder, getApproveExtensionInstructionDataEncoder, getArbitratorRegistryCodec, getArbitratorRegistryDecoder, getArbitratorRegistryDiscriminatorBytes, getArbitratorRegistryEncoder, getAuctionBidCodec, getAuctionBidDecoder, getAuctionBidEncoder, getAuctionBidPlacedEventCodec, getAuctionBidPlacedEventDecoder, getAuctionBidPlacedEventEncoder, getAuctionFailedEventCodec, getAuctionFailedEventDecoder, getAuctionFailedEventEncoder, getAuctionFinalizedEventCodec, getAuctionFinalizedEventDecoder, getAuctionFinalizedEventEncoder, getAuctionMarketplaceCodec, getAuctionMarketplaceDecoder, getAuctionMarketplaceDiscriminatorBytes, getAuctionMarketplaceEncoder, getAuctionStatusCodec, getAuctionStatusDecoder, getAuctionStatusEncoder, getAuctionTypeCodec, getAuctionTypeDecoder, getAuctionTypeEncoder, getAuditActionCodec, getAuditActionDecoder, getAuditActionEncoder, getAuditConfigCodec, getAuditConfigDecoder, getAuditConfigEncoder, getAuditContextCodec, getAuditContextDecoder, getAuditContextEncoder, getAuditContextExportCodec, getAuditContextExportDecoder, getAuditContextExportEncoder, getAuditEntryCodec, getAuditEntryDecoder, getAuditEntryEncoder, getAuditTrailCodec, getAuditTrailDecoder, getAuditTrailDiscriminatorBytes, getAuditTrailEncoder, getAuditTrailInitializedEventCodec, getAuditTrailInitializedEventDecoder, getAuditTrailInitializedEventEncoder, getAuthenticationLevelCodec, getAuthenticationLevelDecoder, getAuthenticationLevelEncoder, getAuthenticationMethodCodec, getAuthenticationMethodDecoder, getAuthenticationMethodEncoder, getAuthenticationPoliciesCodec, getAuthenticationPoliciesDecoder, getAuthenticationPoliciesEncoder, getAuthenticationStrengthCodec, getAuthenticationStrengthDecoder, getAuthenticationStrengthEncoder, getAuthorizationPoliciesCodec, getAuthorizationPoliciesDecoder, getAuthorizationPoliciesEncoder, getBackupFrequencyCodec, getBackupFrequencyDecoder, getBackupFrequencyEncoder, getBiometricPoliciesCodec, getBiometricPoliciesDecoder, getBiometricPoliciesEncoder, getBiometricProtectionCodec, getBiometricProtectionDecoder, getBiometricProtectionEncoder, getBiometricQualityCodec, getBiometricQualityDecoder, getBiometricQualityEncoder, getBiometricQualityExportCodec, getBiometricQualityExportDecoder, getBiometricQualityExportEncoder, getBiometricStorageMethodCodec, getBiometricStorageMethodDecoder, getBiometricStorageMethodEncoder, getBiometricTypeCodec, getBiometricTypeDecoder, getBiometricTypeEncoder, getBulkDealBatchExecutedEventCodec, getBulkDealBatchExecutedEventDecoder, getBulkDealBatchExecutedEventEncoder, getBulkDealCodec, getBulkDealCreatedEventCodec, getBulkDealCreatedEventDecoder, getBulkDealCreatedEventEncoder, getBulkDealDecoder, getBulkDealDiscriminatorBytes, getBulkDealEncoder, getChannelCodec, getChannelCreatedEventCodec, getChannelCreatedEventDecoder, getChannelCreatedEventEncoder, getChannelDecoder, getChannelDiscriminatorBytes, getChannelEncoder, getChannelTypeCodec, getChannelTypeDecoder, getChannelTypeEncoder, getComplianceFlagsCodec, getComplianceFlagsDecoder, getComplianceFlagsEncoder, getComplianceMetricsCodec, getComplianceMetricsDecoder, getComplianceMetricsEncoder, getCompliancePoliciesCodec, getCompliancePoliciesDecoder, getCompliancePoliciesEncoder, getComplianceReportCodec, getComplianceReportDecoder, getComplianceReportDiscriminatorBytes, getComplianceReportEncoder, getComplianceReportGeneratedEventCodec, getComplianceReportGeneratedEventDecoder, getComplianceReportGeneratedEventEncoder, getComplianceStatusCodec, getComplianceStatusDecoder, getComplianceStatusEncoder, getComplianceStatusExportCodec, getComplianceStatusExportDecoder, getComplianceStatusExportEncoder, getCompressedAgentCreatedEventCodec, getCompressedAgentCreatedEventDecoder, getCompressedAgentCreatedEventEncoder, getConditionTypeCodec, getConditionTypeDecoder, getConditionTypeEncoder, getConstraintConditionCodec, getConstraintConditionDecoder, getConstraintConditionEncoder, getConstraintOperatorCodec, getConstraintOperatorDecoder, getConstraintOperatorEncoder, getContractStatusCodec, getContractStatusDecoder, getContractStatusEncoder, getCounterOfferMadeEventCodec, getCounterOfferMadeEventDecoder, getCounterOfferMadeEventEncoder, getCreateA2aSessionDiscriminatorBytes, getCreateA2aSessionInstruction, getCreateA2aSessionInstructionAsync, getCreateA2aSessionInstructionDataCodec, getCreateA2aSessionInstructionDataDecoder, getCreateA2aSessionInstructionDataEncoder, getCreateAnalyticsDashboardDiscriminatorBytes, getCreateAnalyticsDashboardInstruction, getCreateAnalyticsDashboardInstructionAsync, getCreateAnalyticsDashboardInstructionDataCodec, getCreateAnalyticsDashboardInstructionDataDecoder, getCreateAnalyticsDashboardInstructionDataEncoder, getCreateBulkDealDiscriminatorBytes, getCreateBulkDealInstruction, getCreateBulkDealInstructionAsync, getCreateBulkDealInstructionDataCodec, getCreateBulkDealInstructionDataDecoder, getCreateBulkDealInstructionDataEncoder, getCreateChannelDiscriminatorBytes, getCreateChannelInstruction, getCreateChannelInstructionDataCodec, getCreateChannelInstructionDataDecoder, getCreateChannelInstructionDataEncoder, getCreateDynamicPricingEngineDiscriminatorBytes, getCreateDynamicPricingEngineInstruction, getCreateDynamicPricingEngineInstructionAsync, getCreateDynamicPricingEngineInstructionDataCodec, getCreateDynamicPricingEngineInstructionDataDecoder, getCreateDynamicPricingEngineInstructionDataEncoder, getCreateIncentiveProgramDiscriminatorBytes, getCreateIncentiveProgramInstruction, getCreateIncentiveProgramInstructionAsync, getCreateIncentiveProgramInstructionDataCodec, getCreateIncentiveProgramInstructionDataDecoder, getCreateIncentiveProgramInstructionDataEncoder, getCreateJobPostingDiscriminatorBytes, getCreateJobPostingInstruction, getCreateJobPostingInstructionAsync, getCreateJobPostingInstructionDataCodec, getCreateJobPostingInstructionDataDecoder, getCreateJobPostingInstructionDataEncoder, getCreateMarketAnalyticsDiscriminatorBytes, getCreateMarketAnalyticsInstruction, getCreateMarketAnalyticsInstructionAsync, getCreateMarketAnalyticsInstructionDataCodec, getCreateMarketAnalyticsInstructionDataDecoder, getCreateMarketAnalyticsInstructionDataEncoder, getCreateMultisigDiscriminatorBytes, getCreateMultisigInstruction, getCreateMultisigInstructionAsync, getCreateMultisigInstructionDataCodec, getCreateMultisigInstructionDataDecoder, getCreateMultisigInstructionDataEncoder, getCreateReplicationTemplateDiscriminatorBytes, getCreateReplicationTemplateInstruction, getCreateReplicationTemplateInstructionAsync, getCreateReplicationTemplateInstructionDataCodec, getCreateReplicationTemplateInstructionDataDecoder, getCreateReplicationTemplateInstructionDataEncoder, getCreateRoyaltyStreamDiscriminatorBytes, getCreateRoyaltyStreamInstruction, getCreateRoyaltyStreamInstructionAsync, getCreateRoyaltyStreamInstructionDataCodec, getCreateRoyaltyStreamInstructionDataDecoder, getCreateRoyaltyStreamInstructionDataEncoder, getCreateServiceAuctionDiscriminatorBytes, getCreateServiceAuctionInstruction, getCreateServiceAuctionInstructionAsync, getCreateServiceAuctionInstructionDataCodec, getCreateServiceAuctionInstructionDataDecoder, getCreateServiceAuctionInstructionDataEncoder, getCreateServiceListingDiscriminatorBytes, getCreateServiceListingInstruction, getCreateServiceListingInstructionAsync, getCreateServiceListingInstructionDataCodec, getCreateServiceListingInstructionDataDecoder, getCreateServiceListingInstructionDataEncoder, getCreateWorkOrderDiscriminatorBytes, getCreateWorkOrderInstruction, getCreateWorkOrderInstructionDataCodec, getCreateWorkOrderInstructionDataDecoder, getCreateWorkOrderInstructionDataEncoder, getDataAccessLevelCodec, getDataAccessLevelDecoder, getDataAccessLevelEncoder, getDataProtectionPoliciesCodec, getDataProtectionPoliciesDecoder, getDataProtectionPoliciesEncoder, getDeactivateAgentDiscriminatorBytes, getDeactivateAgentInstruction, getDeactivateAgentInstructionAsync, getDeactivateAgentInstructionDataCodec, getDeactivateAgentInstructionDataDecoder, getDeactivateAgentInstructionDataEncoder, getDealTypeCodec, getDealTypeDecoder, getDealTypeEncoder, getDegradationHandlingCodec, getDegradationHandlingDecoder, getDegradationHandlingEncoder, getDelegationInfoCodec, getDelegationInfoDecoder, getDelegationInfoEncoder, getDelegationScopeCodec, getDelegationScopeDecoder, getDelegationScopeEncoder, getDeliverableCodec, getDeliverableDecoder, getDeliverableEncoder, getDisputeCaseCodec, getDisputeCaseDecoder, getDisputeCaseDiscriminatorBytes, getDisputeCaseEncoder, getDisputeEvidenceCodec, getDisputeEvidenceDecoder, getDisputeEvidenceEncoder, getDisputeEvidenceSubmittedEventCodec, getDisputeEvidenceSubmittedEventDecoder, getDisputeEvidenceSubmittedEventEncoder, getDisputeFiledEventCodec, getDisputeFiledEventDecoder, getDisputeFiledEventEncoder, getDisputeResolvedEventCodec, getDisputeResolvedEventDecoder, getDisputeResolvedEventEncoder, getDisputeStatusCodec, getDisputeStatusDecoder, getDisputeStatusEncoder, getDistributeIncentivesDiscriminatorBytes, getDistributeIncentivesInstruction, getDistributeIncentivesInstructionDataCodec, getDistributeIncentivesInstructionDataDecoder, getDistributeIncentivesInstructionDataEncoder, getDynamicPricingConfigCodec, getDynamicPricingConfigDecoder, getDynamicPricingConfigEncoder, getDynamicPricingConfigExportCodec, getDynamicPricingConfigExportDecoder, getDynamicPricingConfigExportEncoder, getDynamicPricingEngineCodec, getDynamicPricingEngineCreatedEventCodec, getDynamicPricingEngineCreatedEventDecoder, getDynamicPricingEngineCreatedEventEncoder, getDynamicPricingEngineDecoder, getDynamicPricingEngineDiscriminatorBytes, getDynamicPricingEngineEncoder, getDynamicPricingUpdatedEventCodec, getDynamicPricingUpdatedEventDecoder, getDynamicPricingUpdatedEventEncoder, getEmergencyAccessConfigCodec, getEmergencyAccessConfigDecoder, getEmergencyAccessConfigEncoder, getEmergencyConfigCodec, getEmergencyConfigDecoder, getEmergencyConfigEncoder, getEnforcementLevelCodec, getEnforcementLevelDecoder, getEnforcementLevelEncoder, getExecuteBulkDealBatchDiscriminatorBytes, getExecuteBulkDealBatchInstruction, getExecuteBulkDealBatchInstructionAsync, getExecuteBulkDealBatchInstructionDataCodec, getExecuteBulkDealBatchInstructionDataDecoder, getExecuteBulkDealBatchInstructionDataEncoder, getExecutionConditionCodec, getExecutionConditionDecoder, getExecutionConditionEncoder, getExecutionParamsCodec, getExecutionParamsDecoder, getExecutionParamsEncoder, getExportActionDiscriminatorBytes, getExportActionInstruction, getExportActionInstructionDataCodec, getExportActionInstructionDataDecoder, getExportActionInstructionDataEncoder, getExportAuditContextDiscriminatorBytes, getExportAuditContextInstruction, getExportAuditContextInstructionDataCodec, getExportAuditContextInstructionDataDecoder, getExportAuditContextInstructionDataEncoder, getExportBiometricQualityDiscriminatorBytes, getExportBiometricQualityInstruction, getExportBiometricQualityInstructionDataCodec, getExportBiometricQualityInstructionDataDecoder, getExportBiometricQualityInstructionDataEncoder, getExportComplianceStatusDiscriminatorBytes, getExportComplianceStatusInstruction, getExportComplianceStatusInstructionDataCodec, getExportComplianceStatusInstructionDataDecoder, getExportComplianceStatusInstructionDataEncoder, getExportDynamicPricingConfigDiscriminatorBytes, getExportDynamicPricingConfigInstruction, getExportDynamicPricingConfigInstructionDataCodec, getExportDynamicPricingConfigInstructionDataDecoder, getExportDynamicPricingConfigInstructionDataEncoder, getExportMultisigConfigDiscriminatorBytes, getExportMultisigConfigInstruction, getExportMultisigConfigInstructionDataCodec, getExportMultisigConfigInstructionDataDecoder, getExportMultisigConfigInstructionDataEncoder, getExportReportEntryDiscriminatorBytes, getExportReportEntryInstruction, getExportReportEntryInstructionDataCodec, getExportReportEntryInstructionDataDecoder, getExportReportEntryInstructionDataEncoder, getExportResourceConstraintsDiscriminatorBytes, getExportResourceConstraintsInstruction, getExportResourceConstraintsInstructionDataCodec, getExportResourceConstraintsInstructionDataDecoder, getExportResourceConstraintsInstructionDataEncoder, getExportRuleConditionDiscriminatorBytes, getExportRuleConditionInstruction, getExportRuleConditionInstructionDataCodec, getExportRuleConditionInstructionDataDecoder, getExportRuleConditionInstructionDataEncoder, getExtensionApprovedEventCodec, getExtensionApprovedEventDecoder, getExtensionApprovedEventEncoder, getExtensionCodec, getExtensionDecoder, getExtensionDiscriminatorBytes, getExtensionEncoder, getExtensionMetadataCodec, getExtensionMetadataDecoder, getExtensionMetadataEncoder, getExtensionRegisteredEventCodec, getExtensionRegisteredEventDecoder, getExtensionRegisteredEventEncoder, getExtensionStatusCodec, getExtensionStatusDecoder, getExtensionStatusEncoder, getExtensionTypeCodec, getExtensionTypeDecoder, getExtensionTypeEncoder, getFileDisputeDiscriminatorBytes, getFileDisputeInstruction, getFileDisputeInstructionAsync, getFileDisputeInstructionDataCodec, getFileDisputeInstructionDataDecoder, getFileDisputeInstructionDataEncoder, getFinalizeAuctionDiscriminatorBytes, getFinalizeAuctionInstruction, getFinalizeAuctionInstructionDataCodec, getFinalizeAuctionInstructionDataDecoder, getFinalizeAuctionInstructionDataEncoder, getGenerateComplianceReportDiscriminatorBytes, getGenerateComplianceReportInstruction, getGenerateComplianceReportInstructionAsync, getGenerateComplianceReportInstructionDataCodec, getGenerateComplianceReportInstructionDataDecoder, getGenerateComplianceReportInstructionDataEncoder, getGeographicRegionCodec, getGeographicRegionDecoder, getGeographicRegionEncoder, getGhostspeakMarketplaceErrorMessage, getGovernanceProposalCodec, getGovernanceProposalCreatedEventCodec, getGovernanceProposalCreatedEventDecoder, getGovernanceProposalCreatedEventEncoder, getGovernanceProposalDecoder, getGovernanceProposalDiscriminatorBytes, getGovernanceProposalEncoder, getHierarchicalBoundaryCodec, getHierarchicalBoundaryDecoder, getHierarchicalBoundaryEncoder, getIncentiveConfigCodec, getIncentiveConfigDecoder, getIncentiveConfigEncoder, getIncentiveDistributedEventCodec, getIncentiveDistributedEventDecoder, getIncentiveDistributedEventEncoder, getIncentiveProgramCodec, getIncentiveProgramCreatedEventCodec, getIncentiveProgramCreatedEventDecoder, getIncentiveProgramCreatedEventEncoder, getIncentiveProgramDecoder, getIncentiveProgramDiscriminatorBytes, getIncentiveProgramEncoder, getIncentiveProgramSize, getIncidentResponsePoliciesCodec, getIncidentResponsePoliciesDecoder, getIncidentResponsePoliciesEncoder, getInitializeAuditTrailDiscriminatorBytes, getInitializeAuditTrailInstruction, getInitializeAuditTrailInstructionAsync, getInitializeAuditTrailInstructionDataCodec, getInitializeAuditTrailInstructionDataDecoder, getInitializeAuditTrailInstructionDataEncoder, getInitializeGovernanceProposalDiscriminatorBytes, getInitializeGovernanceProposalInstruction, getInitializeGovernanceProposalInstructionAsync, getInitializeGovernanceProposalInstructionDataCodec, getInitializeGovernanceProposalInstructionDataDecoder, getInitializeGovernanceProposalInstructionDataEncoder, getInitializeRbacConfigDiscriminatorBytes, getInitializeRbacConfigInstruction, getInitializeRbacConfigInstructionAsync, getInitializeRbacConfigInstructionDataCodec, getInitializeRbacConfigInstructionDataDecoder, getInitializeRbacConfigInstructionDataEncoder, getInitiateNegotiationDiscriminatorBytes, getInitiateNegotiationInstruction, getInitiateNegotiationInstructionAsync, getInitiateNegotiationInstructionDataCodec, getInitiateNegotiationInstructionDataDecoder, getInitiateNegotiationInstructionDataEncoder, getJobApplicationAcceptedEventCodec, getJobApplicationAcceptedEventDecoder, getJobApplicationAcceptedEventEncoder, getJobApplicationCodec, getJobApplicationDecoder, getJobApplicationDiscriminatorBytes, getJobApplicationEncoder, getJobApplicationSubmittedEventCodec, getJobApplicationSubmittedEventDecoder, getJobApplicationSubmittedEventEncoder, getJobContractCodec, getJobContractDecoder, getJobContractDiscriminatorBytes, getJobContractEncoder, getJobContractSize, getJobPostingCodec, getJobPostingCreatedEventCodec, getJobPostingCreatedEventDecoder, getJobPostingCreatedEventEncoder, getJobPostingDecoder, getJobPostingDiscriminatorBytes, getJobPostingEncoder, getLatitudeRangeCodec, getLatitudeRangeDecoder, getLatitudeRangeEncoder, getListAgentForResaleDiscriminatorBytes, getListAgentForResaleInstruction, getListAgentForResaleInstructionAsync, getListAgentForResaleInstructionDataCodec, getListAgentForResaleInstructionDataDecoder, getListAgentForResaleInstructionDataEncoder, getLocationConstraintsCodec, getLocationConstraintsDecoder, getLocationConstraintsEncoder, getLongitudeRangeCodec, getLongitudeRangeDecoder, getLongitudeRangeEncoder, getMakeCounterOfferDiscriminatorBytes, getMakeCounterOfferInstruction, getMakeCounterOfferInstructionDataCodec, getMakeCounterOfferInstructionDataDecoder, getMakeCounterOfferInstructionDataEncoder, getManageAgentStatusDiscriminatorBytes, getManageAgentStatusInstruction, getManageAgentStatusInstructionAsync, getManageAgentStatusInstructionDataCodec, getManageAgentStatusInstructionDataDecoder, getManageAgentStatusInstructionDataEncoder, getMarketAnalyticsCodec, getMarketAnalyticsCreatedEventCodec, getMarketAnalyticsCreatedEventDecoder, getMarketAnalyticsCreatedEventEncoder, getMarketAnalyticsDecoder, getMarketAnalyticsDiscriminatorBytes, getMarketAnalyticsEncoder, getMarketAnalyticsUpdatedEventCodec, getMarketAnalyticsUpdatedEventDecoder, getMarketAnalyticsUpdatedEventEncoder, getMessageCodec, getMessageDecoder, getMessageDiscriminatorBytes, getMessageEncoder, getMessageSentEventCodec, getMessageSentEventDecoder, getMessageSentEventEncoder, getMessageTypeCodec, getMessageTypeDecoder, getMessageTypeEncoder, getMigrationInstructions, getMultisigCodec, getMultisigConfigCodec, getMultisigConfigDecoder, getMultisigConfigEncoder, getMultisigConfigExportCodec, getMultisigConfigExportDecoder, getMultisigConfigExportEncoder, getMultisigCreatedEventCodec, getMultisigCreatedEventDecoder, getMultisigCreatedEventEncoder, getMultisigDecoder, getMultisigDiscriminatorBytes, getMultisigEncoder, getMultisigSignatureCodec, getMultisigSignatureDecoder, getMultisigSignatureEncoder, getNegotiationChatbotCodec, getNegotiationChatbotDecoder, getNegotiationChatbotDiscriminatorBytes, getNegotiationChatbotEncoder, getNegotiationInitiatedEventCodec, getNegotiationInitiatedEventDecoder, getNegotiationInitiatedEventEncoder, getNegotiationStatusCodec, getNegotiationStatusDecoder, getNegotiationStatusEncoder, getNetworkSecurityPoliciesCodec, getNetworkSecurityPoliciesDecoder, getNetworkSecurityPoliciesEncoder, getNotificationMethodCodec, getNotificationMethodDecoder, getNotificationMethodEncoder, getNotificationPriorityCodec, getNotificationPriorityDecoder, getNotificationPriorityEncoder, getNotificationRequirementCodec, getNotificationRequirementDecoder, getNotificationRequirementEncoder, getNotificationTargetCodec, getNotificationTargetDecoder, getNotificationTargetEncoder, getNotificationTargetTypeCodec, getNotificationTargetTypeDecoder, getNotificationTargetTypeEncoder, getNotificationTimingCodec, getNotificationTimingDecoder, getNotificationTimingEncoder, getPasswordPoliciesCodec, getPasswordPoliciesDecoder, getPasswordPoliciesEncoder, getPaymentCodec, getPaymentDecoder, getPaymentDiscriminatorBytes, getPaymentEncoder, getPaymentProcessedEventCodec, getPaymentProcessedEventDecoder, getPaymentProcessedEventEncoder, getPendingTransactionCodec, getPendingTransactionDecoder, getPendingTransactionEncoder, getPermissionCodec, getPermissionConstraintCodec, getPermissionConstraintDecoder, getPermissionConstraintEncoder, getPermissionConstraintTypeCodec, getPermissionConstraintTypeDecoder, getPermissionConstraintTypeEncoder, getPermissionDecoder, getPermissionEncoder, getPermissionMetadataCodec, getPermissionMetadataDecoder, getPermissionMetadataEncoder, getPermissionScopeCodec, getPermissionScopeDecoder, getPermissionScopeEncoder, getPlaceAuctionBidDiscriminatorBytes, getPlaceAuctionBidInstruction, getPlaceAuctionBidInstructionDataCodec, getPlaceAuctionBidInstructionDataDecoder, getPlaceAuctionBidInstructionDataEncoder, getPolicyMetadataCodec, getPolicyMetadataDecoder, getPolicyMetadataEncoder, getPolicyRuleCodec, getPolicyRuleDecoder, getPolicyRuleEncoder, getPolicyScopeCodec, getPolicyScopeDecoder, getPolicyScopeEncoder, getPolicyStatusCodec, getPolicyStatusDecoder, getPolicyStatusEncoder, getPolicyTypeCodec, getPolicyTypeDecoder, getPolicyTypeEncoder, getPricingAlgorithmCodec, getPricingAlgorithmDecoder, getPricingAlgorithmEncoder, getPricingModelCodec, getPricingModelDecoder, getPricingModelEncoder, getProcessPaymentDiscriminatorBytes, getProcessPaymentInstruction, getProcessPaymentInstructionAsync, getProcessPaymentInstructionDataCodec, getProcessPaymentInstructionDataDecoder, getProcessPaymentInstructionDataEncoder, getProposalAccountCodec, getProposalAccountDecoder, getProposalAccountEncoder, getProposalInstructionCodec, getProposalInstructionDecoder, getProposalInstructionEncoder, getProposalMetadataCodec, getProposalMetadataDecoder, getProposalMetadataEncoder, getProposalStatusCodec, getProposalStatusDecoder, getProposalStatusEncoder, getProposalTypeCodec, getProposalTypeDecoder, getProposalTypeEncoder, getPurchaseServiceDiscriminatorBytes, getPurchaseServiceInstruction, getPurchaseServiceInstructionAsync, getPurchaseServiceInstructionDataCodec, getPurchaseServiceInstructionDataDecoder, getPurchaseServiceInstructionDataEncoder, getPurchaseStatusCodec, getPurchaseStatusDecoder, getPurchaseStatusEncoder, getQuorumMethodCodec, getQuorumMethodDecoder, getQuorumMethodEncoder, getQuorumRequirementsCodec, getQuorumRequirementsDecoder, getQuorumRequirementsEncoder, getRbacConfigCodec, getRbacConfigDecoder, getRbacConfigDiscriminatorBytes, getRbacConfigEncoder, getRbacConfigInitializedEventCodec, getRbacConfigInitializedEventDecoder, getRbacConfigInitializedEventEncoder, getRegisterAgentCompressedDiscriminatorBytes, getRegisterAgentCompressedInstruction, getRegisterAgentCompressedInstructionAsync, getRegisterAgentCompressedInstructionDataCodec, getRegisterAgentCompressedInstructionDataDecoder, getRegisterAgentCompressedInstructionDataEncoder, getRegisterAgentDiscriminatorBytes, getRegisterAgentInstruction, getRegisterAgentInstructionAsync, getRegisterAgentInstructionDataCodec, getRegisterAgentInstructionDataDecoder, getRegisterAgentInstructionDataEncoder, getRegisterExtensionDiscriminatorBytes, getRegisterExtensionInstruction, getRegisterExtensionInstructionAsync, getRegisterExtensionInstructionDataCodec, getRegisterExtensionInstructionDataDecoder, getRegisterExtensionInstructionDataEncoder, getReplicateAgentDiscriminatorBytes, getReplicateAgentInstruction, getReplicateAgentInstructionAsync, getReplicateAgentInstructionDataCodec, getReplicateAgentInstructionDataDecoder, getReplicateAgentInstructionDataEncoder, getReplicationRecordCodec, getReplicationRecordDecoder, getReplicationRecordDiscriminatorBytes, getReplicationRecordEncoder, getReplicationTemplateCodec, getReplicationTemplateCreatedEventCodec, getReplicationTemplateCreatedEventDecoder, getReplicationTemplateCreatedEventEncoder, getReplicationTemplateDecoder, getReplicationTemplateDiscriminatorBytes, getReplicationTemplateEncoder, getReportDataCodec, getReportDataDecoder, getReportDataEncoder, getReportEntryCodec, getReportEntryDecoder, getReportEntryEncoder, getReportEntryExportCodec, getReportEntryExportDecoder, getReportEntryExportEncoder, getReportStatusCodec, getReportStatusDecoder, getReportStatusEncoder, getReportSummaryCodec, getReportSummaryDecoder, getReportSummaryEncoder, getReportTypeCodec, getReportTypeDecoder, getReportTypeEncoder, getReportingFrequencyCodec, getReportingFrequencyDecoder, getReportingFrequencyEncoder, getResaleMarketCodec, getResaleMarketDecoder, getResaleMarketDiscriminatorBytes, getResaleMarketEncoder, getResolveDisputeDiscriminatorBytes, getResolveDisputeInstruction, getResolveDisputeInstructionAsync, getResolveDisputeInstructionDataCodec, getResolveDisputeInstructionDataDecoder, getResolveDisputeInstructionDataEncoder, getResourceConstraintsCodec, getResourceConstraintsDecoder, getResourceConstraintsEncoder, getResourceConstraintsExportCodec, getResourceConstraintsExportDecoder, getResourceConstraintsExportEncoder, getReviewScheduleCodec, getReviewScheduleDecoder, getReviewScheduleEncoder, getRiskAcceptanceCodec, getRiskAcceptanceDecoder, getRiskAcceptanceEncoder, getRiskAssessmentCodec, getRiskAssessmentDecoder, getRiskAssessmentEncoder, getRiskCategoryCodec, getRiskCategoryDecoder, getRiskCategoryEncoder, getRiskFactorCodec, getRiskFactorDecoder, getRiskFactorEncoder, getRiskIndicatorCodec, getRiskIndicatorDecoder, getRiskIndicatorEncoder, getRiskLevelCodec, getRiskLevelDecoder, getRiskLevelEncoder, getRoleCodec, getRoleConstraintsCodec, getRoleConstraintsDecoder, getRoleConstraintsEncoder, getRoleDecoder, getRoleEncoder, getRoleMetadataCodec, getRoleMetadataDecoder, getRoleMetadataEncoder, getRoleStatusCodec, getRoleStatusDecoder, getRoleStatusEncoder, getRoleTypeCodec, getRoleTypeDecoder, getRoleTypeEncoder, getRoyaltyConfigCodec, getRoyaltyConfigDecoder, getRoyaltyConfigEncoder, getRoyaltyStreamCodec, getRoyaltyStreamCreatedEventCodec, getRoyaltyStreamCreatedEventDecoder, getRoyaltyStreamCreatedEventEncoder, getRoyaltyStreamDecoder, getRoyaltyStreamDiscriminatorBytes, getRoyaltyStreamEncoder, getRoyaltyStreamSize, getRuleConditionCodec, getRuleConditionDecoder, getRuleConditionEncoder, getRuleConditionExportCodec, getRuleConditionExportDecoder, getRuleConditionExportEncoder, getRuleEffectCodec, getRuleEffectDecoder, getRuleEffectEncoder, getScopeBoundariesCodec, getScopeBoundariesDecoder, getScopeBoundariesEncoder, getScopeInheritanceCodec, getScopeInheritanceDecoder, getScopeInheritanceEncoder, getScopeTypeCodec, getScopeTypeDecoder, getScopeTypeEncoder, getSecurityEventTypeCodec, getSecurityEventTypeDecoder, getSecurityEventTypeEncoder, getSecurityPoliciesCodec, getSecurityPoliciesDecoder, getSecurityPoliciesEncoder, getSendA2aMessageDiscriminatorBytes, getSendA2aMessageInstruction, getSendA2aMessageInstructionDataCodec, getSendA2aMessageInstructionDataDecoder, getSendA2aMessageInstructionDataEncoder, getSendMessageDiscriminatorBytes, getSendMessageInstruction, getSendMessageInstructionDataCodec, getSendMessageInstructionDataDecoder, getSendMessageInstructionDataEncoder, getServiceAuctionCreatedEventCodec, getServiceAuctionCreatedEventDecoder, getServiceAuctionCreatedEventEncoder, getServiceListingCodec, getServiceListingCreatedEventCodec, getServiceListingCreatedEventDecoder, getServiceListingCreatedEventEncoder, getServiceListingDecoder, getServiceListingDiscriminatorBytes, getServiceListingEncoder, getServicePurchaseCodec, getServicePurchaseDecoder, getServicePurchaseDiscriminatorBytes, getServicePurchaseEncoder, getServicePurchasedEventCodec, getServicePurchasedEventDecoder, getServicePurchasedEventEncoder, getSessionConstraintsCodec, getSessionConstraintsDecoder, getSessionConstraintsEncoder, getSessionPoliciesCodec, getSessionPoliciesDecoder, getSessionPoliciesEncoder, getSodConstraintCodec, getSodConstraintDecoder, getSodConstraintEncoder, getSodConstraintTypeCodec, getSodConstraintTypeDecoder, getSodConstraintTypeEncoder, getStepUpTriggerCodec, getStepUpTriggerDecoder, getStepUpTriggerEncoder, getSubmissionDetailsCodec, getSubmissionDetailsDecoder, getSubmissionDetailsEncoder, getSubmitDisputeEvidenceDiscriminatorBytes, getSubmitDisputeEvidenceInstruction, getSubmitDisputeEvidenceInstructionAsync, getSubmitDisputeEvidenceInstructionDataCodec, getSubmitDisputeEvidenceInstructionDataDecoder, getSubmitDisputeEvidenceInstructionDataEncoder, getSubmitWorkDeliveryDiscriminatorBytes, getSubmitWorkDeliveryInstruction, getSubmitWorkDeliveryInstructionAsync, getSubmitWorkDeliveryInstructionDataCodec, getSubmitWorkDeliveryInstructionDataDecoder, getSubmitWorkDeliveryInstructionDataEncoder, getTimeConstraintsCodec, getTimeConstraintsDecoder, getTimeConstraintsEncoder, getTimeLockCodec, getTimeLockDecoder, getTimeLockEncoder, getTimeLockTypeCodec, getTimeLockTypeDecoder, getTimeLockTypeEncoder, getTopAgentAddedEventCodec, getTopAgentAddedEventDecoder, getTopAgentAddedEventEncoder, getTransactionPriorityCodec, getTransactionPriorityDecoder, getTransactionPriorityEncoder, getTransactionStatusCodec, getTransactionStatusDecoder, getTransactionStatusEncoder, getTransactionTypeCodec, getTransactionTypeDecoder, getTransactionTypeEncoder, getTrendDirectionCodec, getTrendDirectionDecoder, getTrendDirectionEncoder, getUnlockMethodCodec, getUnlockMethodDecoder, getUnlockMethodEncoder, getUpdateA2aStatusDiscriminatorBytes, getUpdateA2aStatusInstruction, getUpdateA2aStatusInstructionAsync, getUpdateA2aStatusInstructionDataCodec, getUpdateA2aStatusInstructionDataDecoder, getUpdateA2aStatusInstructionDataEncoder, getUpdateAgentDiscriminatorBytes, getUpdateAgentInstruction, getUpdateAgentInstructionAsync, getUpdateAgentInstructionDataCodec, getUpdateAgentInstructionDataDecoder, getUpdateAgentInstructionDataEncoder, getUpdateAgentReputationDiscriminatorBytes, getUpdateAgentReputationInstruction, getUpdateAgentReputationInstructionAsync, getUpdateAgentReputationInstructionDataCodec, getUpdateAgentReputationInstructionDataDecoder, getUpdateAgentReputationInstructionDataEncoder, getUpdateAgentServiceDiscriminatorBytes, getUpdateAgentServiceInstruction, getUpdateAgentServiceInstructionAsync, getUpdateAgentServiceInstructionDataCodec, getUpdateAgentServiceInstructionDataDecoder, getUpdateAgentServiceInstructionDataEncoder, getUpdateAnalyticsDashboardDiscriminatorBytes, getUpdateAnalyticsDashboardInstruction, getUpdateAnalyticsDashboardInstructionAsync, getUpdateAnalyticsDashboardInstructionDataCodec, getUpdateAnalyticsDashboardInstructionDataDecoder, getUpdateAnalyticsDashboardInstructionDataEncoder, getUpdateDynamicPricingDiscriminatorBytes, getUpdateDynamicPricingInstruction, getUpdateDynamicPricingInstructionDataCodec, getUpdateDynamicPricingInstructionDataDecoder, getUpdateDynamicPricingInstructionDataEncoder, getUpdateMarketAnalyticsDiscriminatorBytes, getUpdateMarketAnalyticsInstruction, getUpdateMarketAnalyticsInstructionDataCodec, getUpdateMarketAnalyticsInstructionDataDecoder, getUpdateMarketAnalyticsInstructionDataEncoder, getUserRegistryCodec, getUserRegistryDecoder, getUserRegistryDiscriminatorBytes, getUserRegistryEncoder, getUserRegistrySize, getValueTypeCodec, getValueTypeDecoder, getValueTypeEncoder, getVerifyAgentDiscriminatorBytes, getVerifyAgentInstruction, getVerifyAgentInstructionAsync, getVerifyAgentInstructionDataCodec, getVerifyAgentInstructionDataDecoder, getVerifyAgentInstructionDataEncoder, getViolationSeverityCodec, getViolationSeverityDecoder, getViolationSeverityEncoder, getVolumeTierCodec, getVolumeTierDecoder, getVolumeTierEncoder, getVoteChoiceCodec, getVoteChoiceDecoder, getVoteChoiceEncoder, getVoteCodec, getVoteDecoder, getVoteEncoder, getVotingResultsCodec, getVotingResultsDecoder, getVotingResultsEncoder, getWorkDeliveryCodec, getWorkDeliveryDecoder, getWorkDeliveryDiscriminatorBytes, getWorkDeliveryEncoder, getWorkDeliverySubmittedEventCodec, getWorkDeliverySubmittedEventDecoder, getWorkDeliverySubmittedEventEncoder, getWorkOrderCodec, getWorkOrderCreatedEventCodec, getWorkOrderCreatedEventDecoder, getWorkOrderCreatedEventEncoder, getWorkOrderDecoder, getWorkOrderDiscriminatorBytes, getWorkOrderEncoder, getWorkOrderStatusCodec, getWorkOrderStatusDecoder, getWorkOrderStatusEncoder, identifyGhostspeakMarketplaceAccount, identifyGhostspeakMarketplaceInstruction, inspectAccountData, isDelegationScope, isGhostspeakMarketplaceError, parseAcceptJobApplicationInstruction, parseActivateAgentInstruction, parseAddTopAgentInstruction, parseApplyToJobInstruction, parseApproveExtensionInstruction, parseCreateA2aSessionInstruction, parseCreateAnalyticsDashboardInstruction, parseCreateBulkDealInstruction, parseCreateChannelInstruction, parseCreateDynamicPricingEngineInstruction, parseCreateIncentiveProgramInstruction, parseCreateJobPostingInstruction, parseCreateMarketAnalyticsInstruction, parseCreateMultisigInstruction, parseCreateReplicationTemplateInstruction, parseCreateRoyaltyStreamInstruction, parseCreateServiceAuctionInstruction, parseCreateServiceListingInstruction, parseCreateWorkOrderInstruction, parseDeactivateAgentInstruction, parseDistributeIncentivesInstruction, parseExecuteBulkDealBatchInstruction, parseExportActionInstruction, parseExportAuditContextInstruction, parseExportBiometricQualityInstruction, parseExportComplianceStatusInstruction, parseExportDynamicPricingConfigInstruction, parseExportMultisigConfigInstruction, parseExportReportEntryInstruction, parseExportResourceConstraintsInstruction, parseExportRuleConditionInstruction, parseFileDisputeInstruction, parseFinalizeAuctionInstruction, parseGenerateComplianceReportInstruction, parseInitializeAuditTrailInstruction, parseInitializeGovernanceProposalInstruction, parseInitializeRbacConfigInstruction, parseInitiateNegotiationInstruction, parseListAgentForResaleInstruction, parseMakeCounterOfferInstruction, parseManageAgentStatusInstruction, parsePlaceAuctionBidInstruction, parseProcessPaymentInstruction, parsePurchaseServiceInstruction, parseRegisterAgentCompressedInstruction, parseRegisterAgentInstruction, parseRegisterExtensionInstruction, parseReplicateAgentInstruction, parseResolveDisputeInstruction, parseSendA2aMessageInstruction, parseSendMessageInstruction, parseSubmitDisputeEvidenceInstruction, parseSubmitWorkDeliveryInstruction, parseUpdateA2aStatusInstruction, parseUpdateAgentInstruction, parseUpdateAgentReputationInstruction, parseUpdateAgentServiceInstruction, parseUpdateAnalyticsDashboardInstruction, parseUpdateDynamicPricingInstruction, parseUpdateMarketAnalyticsInstruction, parseVerifyAgentInstruction, runAccountDiagnostics, runBatchDiagnostics, safeDecodeAgent, simulateMigration, validateAccountDiscriminator };