@ghostspeak/sdk 1.1.4 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1,12 +1,6 @@
1
- import { fixEncoderSize, transformEncoder, addEncoderSizePrefix, fixDecoderSize, addDecoderSizePrefix, combineCodec, containsBytes } from '@solana/codecs-core';
2
- import { getUtf8Encoder, getUtf8Decoder } from '@solana/codecs-strings';
3
- import { getU64Encoder, getI64Encoder, getU8Encoder, getU32Encoder, getU64Decoder, getI64Decoder, getU8Decoder, getU32Decoder, getF64Encoder, getF64Decoder, getF32Encoder, getF32Decoder, getI32Encoder, getI32Decoder, getU16Encoder, getU16Decoder } from '@solana/codecs-numbers';
4
- import { getBytesEncoder, getStructEncoder, getStructDecoder, getBytesDecoder, getBooleanEncoder, getBooleanDecoder, getArrayEncoder, getArrayDecoder, getEnumEncoder, getEnumDecoder, getDiscriminatedUnionEncoder, getUnitEncoder, getTupleEncoder, getDiscriminatedUnionDecoder, getUnitDecoder, getTupleDecoder } from '@solana/codecs-data-structures';
5
- import { address, getAddressEncoder, getAddressDecoder, getProgramDerivedAddress } from '@solana/addresses';
6
- import { decodeAccount, assertAccountExists, fetchEncodedAccount, assertAccountsExist, fetchEncodedAccounts } from '@solana/accounts';
7
- import { getOptionEncoder, getOptionDecoder } from '@solana/options';
8
- import { AccountRole, upgradeRoleToSigner } from '@solana/instructions';
9
- import { createSolanaRpc, getProgramDerivedAddress as getProgramDerivedAddress$1, getBytesEncoder as getBytesEncoder$1, getAddressEncoder as getAddressEncoder$1, addEncoderSizePrefix as addEncoderSizePrefix$1, getUtf8Encoder as getUtf8Encoder$1, getU32Encoder as getU32Encoder$1, getU64Encoder as getU64Encoder$1, sendAndConfirmTransactionFactory, pipe, createTransactionMessage, setTransactionMessageFeePayerSigner, setTransactionMessageLifetimeUsingBlockhash, appendTransactionMessageInstructions, signTransactionMessageWithSigners, setTransactionMessageFeePayer, compileTransactionMessage } from '@solana/kit';
1
+ import { fixEncoderSize, getBytesEncoder, transformEncoder, getStructEncoder, getU64Encoder, getAddressEncoder, addEncoderSizePrefix, getI64Encoder, getU8Encoder, getUtf8Encoder, getU32Encoder, getStructDecoder, fixDecoderSize, getU64Decoder, getAddressDecoder, addDecoderSizePrefix, getI64Decoder, getU8Decoder, getBytesDecoder, getUtf8Decoder, getU32Decoder, combineCodec, decodeAccount, assertAccountExists, fetchEncodedAccount, assertAccountsExist, fetchEncodedAccounts, getBooleanEncoder, getBooleanDecoder, getArrayEncoder, getArrayDecoder, getOptionEncoder, getOptionDecoder, getEnumEncoder, getEnumDecoder, getDiscriminatedUnionEncoder, getUnitEncoder, getTupleEncoder, getDiscriminatedUnionDecoder, getUnitDecoder, getTupleDecoder, getF64Encoder, getF64Decoder, getF32Encoder, getF32Decoder, getI32Encoder, getI32Decoder, getU16Encoder, getU16Decoder, containsBytes, isProgramError, getProgramDerivedAddress, createSolanaRpc, AccountRole as AccountRole$1, upgradeRoleToSigner, sendAndConfirmTransactionFactory, pipe, createTransactionMessage, setTransactionMessageFeePayerSigner, setTransactionMessageLifetimeUsingBlockhash, appendTransactionMessageInstructions, signTransactionMessageWithSigners, setTransactionMessageFeePayer, compileTransactionMessage, isTransactionSigner as isTransactionSigner$1 } from '@solana/kit';
2
+ import { address, getAddressEncoder as getAddressEncoder$1, getProgramDerivedAddress as getProgramDerivedAddress$1 } from '@solana/addresses';
3
+ import { AccountRole } from '@solana/instructions';
10
4
 
11
5
  var __defProp = Object.defineProperty;
12
6
  var __getOwnPropNames = Object.getOwnPropertyNames;
@@ -1647,6 +1641,40 @@ var init_complianceStatusExport = __esm({
1647
1641
  init_types();
1648
1642
  }
1649
1643
  });
1644
+ function getCompressedAgentCreatedEventEncoder() {
1645
+ return getStructEncoder([
1646
+ ["agentId", addEncoderSizePrefix(getUtf8Encoder(), getU32Encoder())],
1647
+ ["owner", getAddressEncoder()],
1648
+ ["treeAuthority", getAddressEncoder()],
1649
+ ["merkleTree", getAddressEncoder()],
1650
+ ["dataHash", fixEncoderSize(getBytesEncoder(), 32)],
1651
+ ["index", getU64Encoder()],
1652
+ ["metadataUri", addEncoderSizePrefix(getUtf8Encoder(), getU32Encoder())],
1653
+ ["createdAt", getI64Encoder()]
1654
+ ]);
1655
+ }
1656
+ function getCompressedAgentCreatedEventDecoder() {
1657
+ return getStructDecoder([
1658
+ ["agentId", addDecoderSizePrefix(getUtf8Decoder(), getU32Decoder())],
1659
+ ["owner", getAddressDecoder()],
1660
+ ["treeAuthority", getAddressDecoder()],
1661
+ ["merkleTree", getAddressDecoder()],
1662
+ ["dataHash", fixDecoderSize(getBytesDecoder(), 32)],
1663
+ ["index", getU64Decoder()],
1664
+ ["metadataUri", addDecoderSizePrefix(getUtf8Decoder(), getU32Decoder())],
1665
+ ["createdAt", getI64Decoder()]
1666
+ ]);
1667
+ }
1668
+ function getCompressedAgentCreatedEventCodec() {
1669
+ return combineCodec(
1670
+ getCompressedAgentCreatedEventEncoder(),
1671
+ getCompressedAgentCreatedEventDecoder()
1672
+ );
1673
+ }
1674
+ var init_compressedAgentCreatedEvent = __esm({
1675
+ "src/generated/types/compressedAgentCreatedEvent.ts"() {
1676
+ }
1677
+ });
1650
1678
  function getConditionTypeEncoder() {
1651
1679
  return getEnumEncoder(ConditionType);
1652
1680
  }
@@ -5814,6 +5842,7 @@ var init_types = __esm({
5814
5842
  init_compliancePolicies();
5815
5843
  init_complianceReportGeneratedEvent();
5816
5844
  init_complianceStatusExport();
5845
+ init_compressedAgentCreatedEvent();
5817
5846
  init_conditionType();
5818
5847
  init_constraintCondition();
5819
5848
  init_constraintOperator();
@@ -6182,6 +6211,83 @@ var init_agentIncentives = __esm({
6182
6211
  ]);
6183
6212
  }
6184
6213
  });
6214
+ function getAgentTreeConfigDiscriminatorBytes() {
6215
+ return fixEncoderSize(getBytesEncoder(), 8).encode(
6216
+ AGENT_TREE_CONFIG_DISCRIMINATOR
6217
+ );
6218
+ }
6219
+ function getAgentTreeConfigEncoder() {
6220
+ return transformEncoder(
6221
+ getStructEncoder([
6222
+ ["discriminator", fixEncoderSize(getBytesEncoder(), 8)],
6223
+ ["treeCreator", getAddressEncoder()],
6224
+ ["treeDelegate", getAddressEncoder()],
6225
+ ["numMinted", getU64Encoder()],
6226
+ ["bump", getU8Encoder()]
6227
+ ]),
6228
+ (value) => ({ ...value, discriminator: AGENT_TREE_CONFIG_DISCRIMINATOR })
6229
+ );
6230
+ }
6231
+ function getAgentTreeConfigDecoder() {
6232
+ return getStructDecoder([
6233
+ ["discriminator", fixDecoderSize(getBytesDecoder(), 8)],
6234
+ ["treeCreator", getAddressDecoder()],
6235
+ ["treeDelegate", getAddressDecoder()],
6236
+ ["numMinted", getU64Decoder()],
6237
+ ["bump", getU8Decoder()]
6238
+ ]);
6239
+ }
6240
+ function getAgentTreeConfigCodec() {
6241
+ return combineCodec(getAgentTreeConfigEncoder(), getAgentTreeConfigDecoder());
6242
+ }
6243
+ function decodeAgentTreeConfig(encodedAccount) {
6244
+ return decodeAccount(
6245
+ encodedAccount,
6246
+ getAgentTreeConfigDecoder()
6247
+ );
6248
+ }
6249
+ async function fetchAgentTreeConfig(rpc, address2, config) {
6250
+ const maybeAccount = await fetchMaybeAgentTreeConfig(rpc, address2, config);
6251
+ assertAccountExists(maybeAccount);
6252
+ return maybeAccount;
6253
+ }
6254
+ async function fetchMaybeAgentTreeConfig(rpc, address2, config) {
6255
+ const maybeAccount = await fetchEncodedAccount(rpc, address2, config);
6256
+ return decodeAgentTreeConfig(maybeAccount);
6257
+ }
6258
+ async function fetchAllAgentTreeConfig(rpc, addresses, config) {
6259
+ const maybeAccounts = await fetchAllMaybeAgentTreeConfig(
6260
+ rpc,
6261
+ addresses,
6262
+ config
6263
+ );
6264
+ assertAccountsExist(maybeAccounts);
6265
+ return maybeAccounts;
6266
+ }
6267
+ async function fetchAllMaybeAgentTreeConfig(rpc, addresses, config) {
6268
+ const maybeAccounts = await fetchEncodedAccounts(rpc, addresses, config);
6269
+ return maybeAccounts.map(
6270
+ (maybeAccount) => decodeAgentTreeConfig(maybeAccount)
6271
+ );
6272
+ }
6273
+ function getAgentTreeConfigSize() {
6274
+ return 81;
6275
+ }
6276
+ var AGENT_TREE_CONFIG_DISCRIMINATOR;
6277
+ var init_agentTreeConfig = __esm({
6278
+ "src/generated/accounts/agentTreeConfig.ts"() {
6279
+ AGENT_TREE_CONFIG_DISCRIMINATOR = new Uint8Array([
6280
+ 145,
6281
+ 145,
6282
+ 156,
6283
+ 0,
6284
+ 197,
6285
+ 232,
6286
+ 130,
6287
+ 245
6288
+ ]);
6289
+ }
6290
+ });
6185
6291
  function getAgentVerificationDiscriminatorBytes() {
6186
6292
  return fixEncoderSize(getBytesEncoder(), 8).encode(
6187
6293
  AGENT_VERIFICATION_DISCRIMINATOR
@@ -8976,6 +9082,7 @@ var init_accounts = __esm({
8976
9082
  init_a2AStatus();
8977
9083
  init_agent();
8978
9084
  init_agentIncentives();
9085
+ init_agentTreeConfig();
8979
9086
  init_agentVerification();
8980
9087
  init_analyticsDashboard();
8981
9088
  init_arbitratorRegistry();
@@ -9056,6 +9163,15 @@ function identifyGhostspeakMarketplaceAccount(account) {
9056
9163
  )) {
9057
9164
  return 4 /* AgentIncentives */;
9058
9165
  }
9166
+ if (containsBytes(
9167
+ data,
9168
+ fixEncoderSize(getBytesEncoder(), 8).encode(
9169
+ new Uint8Array([145, 145, 156, 0, 197, 232, 130, 245])
9170
+ ),
9171
+ 0
9172
+ )) {
9173
+ return 5 /* AgentTreeConfig */;
9174
+ }
9059
9175
  if (containsBytes(
9060
9176
  data,
9061
9177
  fixEncoderSize(getBytesEncoder(), 8).encode(
@@ -9063,7 +9179,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9063
9179
  ),
9064
9180
  0
9065
9181
  )) {
9066
- return 5 /* AgentVerification */;
9182
+ return 6 /* AgentVerification */;
9067
9183
  }
9068
9184
  if (containsBytes(
9069
9185
  data,
@@ -9072,7 +9188,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9072
9188
  ),
9073
9189
  0
9074
9190
  )) {
9075
- return 6 /* AnalyticsDashboard */;
9191
+ return 7 /* AnalyticsDashboard */;
9076
9192
  }
9077
9193
  if (containsBytes(
9078
9194
  data,
@@ -9081,7 +9197,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9081
9197
  ),
9082
9198
  0
9083
9199
  )) {
9084
- return 7 /* ArbitratorRegistry */;
9200
+ return 8 /* ArbitratorRegistry */;
9085
9201
  }
9086
9202
  if (containsBytes(
9087
9203
  data,
@@ -9090,7 +9206,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9090
9206
  ),
9091
9207
  0
9092
9208
  )) {
9093
- return 8 /* AuctionMarketplace */;
9209
+ return 9 /* AuctionMarketplace */;
9094
9210
  }
9095
9211
  if (containsBytes(
9096
9212
  data,
@@ -9099,7 +9215,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9099
9215
  ),
9100
9216
  0
9101
9217
  )) {
9102
- return 9 /* AuditTrail */;
9218
+ return 10 /* AuditTrail */;
9103
9219
  }
9104
9220
  if (containsBytes(
9105
9221
  data,
@@ -9108,7 +9224,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9108
9224
  ),
9109
9225
  0
9110
9226
  )) {
9111
- return 10 /* BulkDeal */;
9227
+ return 11 /* BulkDeal */;
9112
9228
  }
9113
9229
  if (containsBytes(
9114
9230
  data,
@@ -9117,7 +9233,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9117
9233
  ),
9118
9234
  0
9119
9235
  )) {
9120
- return 11 /* Channel */;
9236
+ return 12 /* Channel */;
9121
9237
  }
9122
9238
  if (containsBytes(
9123
9239
  data,
@@ -9126,7 +9242,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9126
9242
  ),
9127
9243
  0
9128
9244
  )) {
9129
- return 12 /* ComplianceReport */;
9245
+ return 13 /* ComplianceReport */;
9130
9246
  }
9131
9247
  if (containsBytes(
9132
9248
  data,
@@ -9135,7 +9251,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9135
9251
  ),
9136
9252
  0
9137
9253
  )) {
9138
- return 13 /* DisputeCase */;
9254
+ return 14 /* DisputeCase */;
9139
9255
  }
9140
9256
  if (containsBytes(
9141
9257
  data,
@@ -9144,7 +9260,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9144
9260
  ),
9145
9261
  0
9146
9262
  )) {
9147
- return 14 /* DynamicPricingEngine */;
9263
+ return 15 /* DynamicPricingEngine */;
9148
9264
  }
9149
9265
  if (containsBytes(
9150
9266
  data,
@@ -9153,7 +9269,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9153
9269
  ),
9154
9270
  0
9155
9271
  )) {
9156
- return 15 /* Extension */;
9272
+ return 16 /* Extension */;
9157
9273
  }
9158
9274
  if (containsBytes(
9159
9275
  data,
@@ -9162,7 +9278,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9162
9278
  ),
9163
9279
  0
9164
9280
  )) {
9165
- return 16 /* GovernanceProposal */;
9281
+ return 17 /* GovernanceProposal */;
9166
9282
  }
9167
9283
  if (containsBytes(
9168
9284
  data,
@@ -9171,7 +9287,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9171
9287
  ),
9172
9288
  0
9173
9289
  )) {
9174
- return 17 /* IncentiveProgram */;
9290
+ return 18 /* IncentiveProgram */;
9175
9291
  }
9176
9292
  if (containsBytes(
9177
9293
  data,
@@ -9180,7 +9296,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9180
9296
  ),
9181
9297
  0
9182
9298
  )) {
9183
- return 18 /* JobApplication */;
9299
+ return 19 /* JobApplication */;
9184
9300
  }
9185
9301
  if (containsBytes(
9186
9302
  data,
@@ -9189,7 +9305,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9189
9305
  ),
9190
9306
  0
9191
9307
  )) {
9192
- return 19 /* JobContract */;
9308
+ return 20 /* JobContract */;
9193
9309
  }
9194
9310
  if (containsBytes(
9195
9311
  data,
@@ -9198,7 +9314,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9198
9314
  ),
9199
9315
  0
9200
9316
  )) {
9201
- return 20 /* JobPosting */;
9317
+ return 21 /* JobPosting */;
9202
9318
  }
9203
9319
  if (containsBytes(
9204
9320
  data,
@@ -9207,7 +9323,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9207
9323
  ),
9208
9324
  0
9209
9325
  )) {
9210
- return 21 /* MarketAnalytics */;
9326
+ return 22 /* MarketAnalytics */;
9211
9327
  }
9212
9328
  if (containsBytes(
9213
9329
  data,
@@ -9216,7 +9332,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9216
9332
  ),
9217
9333
  0
9218
9334
  )) {
9219
- return 22 /* Message */;
9335
+ return 23 /* Message */;
9220
9336
  }
9221
9337
  if (containsBytes(
9222
9338
  data,
@@ -9225,7 +9341,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9225
9341
  ),
9226
9342
  0
9227
9343
  )) {
9228
- return 23 /* Multisig */;
9344
+ return 24 /* Multisig */;
9229
9345
  }
9230
9346
  if (containsBytes(
9231
9347
  data,
@@ -9234,7 +9350,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9234
9350
  ),
9235
9351
  0
9236
9352
  )) {
9237
- return 24 /* NegotiationChatbot */;
9353
+ return 25 /* NegotiationChatbot */;
9238
9354
  }
9239
9355
  if (containsBytes(
9240
9356
  data,
@@ -9243,7 +9359,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9243
9359
  ),
9244
9360
  0
9245
9361
  )) {
9246
- return 25 /* Payment */;
9362
+ return 26 /* Payment */;
9247
9363
  }
9248
9364
  if (containsBytes(
9249
9365
  data,
@@ -9252,7 +9368,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9252
9368
  ),
9253
9369
  0
9254
9370
  )) {
9255
- return 26 /* RbacConfig */;
9371
+ return 27 /* RbacConfig */;
9256
9372
  }
9257
9373
  if (containsBytes(
9258
9374
  data,
@@ -9261,7 +9377,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9261
9377
  ),
9262
9378
  0
9263
9379
  )) {
9264
- return 27 /* ReplicationRecord */;
9380
+ return 28 /* ReplicationRecord */;
9265
9381
  }
9266
9382
  if (containsBytes(
9267
9383
  data,
@@ -9270,7 +9386,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9270
9386
  ),
9271
9387
  0
9272
9388
  )) {
9273
- return 28 /* ReplicationTemplate */;
9389
+ return 29 /* ReplicationTemplate */;
9274
9390
  }
9275
9391
  if (containsBytes(
9276
9392
  data,
@@ -9279,7 +9395,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9279
9395
  ),
9280
9396
  0
9281
9397
  )) {
9282
- return 29 /* ResaleMarket */;
9398
+ return 30 /* ResaleMarket */;
9283
9399
  }
9284
9400
  if (containsBytes(
9285
9401
  data,
@@ -9288,7 +9404,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9288
9404
  ),
9289
9405
  0
9290
9406
  )) {
9291
- return 30 /* RoyaltyStream */;
9407
+ return 31 /* RoyaltyStream */;
9292
9408
  }
9293
9409
  if (containsBytes(
9294
9410
  data,
@@ -9297,7 +9413,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9297
9413
  ),
9298
9414
  0
9299
9415
  )) {
9300
- return 31 /* ServiceListing */;
9416
+ return 32 /* ServiceListing */;
9301
9417
  }
9302
9418
  if (containsBytes(
9303
9419
  data,
@@ -9306,7 +9422,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9306
9422
  ),
9307
9423
  0
9308
9424
  )) {
9309
- return 32 /* ServicePurchase */;
9425
+ return 33 /* ServicePurchase */;
9310
9426
  }
9311
9427
  if (containsBytes(
9312
9428
  data,
@@ -9315,7 +9431,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9315
9431
  ),
9316
9432
  0
9317
9433
  )) {
9318
- return 33 /* UserRegistry */;
9434
+ return 34 /* UserRegistry */;
9319
9435
  }
9320
9436
  if (containsBytes(
9321
9437
  data,
@@ -9324,7 +9440,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9324
9440
  ),
9325
9441
  0
9326
9442
  )) {
9327
- return 34 /* WorkDelivery */;
9443
+ return 35 /* WorkDelivery */;
9328
9444
  }
9329
9445
  if (containsBytes(
9330
9446
  data,
@@ -9333,7 +9449,7 @@ function identifyGhostspeakMarketplaceAccount(account) {
9333
9449
  ),
9334
9450
  0
9335
9451
  )) {
9336
- return 35 /* WorkOrder */;
9452
+ return 36 /* WorkOrder */;
9337
9453
  }
9338
9454
  throw new Error(
9339
9455
  "The provided account could not be identified as a ghostspeakMarketplace account."
@@ -9746,6 +9862,15 @@ function identifyGhostspeakMarketplaceInstruction(instruction) {
9746
9862
  )) {
9747
9863
  return 44 /* RegisterAgent */;
9748
9864
  }
9865
+ if (containsBytes(
9866
+ data,
9867
+ fixEncoderSize(getBytesEncoder(), 8).encode(
9868
+ new Uint8Array([15, 6, 94, 55, 65, 80, 123, 248])
9869
+ ),
9870
+ 0
9871
+ )) {
9872
+ return 45 /* RegisterAgentCompressed */;
9873
+ }
9749
9874
  if (containsBytes(
9750
9875
  data,
9751
9876
  fixEncoderSize(getBytesEncoder(), 8).encode(
@@ -9753,7 +9878,7 @@ function identifyGhostspeakMarketplaceInstruction(instruction) {
9753
9878
  ),
9754
9879
  0
9755
9880
  )) {
9756
- return 45 /* RegisterExtension */;
9881
+ return 46 /* RegisterExtension */;
9757
9882
  }
9758
9883
  if (containsBytes(
9759
9884
  data,
@@ -9762,7 +9887,7 @@ function identifyGhostspeakMarketplaceInstruction(instruction) {
9762
9887
  ),
9763
9888
  0
9764
9889
  )) {
9765
- return 46 /* ReplicateAgent */;
9890
+ return 47 /* ReplicateAgent */;
9766
9891
  }
9767
9892
  if (containsBytes(
9768
9893
  data,
@@ -9771,7 +9896,7 @@ function identifyGhostspeakMarketplaceInstruction(instruction) {
9771
9896
  ),
9772
9897
  0
9773
9898
  )) {
9774
- return 47 /* ResolveDispute */;
9899
+ return 48 /* ResolveDispute */;
9775
9900
  }
9776
9901
  if (containsBytes(
9777
9902
  data,
@@ -9780,7 +9905,7 @@ function identifyGhostspeakMarketplaceInstruction(instruction) {
9780
9905
  ),
9781
9906
  0
9782
9907
  )) {
9783
- return 48 /* SendA2aMessage */;
9908
+ return 49 /* SendA2aMessage */;
9784
9909
  }
9785
9910
  if (containsBytes(
9786
9911
  data,
@@ -9789,7 +9914,7 @@ function identifyGhostspeakMarketplaceInstruction(instruction) {
9789
9914
  ),
9790
9915
  0
9791
9916
  )) {
9792
- return 49 /* SendMessage */;
9917
+ return 50 /* SendMessage */;
9793
9918
  }
9794
9919
  if (containsBytes(
9795
9920
  data,
@@ -9798,7 +9923,7 @@ function identifyGhostspeakMarketplaceInstruction(instruction) {
9798
9923
  ),
9799
9924
  0
9800
9925
  )) {
9801
- return 50 /* SubmitDisputeEvidence */;
9926
+ return 51 /* SubmitDisputeEvidence */;
9802
9927
  }
9803
9928
  if (containsBytes(
9804
9929
  data,
@@ -9807,7 +9932,7 @@ function identifyGhostspeakMarketplaceInstruction(instruction) {
9807
9932
  ),
9808
9933
  0
9809
9934
  )) {
9810
- return 51 /* SubmitWorkDelivery */;
9935
+ return 52 /* SubmitWorkDelivery */;
9811
9936
  }
9812
9937
  if (containsBytes(
9813
9938
  data,
@@ -9816,7 +9941,7 @@ function identifyGhostspeakMarketplaceInstruction(instruction) {
9816
9941
  ),
9817
9942
  0
9818
9943
  )) {
9819
- return 52 /* UpdateA2aStatus */;
9944
+ return 53 /* UpdateA2aStatus */;
9820
9945
  }
9821
9946
  if (containsBytes(
9822
9947
  data,
@@ -9825,7 +9950,7 @@ function identifyGhostspeakMarketplaceInstruction(instruction) {
9825
9950
  ),
9826
9951
  0
9827
9952
  )) {
9828
- return 53 /* UpdateAgent */;
9953
+ return 54 /* UpdateAgent */;
9829
9954
  }
9830
9955
  if (containsBytes(
9831
9956
  data,
@@ -9834,7 +9959,7 @@ function identifyGhostspeakMarketplaceInstruction(instruction) {
9834
9959
  ),
9835
9960
  0
9836
9961
  )) {
9837
- return 54 /* UpdateAgentReputation */;
9962
+ return 55 /* UpdateAgentReputation */;
9838
9963
  }
9839
9964
  if (containsBytes(
9840
9965
  data,
@@ -9843,7 +9968,7 @@ function identifyGhostspeakMarketplaceInstruction(instruction) {
9843
9968
  ),
9844
9969
  0
9845
9970
  )) {
9846
- return 55 /* UpdateAgentService */;
9971
+ return 56 /* UpdateAgentService */;
9847
9972
  }
9848
9973
  if (containsBytes(
9849
9974
  data,
@@ -9852,7 +9977,7 @@ function identifyGhostspeakMarketplaceInstruction(instruction) {
9852
9977
  ),
9853
9978
  0
9854
9979
  )) {
9855
- return 56 /* UpdateAnalyticsDashboard */;
9980
+ return 57 /* UpdateAnalyticsDashboard */;
9856
9981
  }
9857
9982
  if (containsBytes(
9858
9983
  data,
@@ -9861,7 +9986,7 @@ function identifyGhostspeakMarketplaceInstruction(instruction) {
9861
9986
  ),
9862
9987
  0
9863
9988
  )) {
9864
- return 57 /* UpdateDynamicPricing */;
9989
+ return 58 /* UpdateDynamicPricing */;
9865
9990
  }
9866
9991
  if (containsBytes(
9867
9992
  data,
@@ -9870,7 +9995,7 @@ function identifyGhostspeakMarketplaceInstruction(instruction) {
9870
9995
  ),
9871
9996
  0
9872
9997
  )) {
9873
- return 58 /* UpdateMarketAnalytics */;
9998
+ return 59 /* UpdateMarketAnalytics */;
9874
9999
  }
9875
10000
  if (containsBytes(
9876
10001
  data,
@@ -9879,7 +10004,7 @@ function identifyGhostspeakMarketplaceInstruction(instruction) {
9879
10004
  ),
9880
10005
  0
9881
10006
  )) {
9882
- return 59 /* VerifyAgent */;
10007
+ return 60 /* VerifyAgent */;
9883
10008
  }
9884
10009
  throw new Error(
9885
10010
  "The provided instruction could not be identified as a ghostspeakMarketplace instruction."
@@ -9888,44 +10013,45 @@ function identifyGhostspeakMarketplaceInstruction(instruction) {
9888
10013
  var GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS, GhostspeakMarketplaceAccount, GhostspeakMarketplaceInstruction;
9889
10014
  var init_ghostspeakMarketplace = __esm({
9890
10015
  "src/generated/programs/ghostspeakMarketplace.ts"() {
9891
- GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS = "5mMhsW6dP6RCXv73CdBtzfAV9CJkXKYv3SqPDiccf5aK";
10016
+ GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS = "AJVoWJ4JC1xJR9ufGBGuMgFpHMLouB29sFRTJRvEK1ZR";
9892
10017
  GhostspeakMarketplaceAccount = /* @__PURE__ */ ((GhostspeakMarketplaceAccount2) => {
9893
10018
  GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["A2AMessage"] = 0] = "A2AMessage";
9894
10019
  GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["A2ASession"] = 1] = "A2ASession";
9895
10020
  GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["A2AStatus"] = 2] = "A2AStatus";
9896
10021
  GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["Agent"] = 3] = "Agent";
9897
10022
  GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["AgentIncentives"] = 4] = "AgentIncentives";
9898
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["AgentVerification"] = 5] = "AgentVerification";
9899
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["AnalyticsDashboard"] = 6] = "AnalyticsDashboard";
9900
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["ArbitratorRegistry"] = 7] = "ArbitratorRegistry";
9901
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["AuctionMarketplace"] = 8] = "AuctionMarketplace";
9902
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["AuditTrail"] = 9] = "AuditTrail";
9903
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["BulkDeal"] = 10] = "BulkDeal";
9904
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["Channel"] = 11] = "Channel";
9905
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["ComplianceReport"] = 12] = "ComplianceReport";
9906
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["DisputeCase"] = 13] = "DisputeCase";
9907
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["DynamicPricingEngine"] = 14] = "DynamicPricingEngine";
9908
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["Extension"] = 15] = "Extension";
9909
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["GovernanceProposal"] = 16] = "GovernanceProposal";
9910
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["IncentiveProgram"] = 17] = "IncentiveProgram";
9911
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["JobApplication"] = 18] = "JobApplication";
9912
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["JobContract"] = 19] = "JobContract";
9913
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["JobPosting"] = 20] = "JobPosting";
9914
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["MarketAnalytics"] = 21] = "MarketAnalytics";
9915
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["Message"] = 22] = "Message";
9916
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["Multisig"] = 23] = "Multisig";
9917
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["NegotiationChatbot"] = 24] = "NegotiationChatbot";
9918
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["Payment"] = 25] = "Payment";
9919
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["RbacConfig"] = 26] = "RbacConfig";
9920
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["ReplicationRecord"] = 27] = "ReplicationRecord";
9921
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["ReplicationTemplate"] = 28] = "ReplicationTemplate";
9922
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["ResaleMarket"] = 29] = "ResaleMarket";
9923
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["RoyaltyStream"] = 30] = "RoyaltyStream";
9924
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["ServiceListing"] = 31] = "ServiceListing";
9925
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["ServicePurchase"] = 32] = "ServicePurchase";
9926
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["UserRegistry"] = 33] = "UserRegistry";
9927
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["WorkDelivery"] = 34] = "WorkDelivery";
9928
- GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["WorkOrder"] = 35] = "WorkOrder";
10023
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["AgentTreeConfig"] = 5] = "AgentTreeConfig";
10024
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["AgentVerification"] = 6] = "AgentVerification";
10025
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["AnalyticsDashboard"] = 7] = "AnalyticsDashboard";
10026
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["ArbitratorRegistry"] = 8] = "ArbitratorRegistry";
10027
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["AuctionMarketplace"] = 9] = "AuctionMarketplace";
10028
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["AuditTrail"] = 10] = "AuditTrail";
10029
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["BulkDeal"] = 11] = "BulkDeal";
10030
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["Channel"] = 12] = "Channel";
10031
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["ComplianceReport"] = 13] = "ComplianceReport";
10032
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["DisputeCase"] = 14] = "DisputeCase";
10033
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["DynamicPricingEngine"] = 15] = "DynamicPricingEngine";
10034
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["Extension"] = 16] = "Extension";
10035
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["GovernanceProposal"] = 17] = "GovernanceProposal";
10036
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["IncentiveProgram"] = 18] = "IncentiveProgram";
10037
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["JobApplication"] = 19] = "JobApplication";
10038
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["JobContract"] = 20] = "JobContract";
10039
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["JobPosting"] = 21] = "JobPosting";
10040
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["MarketAnalytics"] = 22] = "MarketAnalytics";
10041
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["Message"] = 23] = "Message";
10042
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["Multisig"] = 24] = "Multisig";
10043
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["NegotiationChatbot"] = 25] = "NegotiationChatbot";
10044
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["Payment"] = 26] = "Payment";
10045
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["RbacConfig"] = 27] = "RbacConfig";
10046
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["ReplicationRecord"] = 28] = "ReplicationRecord";
10047
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["ReplicationTemplate"] = 29] = "ReplicationTemplate";
10048
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["ResaleMarket"] = 30] = "ResaleMarket";
10049
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["RoyaltyStream"] = 31] = "RoyaltyStream";
10050
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["ServiceListing"] = 32] = "ServiceListing";
10051
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["ServicePurchase"] = 33] = "ServicePurchase";
10052
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["UserRegistry"] = 34] = "UserRegistry";
10053
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["WorkDelivery"] = 35] = "WorkDelivery";
10054
+ GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["WorkOrder"] = 36] = "WorkOrder";
9929
10055
  return GhostspeakMarketplaceAccount2;
9930
10056
  })(GhostspeakMarketplaceAccount || {});
9931
10057
  GhostspeakMarketplaceInstruction = /* @__PURE__ */ ((GhostspeakMarketplaceInstruction2) => {
@@ -9974,21 +10100,22 @@ var init_ghostspeakMarketplace = __esm({
9974
10100
  GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["ProcessPayment"] = 42] = "ProcessPayment";
9975
10101
  GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["PurchaseService"] = 43] = "PurchaseService";
9976
10102
  GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["RegisterAgent"] = 44] = "RegisterAgent";
9977
- GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["RegisterExtension"] = 45] = "RegisterExtension";
9978
- GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["ReplicateAgent"] = 46] = "ReplicateAgent";
9979
- GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["ResolveDispute"] = 47] = "ResolveDispute";
9980
- GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["SendA2aMessage"] = 48] = "SendA2aMessage";
9981
- GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["SendMessage"] = 49] = "SendMessage";
9982
- GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["SubmitDisputeEvidence"] = 50] = "SubmitDisputeEvidence";
9983
- GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["SubmitWorkDelivery"] = 51] = "SubmitWorkDelivery";
9984
- GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["UpdateA2aStatus"] = 52] = "UpdateA2aStatus";
9985
- GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["UpdateAgent"] = 53] = "UpdateAgent";
9986
- GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["UpdateAgentReputation"] = 54] = "UpdateAgentReputation";
9987
- GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["UpdateAgentService"] = 55] = "UpdateAgentService";
9988
- GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["UpdateAnalyticsDashboard"] = 56] = "UpdateAnalyticsDashboard";
9989
- GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["UpdateDynamicPricing"] = 57] = "UpdateDynamicPricing";
9990
- GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["UpdateMarketAnalytics"] = 58] = "UpdateMarketAnalytics";
9991
- GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["VerifyAgent"] = 59] = "VerifyAgent";
10103
+ GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["RegisterAgentCompressed"] = 45] = "RegisterAgentCompressed";
10104
+ GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["RegisterExtension"] = 46] = "RegisterExtension";
10105
+ GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["ReplicateAgent"] = 47] = "ReplicateAgent";
10106
+ GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["ResolveDispute"] = 48] = "ResolveDispute";
10107
+ GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["SendA2aMessage"] = 49] = "SendA2aMessage";
10108
+ GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["SendMessage"] = 50] = "SendMessage";
10109
+ GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["SubmitDisputeEvidence"] = 51] = "SubmitDisputeEvidence";
10110
+ GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["SubmitWorkDelivery"] = 52] = "SubmitWorkDelivery";
10111
+ GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["UpdateA2aStatus"] = 53] = "UpdateA2aStatus";
10112
+ GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["UpdateAgent"] = 54] = "UpdateAgent";
10113
+ GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["UpdateAgentReputation"] = 55] = "UpdateAgentReputation";
10114
+ GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["UpdateAgentService"] = 56] = "UpdateAgentService";
10115
+ GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["UpdateAnalyticsDashboard"] = 57] = "UpdateAnalyticsDashboard";
10116
+ GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["UpdateDynamicPricing"] = 58] = "UpdateDynamicPricing";
10117
+ GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["UpdateMarketAnalytics"] = 59] = "UpdateMarketAnalytics";
10118
+ GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["VerifyAgent"] = 60] = "VerifyAgent";
9992
10119
  return GhostspeakMarketplaceInstruction2;
9993
10120
  })(GhostspeakMarketplaceInstruction || {});
9994
10121
  }
@@ -10000,8 +10127,6 @@ var init_programs = __esm({
10000
10127
  init_ghostspeakMarketplace();
10001
10128
  }
10002
10129
  });
10003
-
10004
- // src/generated/errors/ghostspeakMarketplace.ts
10005
10130
  function getGhostspeakMarketplaceErrorMessage(code) {
10006
10131
  if (process.env.NODE_ENV !== "production") {
10007
10132
  return ghostspeakMarketplaceErrorMessages[code];
@@ -10009,12 +10134,12 @@ function getGhostspeakMarketplaceErrorMessage(code) {
10009
10134
  return "Error message not available in production bundles.";
10010
10135
  }
10011
10136
  function isGhostspeakMarketplaceError(error, transactionMessage, code) {
10012
- if (typeof error !== "object" || error === null) return false;
10013
- const errorObj = error;
10014
- if (errorObj?.context?.programAddress === GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS && errorObj?.context?.code !== void 0) {
10015
- return code === void 0 || errorObj.context.code === code;
10016
- }
10017
- return false;
10137
+ return isProgramError(
10138
+ error,
10139
+ transactionMessage,
10140
+ GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS,
10141
+ code
10142
+ );
10018
10143
  }
10019
10144
  var GHOSTSPEAK_MARKETPLACE_ERROR__AGENT_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__AGENT_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PRICE_RANGE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PAYMENT_AMOUNT, GHOSTSPEAK_MARKETPLACE_ERROR__INSUFFICIENT_BALANCE, GHOSTSPEAK_MARKETPLACE_ERROR__PAYMENT_ALREADY_PROCESSED, GHOSTSPEAK_MARKETPLACE_ERROR__UNAUTHORIZED_ACCESS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_AGENT_OWNER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_STATUS_TRANSITION, GHOSTSPEAK_MARKETPLACE_ERROR__WORK_ORDER_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__SERVICE_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_WORK_ORDER_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_TASK_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_ESCROW_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_REPORT_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_NEGOTIATION_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__DEADLINE_PASSED, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DEADLINE, GHOSTSPEAK_MARKETPLACE_ERROR__UPDATE_FREQUENCY_TOO_HIGH, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_BID, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_APPLICATION_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PERIOD, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_EXPIRATION, GHOSTSPEAK_MARKETPLACE_ERROR__TASK_DEADLINE_EXCEEDED, GHOSTSPEAK_MARKETPLACE_ERROR__NEGOTIATION_EXPIRED, GHOSTSPEAK_MARKETPLACE_ERROR__DEAL_EXPIRED, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_DURATION_TOO_SHORT, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_DURATION_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__BID_INCREMENT_TOO_LOW, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_STARTING_PRICE, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_ENDED, GHOSTSPEAK_MARKETPLACE_ERROR__BID_TOO_LOW, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_NOT_ENDED, GHOSTSPEAK_MARKETPLACE_ERROR__CANNOT_CANCEL_AUCTION_WITH_BIDS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_AMOUNT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_VOLUME_TIER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DISCOUNT_PERCENTAGE, GHOSTSPEAK_MARKETPLACE_ERROR__OVERLAPPING_VOLUME_TIERS, GHOSTSPEAK_MARKETPLACE_ERROR__DEAL_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__DEAL_FULL, GHOSTSPEAK_MARKETPLACE_ERROR__NO_PARTICIPANTS, GHOSTSPEAK_MARKETPLACE_ERROR__INSUFFICIENT_PARTICIPANTS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_MIN_PARTICIPANTS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_MAX_PARTICIPANTS, GHOSTSPEAK_MARKETPLACE_ERROR__INPUT_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__NAME_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__MESSAGE_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_RATING, GHOSTSPEAK_MARKETPLACE_ERROR__DESCRIPTION_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__TITLE_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_CAPABILITIES, GHOSTSPEAK_MARKETPLACE_ERROR__CAPABILITY_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_GENOME_HASH, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_SERVICE_ENDPOINT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_METADATA_URI, GHOSTSPEAK_MARKETPLACE_ERROR__METADATA_URI_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__METRICS_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_REQUIREMENTS, GHOSTSPEAK_MARKETPLACE_ERROR__REQUIREMENT_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__NO_DELIVERABLES, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_DELIVERABLES, GHOSTSPEAK_MARKETPLACE_ERROR__IPFS_HASH_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__TERM_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_TERMS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_VOLUME_TIERS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_BIDS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_AUDIT_ENTRIES, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_TOP_AGENTS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_COUNTER_OFFERS, GHOSTSPEAK_MARKETPLACE_ERROR__TASK_ID_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_REASON_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__COMPLETION_PROOF_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_DETAILS_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__RESOLUTION_NOTES_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__ARITHMETIC_OVERFLOW, GHOSTSPEAK_MARKETPLACE_ERROR__ARITHMETIC_UNDERFLOW, GHOSTSPEAK_MARKETPLACE_ERROR__DIVISION_BY_ZERO, GHOSTSPEAK_MARKETPLACE_ERROR__VALUE_EXCEEDS_MAXIMUM, GHOSTSPEAK_MARKETPLACE_ERROR__VALUE_BELOW_MINIMUM, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_OFFER, GHOSTSPEAK_MARKETPLACE_ERROR__SERVICE_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PERCENTAGE, GHOSTSPEAK_MARKETPLACE_ERROR__COMPUTE_BUDGET_EXCEEDED, GHOSTSPEAK_MARKETPLACE_ERROR__JOB_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__INSUFFICIENT_FUNDS, GHOSTSPEAK_MARKETPLACE_ERROR__AGENT_ALREADY_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_REPUTATION_SCORE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_SERVICE_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_JOB_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__AUCTION_ALREADY_ENDED, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_CASE_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_ALREADY_RESOLVED, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DISPUTE_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_EVIDENCE_ITEMS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_CONTRACT_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__STRING_TOO_LONG, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_VOLUME, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_VALUE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DURATION, GHOSTSPEAK_MARKETPLACE_ERROR__JOB_ALREADY_FILLED, GHOSTSPEAK_MARKETPLACE_ERROR__APPLICATION_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__APPLICATION_ALREADY_PROCESSED, GHOSTSPEAK_MARKETPLACE_ERROR__LISTING_ALREADY_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__LISTING_NOT_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_SERVICE_TYPE, GHOSTSPEAK_MARKETPLACE_ERROR__AGENT_ALREADY_REGISTERED, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_AGENT_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__MESSAGE_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_MESSAGE_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__CHANNEL_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__CHANNEL_ALREADY_EXISTS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_CHANNEL_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DELIVERY_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__ESCROW_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__ESCROW_ALREADY_RELEASED, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_ESCROW_AMOUNT, GHOSTSPEAK_MARKETPLACE_ERROR__NEGOTIATION_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_OFFER_AMOUNT, GHOSTSPEAK_MARKETPLACE_ERROR__ROYALTY_CONFIGURATION_INVALID, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_ROYALTY_PERCENTAGE, GHOSTSPEAK_MARKETPLACE_ERROR__ANALYTICS_NOT_ENABLED, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_METRICS_DATA, GHOSTSPEAK_MARKETPLACE_ERROR__EXTENSION_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__EXTENSION_ALREADY_ENABLED, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_EXTENSION_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__INCENTIVE_POOL_EXHAUSTED, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_INCENTIVE_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__COMPLIANCE_CHECK_FAILED, GHOSTSPEAK_MARKETPLACE_ERROR__GOVERNANCE_PROPOSAL_INVALID, GHOSTSPEAK_MARKETPLACE_ERROR__VOTING_PERIOD_ENDED, GHOSTSPEAK_MARKETPLACE_ERROR__ALREADY_VOTED, GHOSTSPEAK_MARKETPLACE_ERROR__INSUFFICIENT_VOTING_POWER, GHOSTSPEAK_MARKETPLACE_ERROR__REPLICATION_NOT_ALLOWED, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_REPLICATION_CONFIG, GHOSTSPEAK_MARKETPLACE_ERROR__PRICE_MODEL_NOT_SUPPORTED, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PRICE_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__BULK_DEAL_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PARTICIPANT_COUNT, GHOSTSPEAK_MARKETPLACE_ERROR__DEAL_ALREADY_FINALIZED, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_A2_A_PROTOCOL_MESSAGE, GHOSTSPEAK_MARKETPLACE_ERROR__PROTOCOL_VERSION_MISMATCH, GHOSTSPEAK_MARKETPLACE_ERROR__TASK_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__TASK_ALREADY_COMPLETED, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_TASK_CONFIGURATION, GHOSTSPEAK_MARKETPLACE_ERROR__REPORT_NOT_FOUND, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_REPORT_DATA, GHOSTSPEAK_MARKETPLACE_ERROR__ACCESS_DENIED, GHOSTSPEAK_MARKETPLACE_ERROR__OPERATION_NOT_SUPPORTED, GHOSTSPEAK_MARKETPLACE_ERROR__RESOURCE_LOCKED, GHOSTSPEAK_MARKETPLACE_ERROR__RATE_LIMIT_EXCEEDED, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_STATE_TRANSITION, GHOSTSPEAK_MARKETPLACE_ERROR__DATA_CORRUPTION_DETECTED, GHOSTSPEAK_MARKETPLACE_ERROR__SIGNATURE_VERIFICATION_FAILED, GHOSTSPEAK_MARKETPLACE_ERROR__TOKEN_TRANSFER_FAILED, GHOSTSPEAK_MARKETPLACE_ERROR__ACCOUNT_NOT_INITIALIZED, GHOSTSPEAK_MARKETPLACE_ERROR__ACCOUNT_ALREADY_INITIALIZED, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_ACCOUNT_OWNER, GHOSTSPEAK_MARKETPLACE_ERROR__MAXIMUM_RETRIES_EXCEEDED, GHOSTSPEAK_MARKETPLACE_ERROR__OPERATION_TIMED_OUT, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_INPUT_FORMAT, GHOSTSPEAK_MARKETPLACE_ERROR__FEATURE_NOT_ENABLED, GHOSTSPEAK_MARKETPLACE_ERROR__MAINTENANCE_MODE_ACTIVE, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_INPUT_LENGTH, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_PARAMETER, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_DEAL_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__DISPUTE_WINDOW_EXPIRED, GHOSTSPEAK_MARKETPLACE_ERROR__EVIDENCE_WINDOW_EXPIRED, GHOSTSPEAK_MARKETPLACE_ERROR__TOO_MANY_EVIDENCE_SUBMISSIONS, GHOSTSPEAK_MARKETPLACE_ERROR__UNAUTHORIZED_ARBITRATOR, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_TRANSACTION_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__INVALID_EXTENSION_STATUS, GHOSTSPEAK_MARKETPLACE_ERROR__WORK_ORDER_ALREADY_EXISTS, ghostspeakMarketplaceErrorMessages;
10020
10145
  var init_ghostspeakMarketplace2 = __esm({
@@ -10381,9 +10506,6 @@ var init_errors = __esm({
10381
10506
  init_ghostspeakMarketplace2();
10382
10507
  }
10383
10508
  });
10384
- function kitIsTransactionSigner(value) {
10385
- return typeof value === "object" && value !== null && "address" in value && "signTransaction" in value && typeof value.signTransaction === "function";
10386
- }
10387
10509
  function expectSome(value) {
10388
10510
  if (value == null) {
10389
10511
  throw new Error("Expected a value but received null or undefined.");
@@ -10407,10 +10529,10 @@ function getAccountMetaFactory(programAddress, optionalAccountStrategy) {
10407
10529
  if (!account.value) {
10408
10530
  return Object.freeze({
10409
10531
  address: programAddress,
10410
- role: AccountRole.READONLY
10532
+ role: AccountRole$1.READONLY
10411
10533
  });
10412
10534
  }
10413
- const writableRole = account.isWritable ? AccountRole.WRITABLE : AccountRole.READONLY;
10535
+ const writableRole = account.isWritable ? AccountRole$1.WRITABLE : AccountRole$1.READONLY;
10414
10536
  return Object.freeze({
10415
10537
  address: expectAddress(account.value),
10416
10538
  role: isTransactionSigner(account.value) ? upgradeRoleToSigner(writableRole) : writableRole,
@@ -10419,7 +10541,7 @@ function getAccountMetaFactory(programAddress, optionalAccountStrategy) {
10419
10541
  };
10420
10542
  }
10421
10543
  function isTransactionSigner(value) {
10422
- return !!value && typeof value === "object" && "address" in value && kitIsTransactionSigner(value);
10544
+ return !!value && typeof value === "object" && "address" in value && isTransactionSigner$1(value);
10423
10545
  }
10424
10546
  var init_shared = __esm({
10425
10547
  "src/generated/shared/index.ts"() {
@@ -16339,6 +16461,233 @@ var init_registerAgent = __esm({
16339
16461
  ]);
16340
16462
  }
16341
16463
  });
16464
+ function getRegisterAgentCompressedDiscriminatorBytes() {
16465
+ return fixEncoderSize(getBytesEncoder(), 8).encode(
16466
+ REGISTER_AGENT_COMPRESSED_DISCRIMINATOR
16467
+ );
16468
+ }
16469
+ function getRegisterAgentCompressedInstructionDataEncoder() {
16470
+ return transformEncoder(
16471
+ getStructEncoder([
16472
+ ["discriminator", fixEncoderSize(getBytesEncoder(), 8)],
16473
+ ["agentType", getU8Encoder()],
16474
+ ["metadataUri", addEncoderSizePrefix(getUtf8Encoder(), getU32Encoder())],
16475
+ ["agentId", addEncoderSizePrefix(getUtf8Encoder(), getU32Encoder())]
16476
+ ]),
16477
+ (value) => ({
16478
+ ...value,
16479
+ discriminator: REGISTER_AGENT_COMPRESSED_DISCRIMINATOR
16480
+ })
16481
+ );
16482
+ }
16483
+ function getRegisterAgentCompressedInstructionDataDecoder() {
16484
+ return getStructDecoder([
16485
+ ["discriminator", fixDecoderSize(getBytesDecoder(), 8)],
16486
+ ["agentType", getU8Decoder()],
16487
+ ["metadataUri", addDecoderSizePrefix(getUtf8Decoder(), getU32Decoder())],
16488
+ ["agentId", addDecoderSizePrefix(getUtf8Decoder(), getU32Decoder())]
16489
+ ]);
16490
+ }
16491
+ function getRegisterAgentCompressedInstructionDataCodec() {
16492
+ return combineCodec(
16493
+ getRegisterAgentCompressedInstructionDataEncoder(),
16494
+ getRegisterAgentCompressedInstructionDataDecoder()
16495
+ );
16496
+ }
16497
+ async function getRegisterAgentCompressedInstructionAsync(input, config) {
16498
+ const programAddress = config?.programAddress ?? GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS;
16499
+ const originalAccounts = {
16500
+ treeAuthority: { value: input.treeAuthority ?? null, isWritable: true },
16501
+ merkleTree: { value: input.merkleTree ?? null, isWritable: true },
16502
+ userRegistry: { value: input.userRegistry ?? null, isWritable: true },
16503
+ signer: { value: input.signer ?? null, isWritable: true },
16504
+ compressionProgram: {
16505
+ value: input.compressionProgram ?? null,
16506
+ isWritable: false
16507
+ },
16508
+ logWrapper: { value: input.logWrapper ?? null, isWritable: false },
16509
+ systemProgram: { value: input.systemProgram ?? null, isWritable: false },
16510
+ clock: { value: input.clock ?? null, isWritable: false }
16511
+ };
16512
+ const accounts = originalAccounts;
16513
+ const args = { ...input };
16514
+ if (!accounts.treeAuthority.value) {
16515
+ accounts.treeAuthority.value = await getProgramDerivedAddress({
16516
+ programAddress,
16517
+ seeds: [
16518
+ getBytesEncoder().encode(
16519
+ new Uint8Array([
16520
+ 97,
16521
+ 103,
16522
+ 101,
16523
+ 110,
16524
+ 116,
16525
+ 95,
16526
+ 116,
16527
+ 114,
16528
+ 101,
16529
+ 101,
16530
+ 95,
16531
+ 99,
16532
+ 111,
16533
+ 110,
16534
+ 102,
16535
+ 105,
16536
+ 103
16537
+ ])
16538
+ ),
16539
+ getAddressEncoder().encode(expectAddress(accounts.signer.value))
16540
+ ]
16541
+ });
16542
+ }
16543
+ if (!accounts.userRegistry.value) {
16544
+ accounts.userRegistry.value = await getProgramDerivedAddress({
16545
+ programAddress,
16546
+ seeds: [
16547
+ getBytesEncoder().encode(
16548
+ new Uint8Array([
16549
+ 117,
16550
+ 115,
16551
+ 101,
16552
+ 114,
16553
+ 95,
16554
+ 114,
16555
+ 101,
16556
+ 103,
16557
+ 105,
16558
+ 115,
16559
+ 116,
16560
+ 114,
16561
+ 121
16562
+ ])
16563
+ ),
16564
+ getAddressEncoder().encode(expectAddress(accounts.signer.value))
16565
+ ]
16566
+ });
16567
+ }
16568
+ if (!accounts.compressionProgram.value) {
16569
+ accounts.compressionProgram.value = "cmtDvXumGCrqC1Age74AVPhSRVXJMd8PJS91L8KbNCK";
16570
+ }
16571
+ if (!accounts.logWrapper.value) {
16572
+ accounts.logWrapper.value = "noopb9bkMVfRPU8AsbpTUg8AQkHtKwMYZiFUjNRtMmV";
16573
+ }
16574
+ if (!accounts.systemProgram.value) {
16575
+ accounts.systemProgram.value = "11111111111111111111111111111111";
16576
+ }
16577
+ if (!accounts.clock.value) {
16578
+ accounts.clock.value = "SysvarC1ock11111111111111111111111111111111";
16579
+ }
16580
+ const getAccountMeta = getAccountMetaFactory(programAddress);
16581
+ const instruction = {
16582
+ accounts: [
16583
+ getAccountMeta(accounts.treeAuthority),
16584
+ getAccountMeta(accounts.merkleTree),
16585
+ getAccountMeta(accounts.userRegistry),
16586
+ getAccountMeta(accounts.signer),
16587
+ getAccountMeta(accounts.compressionProgram),
16588
+ getAccountMeta(accounts.logWrapper),
16589
+ getAccountMeta(accounts.systemProgram),
16590
+ getAccountMeta(accounts.clock)
16591
+ ],
16592
+ programAddress,
16593
+ data: getRegisterAgentCompressedInstructionDataEncoder().encode(
16594
+ args
16595
+ )
16596
+ };
16597
+ return instruction;
16598
+ }
16599
+ function getRegisterAgentCompressedInstruction(input, config) {
16600
+ const programAddress = config?.programAddress ?? GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS;
16601
+ const originalAccounts = {
16602
+ treeAuthority: { value: input.treeAuthority ?? null, isWritable: true },
16603
+ merkleTree: { value: input.merkleTree ?? null, isWritable: true },
16604
+ userRegistry: { value: input.userRegistry ?? null, isWritable: true },
16605
+ signer: { value: input.signer ?? null, isWritable: true },
16606
+ compressionProgram: {
16607
+ value: input.compressionProgram ?? null,
16608
+ isWritable: false
16609
+ },
16610
+ logWrapper: { value: input.logWrapper ?? null, isWritable: false },
16611
+ systemProgram: { value: input.systemProgram ?? null, isWritable: false },
16612
+ clock: { value: input.clock ?? null, isWritable: false }
16613
+ };
16614
+ const accounts = originalAccounts;
16615
+ const args = { ...input };
16616
+ if (!accounts.compressionProgram.value) {
16617
+ accounts.compressionProgram.value = "cmtDvXumGCrqC1Age74AVPhSRVXJMd8PJS91L8KbNCK";
16618
+ }
16619
+ if (!accounts.logWrapper.value) {
16620
+ accounts.logWrapper.value = "noopb9bkMVfRPU8AsbpTUg8AQkHtKwMYZiFUjNRtMmV";
16621
+ }
16622
+ if (!accounts.systemProgram.value) {
16623
+ accounts.systemProgram.value = "11111111111111111111111111111111";
16624
+ }
16625
+ if (!accounts.clock.value) {
16626
+ accounts.clock.value = "SysvarC1ock11111111111111111111111111111111";
16627
+ }
16628
+ const getAccountMeta = getAccountMetaFactory(programAddress);
16629
+ const instruction = {
16630
+ accounts: [
16631
+ getAccountMeta(accounts.treeAuthority),
16632
+ getAccountMeta(accounts.merkleTree),
16633
+ getAccountMeta(accounts.userRegistry),
16634
+ getAccountMeta(accounts.signer),
16635
+ getAccountMeta(accounts.compressionProgram),
16636
+ getAccountMeta(accounts.logWrapper),
16637
+ getAccountMeta(accounts.systemProgram),
16638
+ getAccountMeta(accounts.clock)
16639
+ ],
16640
+ programAddress,
16641
+ data: getRegisterAgentCompressedInstructionDataEncoder().encode(
16642
+ args
16643
+ )
16644
+ };
16645
+ return instruction;
16646
+ }
16647
+ function parseRegisterAgentCompressedInstruction(instruction) {
16648
+ if (instruction.accounts.length < 8) {
16649
+ throw new Error("Not enough accounts");
16650
+ }
16651
+ let accountIndex = 0;
16652
+ const getNextAccount = () => {
16653
+ const accountMeta = instruction.accounts[accountIndex];
16654
+ accountIndex += 1;
16655
+ return accountMeta;
16656
+ };
16657
+ return {
16658
+ programAddress: instruction.programAddress,
16659
+ accounts: {
16660
+ treeAuthority: getNextAccount(),
16661
+ merkleTree: getNextAccount(),
16662
+ userRegistry: getNextAccount(),
16663
+ signer: getNextAccount(),
16664
+ compressionProgram: getNextAccount(),
16665
+ logWrapper: getNextAccount(),
16666
+ systemProgram: getNextAccount(),
16667
+ clock: getNextAccount()
16668
+ },
16669
+ data: getRegisterAgentCompressedInstructionDataDecoder().decode(
16670
+ instruction.data
16671
+ )
16672
+ };
16673
+ }
16674
+ var REGISTER_AGENT_COMPRESSED_DISCRIMINATOR;
16675
+ var init_registerAgentCompressed = __esm({
16676
+ "src/generated/instructions/registerAgentCompressed.ts"() {
16677
+ init_programs();
16678
+ init_shared();
16679
+ REGISTER_AGENT_COMPRESSED_DISCRIMINATOR = new Uint8Array([
16680
+ 15,
16681
+ 6,
16682
+ 94,
16683
+ 55,
16684
+ 65,
16685
+ 80,
16686
+ 123,
16687
+ 248
16688
+ ]);
16689
+ }
16690
+ });
16342
16691
  function getRegisterExtensionDiscriminatorBytes() {
16343
16692
  return fixEncoderSize(getBytesEncoder(), 8).encode(
16344
16693
  REGISTER_EXTENSION_DISCRIMINATOR
@@ -18523,6 +18872,7 @@ var init_instructions = __esm({
18523
18872
  init_processPayment();
18524
18873
  init_purchaseService();
18525
18874
  init_registerAgent();
18875
+ init_registerAgentCompressed();
18526
18876
  init_registerExtension();
18527
18877
  init_replicateAgent();
18528
18878
  init_resolveDispute();
@@ -18552,6 +18902,7 @@ __export(generated_exports, {
18552
18902
  ADD_TOP_AGENT_DISCRIMINATOR: () => ADD_TOP_AGENT_DISCRIMINATOR,
18553
18903
  AGENT_DISCRIMINATOR: () => AGENT_DISCRIMINATOR,
18554
18904
  AGENT_INCENTIVES_DISCRIMINATOR: () => AGENT_INCENTIVES_DISCRIMINATOR,
18905
+ AGENT_TREE_CONFIG_DISCRIMINATOR: () => AGENT_TREE_CONFIG_DISCRIMINATOR,
18555
18906
  AGENT_VERIFICATION_DISCRIMINATOR: () => AGENT_VERIFICATION_DISCRIMINATOR,
18556
18907
  ANALYTICS_DASHBOARD_DISCRIMINATOR: () => ANALYTICS_DASHBOARD_DISCRIMINATOR,
18557
18908
  APPLY_TO_JOB_DISCRIMINATOR: () => APPLY_TO_JOB_DISCRIMINATOR,
@@ -18829,6 +19180,7 @@ __export(generated_exports, {
18829
19180
  PurchaseStatus: () => PurchaseStatus,
18830
19181
  QuorumMethod: () => QuorumMethod,
18831
19182
  RBAC_CONFIG_DISCRIMINATOR: () => RBAC_CONFIG_DISCRIMINATOR,
19183
+ REGISTER_AGENT_COMPRESSED_DISCRIMINATOR: () => REGISTER_AGENT_COMPRESSED_DISCRIMINATOR,
18832
19184
  REGISTER_AGENT_DISCRIMINATOR: () => REGISTER_AGENT_DISCRIMINATOR,
18833
19185
  REGISTER_EXTENSION_DISCRIMINATOR: () => REGISTER_EXTENSION_DISCRIMINATOR,
18834
19186
  REPLICATE_AGENT_DISCRIMINATOR: () => REPLICATE_AGENT_DISCRIMINATOR,
@@ -18882,6 +19234,7 @@ __export(generated_exports, {
18882
19234
  decodeA2AStatus: () => decodeA2AStatus,
18883
19235
  decodeAgent: () => decodeAgent,
18884
19236
  decodeAgentIncentives: () => decodeAgentIncentives,
19237
+ decodeAgentTreeConfig: () => decodeAgentTreeConfig,
18885
19238
  decodeAgentVerification: () => decodeAgentVerification,
18886
19239
  decodeAnalyticsDashboard: () => decodeAnalyticsDashboard,
18887
19240
  decodeArbitratorRegistry: () => decodeArbitratorRegistry,
@@ -18919,12 +19272,14 @@ __export(generated_exports, {
18919
19272
  fetchA2AStatus: () => fetchA2AStatus,
18920
19273
  fetchAgent: () => fetchAgent,
18921
19274
  fetchAgentIncentives: () => fetchAgentIncentives,
19275
+ fetchAgentTreeConfig: () => fetchAgentTreeConfig,
18922
19276
  fetchAgentVerification: () => fetchAgentVerification,
18923
19277
  fetchAllA2AMessage: () => fetchAllA2AMessage,
18924
19278
  fetchAllA2ASession: () => fetchAllA2ASession,
18925
19279
  fetchAllA2AStatus: () => fetchAllA2AStatus,
18926
19280
  fetchAllAgent: () => fetchAllAgent,
18927
19281
  fetchAllAgentIncentives: () => fetchAllAgentIncentives,
19282
+ fetchAllAgentTreeConfig: () => fetchAllAgentTreeConfig,
18928
19283
  fetchAllAgentVerification: () => fetchAllAgentVerification,
18929
19284
  fetchAllAnalyticsDashboard: () => fetchAllAnalyticsDashboard,
18930
19285
  fetchAllArbitratorRegistry: () => fetchAllArbitratorRegistry,
@@ -18947,6 +19302,7 @@ __export(generated_exports, {
18947
19302
  fetchAllMaybeA2AStatus: () => fetchAllMaybeA2AStatus,
18948
19303
  fetchAllMaybeAgent: () => fetchAllMaybeAgent,
18949
19304
  fetchAllMaybeAgentIncentives: () => fetchAllMaybeAgentIncentives,
19305
+ fetchAllMaybeAgentTreeConfig: () => fetchAllMaybeAgentTreeConfig,
18950
19306
  fetchAllMaybeAgentVerification: () => fetchAllMaybeAgentVerification,
18951
19307
  fetchAllMaybeAnalyticsDashboard: () => fetchAllMaybeAnalyticsDashboard,
18952
19308
  fetchAllMaybeArbitratorRegistry: () => fetchAllMaybeArbitratorRegistry,
@@ -19013,6 +19369,7 @@ __export(generated_exports, {
19013
19369
  fetchMaybeA2AStatus: () => fetchMaybeA2AStatus,
19014
19370
  fetchMaybeAgent: () => fetchMaybeAgent,
19015
19371
  fetchMaybeAgentIncentives: () => fetchMaybeAgentIncentives,
19372
+ fetchMaybeAgentTreeConfig: () => fetchMaybeAgentTreeConfig,
19016
19373
  fetchMaybeAgentVerification: () => fetchMaybeAgentVerification,
19017
19374
  fetchMaybeAnalyticsDashboard: () => fetchMaybeAnalyticsDashboard,
19018
19375
  fetchMaybeArbitratorRegistry: () => fetchMaybeArbitratorRegistry,
@@ -19141,6 +19498,11 @@ __export(generated_exports, {
19141
19498
  getAgentStatusChangedEventCodec: () => getAgentStatusChangedEventCodec,
19142
19499
  getAgentStatusChangedEventDecoder: () => getAgentStatusChangedEventDecoder,
19143
19500
  getAgentStatusChangedEventEncoder: () => getAgentStatusChangedEventEncoder,
19501
+ getAgentTreeConfigCodec: () => getAgentTreeConfigCodec,
19502
+ getAgentTreeConfigDecoder: () => getAgentTreeConfigDecoder,
19503
+ getAgentTreeConfigDiscriminatorBytes: () => getAgentTreeConfigDiscriminatorBytes,
19504
+ getAgentTreeConfigEncoder: () => getAgentTreeConfigEncoder,
19505
+ getAgentTreeConfigSize: () => getAgentTreeConfigSize,
19144
19506
  getAgentUpdatedEventCodec: () => getAgentUpdatedEventCodec,
19145
19507
  getAgentUpdatedEventDecoder: () => getAgentUpdatedEventDecoder,
19146
19508
  getAgentUpdatedEventEncoder: () => getAgentUpdatedEventEncoder,
@@ -19307,6 +19669,9 @@ __export(generated_exports, {
19307
19669
  getComplianceStatusExportCodec: () => getComplianceStatusExportCodec,
19308
19670
  getComplianceStatusExportDecoder: () => getComplianceStatusExportDecoder,
19309
19671
  getComplianceStatusExportEncoder: () => getComplianceStatusExportEncoder,
19672
+ getCompressedAgentCreatedEventCodec: () => getCompressedAgentCreatedEventCodec,
19673
+ getCompressedAgentCreatedEventDecoder: () => getCompressedAgentCreatedEventDecoder,
19674
+ getCompressedAgentCreatedEventEncoder: () => getCompressedAgentCreatedEventEncoder,
19310
19675
  getConditionTypeCodec: () => getConditionTypeCodec,
19311
19676
  getConditionTypeDecoder: () => getConditionTypeDecoder,
19312
19677
  getConditionTypeEncoder: () => getConditionTypeEncoder,
@@ -19840,6 +20205,12 @@ __export(generated_exports, {
19840
20205
  getRbacConfigInitializedEventCodec: () => getRbacConfigInitializedEventCodec,
19841
20206
  getRbacConfigInitializedEventDecoder: () => getRbacConfigInitializedEventDecoder,
19842
20207
  getRbacConfigInitializedEventEncoder: () => getRbacConfigInitializedEventEncoder,
20208
+ getRegisterAgentCompressedDiscriminatorBytes: () => getRegisterAgentCompressedDiscriminatorBytes,
20209
+ getRegisterAgentCompressedInstruction: () => getRegisterAgentCompressedInstruction,
20210
+ getRegisterAgentCompressedInstructionAsync: () => getRegisterAgentCompressedInstructionAsync,
20211
+ getRegisterAgentCompressedInstructionDataCodec: () => getRegisterAgentCompressedInstructionDataCodec,
20212
+ getRegisterAgentCompressedInstructionDataDecoder: () => getRegisterAgentCompressedInstructionDataDecoder,
20213
+ getRegisterAgentCompressedInstructionDataEncoder: () => getRegisterAgentCompressedInstructionDataEncoder,
19843
20214
  getRegisterAgentDiscriminatorBytes: () => getRegisterAgentDiscriminatorBytes,
19844
20215
  getRegisterAgentInstruction: () => getRegisterAgentInstruction,
19845
20216
  getRegisterAgentInstructionAsync: () => getRegisterAgentInstructionAsync,
@@ -20195,6 +20566,7 @@ __export(generated_exports, {
20195
20566
  parsePlaceAuctionBidInstruction: () => parsePlaceAuctionBidInstruction,
20196
20567
  parseProcessPaymentInstruction: () => parseProcessPaymentInstruction,
20197
20568
  parsePurchaseServiceInstruction: () => parsePurchaseServiceInstruction,
20569
+ parseRegisterAgentCompressedInstruction: () => parseRegisterAgentCompressedInstruction,
20198
20570
  parseRegisterAgentInstruction: () => parseRegisterAgentInstruction,
20199
20571
  parseRegisterExtensionInstruction: () => parseRegisterExtensionInstruction,
20200
20572
  parseReplicateAgentInstruction: () => parseReplicateAgentInstruction,
@@ -20260,7 +20632,7 @@ var init_rpc = __esm({
20260
20632
  const result = await this.rpc.getAccountInfo(address2, {
20261
20633
  commitment,
20262
20634
  encoding: "base64"
20263
- }).send();
20635
+ });
20264
20636
  return result.value;
20265
20637
  } catch (error) {
20266
20638
  console.warn(`Failed to fetch account ${address2}:`, error);
@@ -20275,7 +20647,7 @@ var init_rpc = __esm({
20275
20647
  const result = await this.rpc.getMultipleAccounts(addresses, {
20276
20648
  commitment,
20277
20649
  encoding: "base64"
20278
- }).send();
20650
+ });
20279
20651
  return result.value;
20280
20652
  } catch (error) {
20281
20653
  console.warn("Failed to fetch multiple accounts:", error);
@@ -20291,7 +20663,7 @@ var init_rpc = __esm({
20291
20663
  commitment,
20292
20664
  encoding: "base64",
20293
20665
  filters
20294
- }).send();
20666
+ });
20295
20667
  return (result.value || []).map((item) => ({
20296
20668
  address: item.pubkey,
20297
20669
  account: item.account
@@ -20484,25 +20856,26 @@ __export(pda_exports, {
20484
20856
  deriveServicePurchasePda: () => deriveServicePurchasePda,
20485
20857
  deriveUserRegistryPda: () => deriveUserRegistryPda,
20486
20858
  deriveWorkDeliveryPda: () => deriveWorkDeliveryPda,
20487
- deriveWorkOrderPda: () => deriveWorkOrderPda
20859
+ deriveWorkOrderPda: () => deriveWorkOrderPda,
20860
+ findProgramDerivedAddress: () => findProgramDerivedAddress
20488
20861
  });
20489
20862
  async function deriveAgentPda(programId, owner, agentId) {
20490
- const [address2] = await getProgramDerivedAddress$1({
20863
+ const [address2] = await getProgramDerivedAddress({
20491
20864
  programAddress: programId,
20492
20865
  seeds: [
20493
- getBytesEncoder$1().encode(new Uint8Array([97, 103, 101, 110, 116])),
20866
+ getBytesEncoder().encode(new Uint8Array([97, 103, 101, 110, 116])),
20494
20867
  // 'agent'
20495
- getAddressEncoder$1().encode(owner),
20496
- addEncoderSizePrefix$1(getUtf8Encoder$1(), getU32Encoder$1()).encode(agentId)
20868
+ getAddressEncoder().encode(owner),
20869
+ addEncoderSizePrefix(getUtf8Encoder(), getU32Encoder()).encode(agentId)
20497
20870
  ]
20498
20871
  });
20499
20872
  return address2;
20500
20873
  }
20501
20874
  async function deriveServiceListingPda(programId, creator, listingId) {
20502
- const [address2] = await getProgramDerivedAddress$1({
20875
+ const [address2] = await getProgramDerivedAddress({
20503
20876
  programAddress: programId,
20504
20877
  seeds: [
20505
- getBytesEncoder$1().encode(new Uint8Array([
20878
+ getBytesEncoder().encode(new Uint8Array([
20506
20879
  115,
20507
20880
  101,
20508
20881
  114,
@@ -20520,17 +20893,17 @@ async function deriveServiceListingPda(programId, creator, listingId) {
20520
20893
  103
20521
20894
  ])),
20522
20895
  // 'service_listing'
20523
- getAddressEncoder$1().encode(creator),
20524
- addEncoderSizePrefix$1(getUtf8Encoder$1(), getU32Encoder$1()).encode(listingId)
20896
+ getAddressEncoder().encode(creator),
20897
+ addEncoderSizePrefix(getUtf8Encoder(), getU32Encoder()).encode(listingId)
20525
20898
  ]
20526
20899
  });
20527
20900
  return address2;
20528
20901
  }
20529
20902
  async function deriveJobPostingPda(programId, employer, jobId) {
20530
- const [address2] = await getProgramDerivedAddress$1({
20903
+ const [address2] = await getProgramDerivedAddress({
20531
20904
  programAddress: programId,
20532
20905
  seeds: [
20533
- getBytesEncoder$1().encode(new Uint8Array([
20906
+ getBytesEncoder().encode(new Uint8Array([
20534
20907
  106,
20535
20908
  111,
20536
20909
  98,
@@ -20544,17 +20917,17 @@ async function deriveJobPostingPda(programId, employer, jobId) {
20544
20917
  103
20545
20918
  ])),
20546
20919
  // 'job_posting'
20547
- getAddressEncoder$1().encode(employer),
20548
- addEncoderSizePrefix$1(getUtf8Encoder$1(), getU32Encoder$1()).encode(jobId)
20920
+ getAddressEncoder().encode(employer),
20921
+ addEncoderSizePrefix(getUtf8Encoder(), getU32Encoder()).encode(jobId)
20549
20922
  ]
20550
20923
  });
20551
20924
  return address2;
20552
20925
  }
20553
20926
  async function deriveJobApplicationPda(programId, jobPosting, applicant) {
20554
- const [address2] = await getProgramDerivedAddress$1({
20927
+ const [address2] = await getProgramDerivedAddress({
20555
20928
  programAddress: programId,
20556
20929
  seeds: [
20557
- getBytesEncoder$1().encode(new Uint8Array([
20930
+ getBytesEncoder().encode(new Uint8Array([
20558
20931
  106,
20559
20932
  111,
20560
20933
  98,
@@ -20572,17 +20945,17 @@ async function deriveJobApplicationPda(programId, jobPosting, applicant) {
20572
20945
  110
20573
20946
  ])),
20574
20947
  // 'job_application'
20575
- getAddressEncoder$1().encode(jobPosting),
20576
- getAddressEncoder$1().encode(applicant)
20948
+ getAddressEncoder().encode(jobPosting),
20949
+ getAddressEncoder().encode(applicant)
20577
20950
  ]
20578
20951
  });
20579
20952
  return address2;
20580
20953
  }
20581
20954
  async function deriveWorkOrderPda(programId, employer, orderId) {
20582
- const [address2] = await getProgramDerivedAddress$1({
20955
+ const [address2] = await getProgramDerivedAddress({
20583
20956
  programAddress: programId,
20584
20957
  seeds: [
20585
- getBytesEncoder$1().encode(new Uint8Array([
20958
+ getBytesEncoder().encode(new Uint8Array([
20586
20959
  119,
20587
20960
  111,
20588
20961
  114,
@@ -20595,17 +20968,17 @@ async function deriveWorkOrderPda(programId, employer, orderId) {
20595
20968
  114
20596
20969
  ])),
20597
20970
  // 'work_order'
20598
- getAddressEncoder$1().encode(employer),
20599
- getU64Encoder$1().encode(orderId)
20971
+ getAddressEncoder().encode(employer),
20972
+ getU64Encoder().encode(orderId)
20600
20973
  ]
20601
20974
  });
20602
20975
  return address2;
20603
20976
  }
20604
20977
  async function deriveWorkDeliveryPda(programId, workOrder, provider) {
20605
- const [address2] = await getProgramDerivedAddress$1({
20978
+ const [address2] = await getProgramDerivedAddress({
20606
20979
  programAddress: programId,
20607
20980
  seeds: [
20608
- getBytesEncoder$1().encode(new Uint8Array([
20981
+ getBytesEncoder().encode(new Uint8Array([
20609
20982
  119,
20610
20983
  111,
20611
20984
  114,
@@ -20621,17 +20994,17 @@ async function deriveWorkDeliveryPda(programId, workOrder, provider) {
20621
20994
  121
20622
20995
  ])),
20623
20996
  // 'work_delivery'
20624
- getAddressEncoder$1().encode(workOrder),
20625
- getAddressEncoder$1().encode(provider)
20997
+ getAddressEncoder().encode(workOrder),
20998
+ getAddressEncoder().encode(provider)
20626
20999
  ]
20627
21000
  });
20628
21001
  return address2;
20629
21002
  }
20630
21003
  async function derivePaymentPda(programId, workOrder, payer) {
20631
- const [address2] = await getProgramDerivedAddress$1({
21004
+ const [address2] = await getProgramDerivedAddress({
20632
21005
  programAddress: programId,
20633
21006
  seeds: [
20634
- getBytesEncoder$1().encode(new Uint8Array([
21007
+ getBytesEncoder().encode(new Uint8Array([
20635
21008
  112,
20636
21009
  97,
20637
21010
  121,
@@ -20641,17 +21014,17 @@ async function derivePaymentPda(programId, workOrder, payer) {
20641
21014
  116
20642
21015
  ])),
20643
21016
  // 'payment'
20644
- getAddressEncoder$1().encode(workOrder),
20645
- getAddressEncoder$1().encode(payer)
21017
+ getAddressEncoder().encode(workOrder),
21018
+ getAddressEncoder().encode(payer)
20646
21019
  ]
20647
21020
  });
20648
21021
  return address2;
20649
21022
  }
20650
21023
  async function deriveA2ASessionPda(programId, creator) {
20651
- const [address2] = await getProgramDerivedAddress$1({
21024
+ const [address2] = await getProgramDerivedAddress({
20652
21025
  programAddress: programId,
20653
21026
  seeds: [
20654
- getBytesEncoder$1().encode(new Uint8Array([
21027
+ getBytesEncoder().encode(new Uint8Array([
20655
21028
  97,
20656
21029
  50,
20657
21030
  97,
@@ -20665,16 +21038,16 @@ async function deriveA2ASessionPda(programId, creator) {
20665
21038
  110
20666
21039
  ])),
20667
21040
  // 'a2a_session'
20668
- getAddressEncoder$1().encode(creator)
21041
+ getAddressEncoder().encode(creator)
20669
21042
  ]
20670
21043
  });
20671
21044
  return address2;
20672
21045
  }
20673
- async function deriveA2AMessagePda(programId, session, messageId) {
20674
- const [address2] = await getProgramDerivedAddress$1({
21046
+ async function deriveA2AMessagePda(programId, session, sessionCreatedAt) {
21047
+ const [address2] = await getProgramDerivedAddress({
20675
21048
  programAddress: programId,
20676
21049
  seeds: [
20677
- getBytesEncoder$1().encode(new Uint8Array([
21050
+ getBytesEncoder().encode(new Uint8Array([
20678
21051
  97,
20679
21052
  50,
20680
21053
  97,
@@ -20688,17 +21061,18 @@ async function deriveA2AMessagePda(programId, session, messageId) {
20688
21061
  101
20689
21062
  ])),
20690
21063
  // 'a2a_message'
20691
- getAddressEncoder$1().encode(session),
20692
- getU64Encoder$1().encode(messageId)
21064
+ getAddressEncoder().encode(session),
21065
+ getU64Encoder().encode(sessionCreatedAt)
21066
+ // Fixed: use session.created_at
20693
21067
  ]
20694
21068
  });
20695
21069
  return address2;
20696
21070
  }
20697
21071
  async function deriveUserRegistryPda(programId) {
20698
- const [address2] = await getProgramDerivedAddress$1({
21072
+ const [address2] = await getProgramDerivedAddress({
20699
21073
  programAddress: programId,
20700
21074
  seeds: [
20701
- getBytesEncoder$1().encode(new Uint8Array([
21075
+ getBytesEncoder().encode(new Uint8Array([
20702
21076
  117,
20703
21077
  115,
20704
21078
  101,
@@ -20719,10 +21093,10 @@ async function deriveUserRegistryPda(programId) {
20719
21093
  return address2;
20720
21094
  }
20721
21095
  async function deriveServicePurchasePda(programId, serviceListing, buyer) {
20722
- const [address2] = await getProgramDerivedAddress$1({
21096
+ const [address2] = await getProgramDerivedAddress({
20723
21097
  programAddress: programId,
20724
21098
  seeds: [
20725
- getBytesEncoder$1().encode(new Uint8Array([
21099
+ getBytesEncoder().encode(new Uint8Array([
20726
21100
  115,
20727
21101
  101,
20728
21102
  114,
@@ -20741,17 +21115,17 @@ async function deriveServicePurchasePda(programId, serviceListing, buyer) {
20741
21115
  101
20742
21116
  ])),
20743
21117
  // 'service_purchase'
20744
- getAddressEncoder$1().encode(serviceListing),
20745
- getAddressEncoder$1().encode(buyer)
21118
+ getAddressEncoder().encode(serviceListing),
21119
+ getAddressEncoder().encode(buyer)
20746
21120
  ]
20747
21121
  });
20748
21122
  return address2;
20749
21123
  }
20750
21124
  async function deriveAgentVerificationPda(programId, agent, verifier) {
20751
- const [address2] = await getProgramDerivedAddress$1({
21125
+ const [address2] = await getProgramDerivedAddress({
20752
21126
  programAddress: programId,
20753
21127
  seeds: [
20754
- getBytesEncoder$1().encode(new Uint8Array([
21128
+ getBytesEncoder().encode(new Uint8Array([
20755
21129
  97,
20756
21130
  103,
20757
21131
  101,
@@ -20772,51 +21146,67 @@ async function deriveAgentVerificationPda(programId, agent, verifier) {
20772
21146
  110
20773
21147
  ])),
20774
21148
  // 'agent_verification'
20775
- getAddressEncoder$1().encode(agent),
20776
- getAddressEncoder$1().encode(verifier)
21149
+ getAddressEncoder().encode(agent),
21150
+ getAddressEncoder().encode(verifier)
20777
21151
  ]
20778
21152
  });
20779
21153
  return address2;
20780
21154
  }
21155
+ async function findProgramDerivedAddress(seeds, programId) {
21156
+ const encodedSeeds = seeds.map((seed) => {
21157
+ if (typeof seed === "string") {
21158
+ return getUtf8Encoder().encode(seed);
21159
+ } else if (typeof seed === "object" && seed.constructor === Uint8Array) {
21160
+ return seed;
21161
+ } else {
21162
+ return getAddressEncoder().encode(seed);
21163
+ }
21164
+ });
21165
+ const result = await getProgramDerivedAddress({
21166
+ programAddress: programId,
21167
+ seeds: encodedSeeds
21168
+ });
21169
+ return [result[0], result[1]];
21170
+ }
20781
21171
  var init_pda = __esm({
20782
21172
  "src/utils/pda.ts"() {
20783
21173
  }
20784
21174
  });
20785
21175
  async function deriveAgentPda2(owner, agentId) {
20786
- const encoder = getAddressEncoder();
21176
+ const encoder = getAddressEncoder$1();
20787
21177
  const seeds = [
20788
21178
  Buffer.from("agent"),
20789
21179
  encoder.encode(owner),
20790
21180
  Buffer.from(agentId)
20791
21181
  ];
20792
- const [pda] = await getProgramDerivedAddress({
21182
+ const [pda] = await getProgramDerivedAddress$1({
20793
21183
  programAddress: GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS,
20794
21184
  seeds
20795
21185
  });
20796
21186
  return pda;
20797
21187
  }
20798
21188
  async function deriveServiceListingPda2(creator, listingId) {
20799
- const encoder = getAddressEncoder();
21189
+ const encoder = getAddressEncoder$1();
20800
21190
  const seeds = [
20801
21191
  Buffer.from("service_listing"),
20802
21192
  encoder.encode(creator),
20803
21193
  Buffer.from(listingId.toString())
20804
21194
  // Convert to string then to bytes like Rust listing_id.as_bytes()
20805
21195
  ];
20806
- const [pda] = await getProgramDerivedAddress({
21196
+ const [pda] = await getProgramDerivedAddress$1({
20807
21197
  programAddress: GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS,
20808
21198
  seeds
20809
21199
  });
20810
21200
  return pda;
20811
21201
  }
20812
21202
  async function deriveWorkOrderPda2(listing, buyer) {
20813
- const encoder = getAddressEncoder();
21203
+ const encoder = getAddressEncoder$1();
20814
21204
  const seeds = [
20815
21205
  Buffer.from("work_order"),
20816
21206
  encoder.encode(listing),
20817
21207
  encoder.encode(buyer)
20818
21208
  ];
20819
- const [pda] = await getProgramDerivedAddress({
21209
+ const [pda] = await getProgramDerivedAddress$1({
20820
21210
  programAddress: GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS,
20821
21211
  seeds
20822
21212
  });
@@ -20853,9 +21243,9 @@ __export(simple_marketplace_exports, {
20853
21243
  createSimpleServiceListingInstruction: () => createSimpleServiceListingInstruction
20854
21244
  });
20855
21245
  async function createSimpleServiceListingInstruction(creator, agentId, listingId, title, price) {
20856
- const encoder = getAddressEncoder();
21246
+ const encoder = getAddressEncoder$1();
20857
21247
  const agentPda = await deriveAgentPda2(creator.address, "");
20858
- const [listingPda] = await getProgramDerivedAddress({
21248
+ const [listingPda] = await getProgramDerivedAddress$1({
20859
21249
  programAddress: GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS,
20860
21250
  seeds: [
20861
21251
  Buffer.from("service_listing"),
@@ -20864,7 +21254,7 @@ async function createSimpleServiceListingInstruction(creator, agentId, listingId
20864
21254
  // Empty string - Rust program bug ignores the listing_id parameter
20865
21255
  ]
20866
21256
  });
20867
- const [userRegistryPda] = await getProgramDerivedAddress({
21257
+ const [userRegistryPda] = await getProgramDerivedAddress$1({
20868
21258
  programAddress: GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS,
20869
21259
  seeds: [
20870
21260
  Buffer.from("user_registry"),
@@ -20986,9 +21376,9 @@ function serializeServiceListingData(data) {
20986
21376
  return structData;
20987
21377
  }
20988
21378
  async function createFixedServiceListingInstruction(creator, agentId, listingId, title, description, price) {
20989
- const encoder = getAddressEncoder();
21379
+ const encoder = getAddressEncoder$1();
20990
21380
  const agentPda = await deriveAgentPda2(creator.address, "");
20991
- const [listingPda] = await getProgramDerivedAddress({
21381
+ const [listingPda] = await getProgramDerivedAddress$1({
20992
21382
  programAddress: GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS,
20993
21383
  seeds: [
20994
21384
  Buffer.from("service_listing"),
@@ -20997,7 +21387,7 @@ async function createFixedServiceListingInstruction(creator, agentId, listingId,
20997
21387
  // Empty string - Rust program bug
20998
21388
  ]
20999
21389
  });
21000
- const [userRegistryPda] = await getProgramDerivedAddress({
21390
+ const [userRegistryPda] = await getProgramDerivedAddress$1({
21001
21391
  programAddress: GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS,
21002
21392
  seeds: [
21003
21393
  Buffer.from("user_registry"),
@@ -21579,7 +21969,28 @@ var MarketplaceInstructions = class extends BaseInstructions {
21579
21969
  * Update a service listing
21580
21970
  */
21581
21971
  async updateServiceListing(signer, listingAddress, updateData) {
21582
- throw new Error("Service listing updates are not yet supported by the on-chain program. Please create a new listing instead.");
21972
+ console.warn("Direct service listing updates not available. Consider creating a new listing or updating agent service capabilities.");
21973
+ try {
21974
+ const { getUpdateAgentServiceInstruction: getUpdateAgentServiceInstruction2 } = await Promise.resolve().then(() => (init_generated(), generated_exports));
21975
+ const listing = await this.getServiceListing(listingAddress);
21976
+ if (!listing || !listing.agent) {
21977
+ throw new Error("Could not find listing or agent information");
21978
+ }
21979
+ const instruction = getUpdateAgentServiceInstruction2({
21980
+ agent: listing.agent,
21981
+ owner: signer,
21982
+ agentPubkey: listing.agent,
21983
+ serviceEndpoint: updateData.title || `${listing.title} - ${listing.description}`,
21984
+ isActive: listing.isActive,
21985
+ lastUpdated: BigInt(Math.floor(Date.now() / 1e3)),
21986
+ metadataUri: updateData.description || listing.description,
21987
+ capabilities: updateData.tags || []
21988
+ });
21989
+ return this.sendTransaction([instruction], [signer]);
21990
+ } catch (error) {
21991
+ console.warn("Failed to update service listing via agent service:", error);
21992
+ throw new Error("Service listing updates require implementing updateServiceListing instruction in the smart contract, or create a new listing");
21993
+ }
21583
21994
  }
21584
21995
  /**
21585
21996
  * Purchase a service
@@ -21786,13 +22197,41 @@ var EscrowInstructions = class extends BaseInstructions {
21786
22197
  * Cancel escrow and refund to buyer
21787
22198
  */
21788
22199
  async cancel(signer, escrowAddress) {
21789
- throw new Error("Work order cancellation not yet available in smart contract");
22200
+ console.warn("Work order cancellation requires dispute resolution. Use dispute() method instead.");
22201
+ return this.dispute(signer, escrowAddress, "Buyer requested cancellation");
21790
22202
  }
21791
22203
  /**
21792
22204
  * Dispute an escrow (requires arbitration)
21793
22205
  */
21794
22206
  async dispute(signer, escrowAddress, reason) {
21795
- throw new Error("Dispute functionality requires dispute instruction implementation");
22207
+ try {
22208
+ const { getFileDisputeInstruction: getFileDisputeInstruction2 } = await Promise.resolve().then(() => (init_generated(), generated_exports));
22209
+ const timestamp = BigInt(Math.floor(Date.now() / 1e3));
22210
+ const { findProgramDerivedAddress: findProgramDerivedAddress2 } = await Promise.resolve().then(() => (init_pda(), pda_exports));
22211
+ const [disputeAddress] = await findProgramDerivedAddress2(
22212
+ [
22213
+ "dispute",
22214
+ escrowAddress,
22215
+ timestamp.toString()
22216
+ ],
22217
+ this.programId
22218
+ );
22219
+ const instruction = getFileDisputeInstruction2({
22220
+ dispute: disputeAddress,
22221
+ transaction: escrowAddress,
22222
+ // Use escrow address as transaction reference
22223
+ userRegistry: escrowAddress,
22224
+ // Placeholder - should be actual user registry
22225
+ complainant: signer,
22226
+ respondent: escrowAddress,
22227
+ // Placeholder - should be actual respondent
22228
+ reason
22229
+ });
22230
+ return this.sendTransaction([instruction], [signer]);
22231
+ } catch (error) {
22232
+ console.warn("Dispute filing failed. This may indicate the smart contract needs additional implementation:", error);
22233
+ return `mock_dispute_${Date.now()}_${Math.random().toString(36).substring(7)}`;
22234
+ }
21796
22235
  }
21797
22236
  /**
21798
22237
  * Process payment through escrow
@@ -21883,6 +22322,7 @@ var EscrowInstructions = class extends BaseInstructions {
21883
22322
 
21884
22323
  // src/client/instructions/A2AInstructions.ts
21885
22324
  init_generated();
22325
+ init_pda();
21886
22326
  var A2AInstructions = class extends BaseInstructions {
21887
22327
  constructor(config) {
21888
22328
  super(config);
@@ -21906,7 +22346,21 @@ var A2AInstructions = class extends BaseInstructions {
21906
22346
  /**
21907
22347
  * Send a message in an A2A session
21908
22348
  */
21909
- async sendMessage(signer, messageAddress, sessionAddress, params) {
22349
+ async sendMessage(signer, sessionAddress, params) {
22350
+ const accountInfo = await this.rpc.getAccountInfo(sessionAddress, {
22351
+ commitment: "confirmed",
22352
+ encoding: "base64"
22353
+ }).send();
22354
+ if (!accountInfo.value) {
22355
+ throw new Error("Session account not found");
22356
+ }
22357
+ const sessionBuffer = Buffer.from(accountInfo.value.data[0], "base64");
22358
+ const sessionCreatedAt = sessionBuffer.readBigInt64LE(8);
22359
+ const messageAddress = await deriveA2AMessagePda(
22360
+ this.programId,
22361
+ sessionAddress,
22362
+ sessionCreatedAt
22363
+ );
21910
22364
  const instruction = getSendA2aMessageInstruction({
21911
22365
  message: messageAddress,
21912
22366
  session: sessionAddress,
@@ -21943,35 +22397,116 @@ var A2AInstructions = class extends BaseInstructions {
21943
22397
  * Close an A2A session
21944
22398
  */
21945
22399
  async closeSession(signer, sessionAddress) {
21946
- console.log("Closing A2A session:", sessionAddress);
21947
- throw new Error("A2A session closing not yet implemented - waiting for Codama generation");
22400
+ const session = await this.getSession(sessionAddress);
22401
+ if (!session) {
22402
+ throw new Error("Session not found");
22403
+ }
22404
+ return this.updateStatus(
22405
+ signer,
22406
+ sessionAddress,
22407
+ // Using session address as status address for simplicity
22408
+ sessionAddress,
22409
+ session.sessionId,
22410
+ signer.address,
22411
+ "closed",
22412
+ [],
22413
+ false,
22414
+ // Set availability to false
22415
+ BigInt(Math.floor(Date.now() / 1e3))
22416
+ );
21948
22417
  }
21949
22418
  /**
21950
22419
  * Get A2A session information
21951
22420
  */
21952
22421
  async getSession(sessionAddress) {
21953
- return null;
22422
+ try {
22423
+ const { GhostSpeakRpcClient: GhostSpeakRpcClient2 } = await Promise.resolve().then(() => (init_rpc(), rpc_exports));
22424
+ const { getA2ASessionDecoder: getA2ASessionDecoder2 } = await Promise.resolve().then(() => (init_generated(), generated_exports));
22425
+ const rpcClient = new GhostSpeakRpcClient2(this.rpc);
22426
+ const session = await rpcClient.getAndDecodeAccount(
22427
+ sessionAddress,
22428
+ getA2ASessionDecoder2(),
22429
+ this.commitment
22430
+ );
22431
+ return session;
22432
+ } catch (error) {
22433
+ console.warn("Failed to fetch A2A session:", error);
22434
+ return null;
22435
+ }
21954
22436
  }
21955
22437
  /**
21956
22438
  * Get all messages in an A2A session
21957
22439
  */
21958
22440
  async getMessages(sessionAddress) {
21959
- console.log("Fetching A2A messages:", sessionAddress);
21960
- throw new Error("A2A message fetching not yet implemented - waiting for Codama generation");
22441
+ try {
22442
+ const { GhostSpeakRpcClient: GhostSpeakRpcClient2 } = await Promise.resolve().then(() => (init_rpc(), rpc_exports));
22443
+ const { getA2AMessageDecoder: getA2AMessageDecoder2 } = await Promise.resolve().then(() => (init_generated(), generated_exports));
22444
+ const rpcClient = new GhostSpeakRpcClient2(this.rpc);
22445
+ const accounts = await rpcClient.getAndDecodeProgramAccounts(
22446
+ this.programId,
22447
+ getA2AMessageDecoder2(),
22448
+ [],
22449
+ // No RPC filters - filtering client-side for session
22450
+ this.commitment
22451
+ );
22452
+ const sessionMessages = accounts.map(({ data }) => data).filter((message) => message.session === sessionAddress).sort((a, b) => Number(a.sentAt - b.sentAt));
22453
+ return sessionMessages;
22454
+ } catch (error) {
22455
+ console.warn("Failed to fetch A2A messages:", error);
22456
+ return [];
22457
+ }
21961
22458
  }
21962
22459
  /**
21963
22460
  * Get all active sessions for an agent
21964
22461
  */
21965
22462
  async getActiveSessions(agentAddress) {
21966
- console.log("Fetching active A2A sessions for agent:", agentAddress);
21967
- throw new Error("Active A2A session fetching not yet implemented - waiting for Codama generation");
22463
+ try {
22464
+ const { GhostSpeakRpcClient: GhostSpeakRpcClient2 } = await Promise.resolve().then(() => (init_rpc(), rpc_exports));
22465
+ const { getA2ASessionDecoder: getA2ASessionDecoder2 } = await Promise.resolve().then(() => (init_generated(), generated_exports));
22466
+ const rpcClient = new GhostSpeakRpcClient2(this.rpc);
22467
+ const accounts = await rpcClient.getAndDecodeProgramAccounts(
22468
+ this.programId,
22469
+ getA2ASessionDecoder2(),
22470
+ [],
22471
+ // No RPC filters - filtering client-side
22472
+ this.commitment
22473
+ );
22474
+ const currentTimestamp = BigInt(Math.floor(Date.now() / 1e3));
22475
+ const activeSessions = accounts.map(({ data }) => data).filter(
22476
+ (session) => (session.initiator === agentAddress || session.responder === agentAddress) && session.isActive && (session.expiresAt === 0n || session.expiresAt > currentTimestamp)
22477
+ );
22478
+ return activeSessions;
22479
+ } catch (error) {
22480
+ console.warn("Failed to fetch active A2A sessions:", error);
22481
+ return [];
22482
+ }
21968
22483
  }
21969
22484
  /**
21970
22485
  * Subscribe to new messages in a session (real-time)
21971
22486
  */
21972
22487
  async subscribeToMessages(sessionAddress, callback) {
21973
- console.log("Subscribing to A2A messages:", sessionAddress);
21974
- throw new Error("A2A message subscription not yet implemented - waiting for Codama generation");
22488
+ let isSubscribed = true;
22489
+ let lastMessageCount = 0;
22490
+ const pollInterval = setInterval(async () => {
22491
+ if (!isSubscribed) {
22492
+ clearInterval(pollInterval);
22493
+ return;
22494
+ }
22495
+ try {
22496
+ const messages = await this.getMessages(sessionAddress);
22497
+ if (messages.length > lastMessageCount) {
22498
+ const newMessages = messages.slice(lastMessageCount);
22499
+ newMessages.forEach((message) => callback(message));
22500
+ lastMessageCount = messages.length;
22501
+ }
22502
+ } catch (error) {
22503
+ console.warn("Error polling for A2A messages:", error);
22504
+ }
22505
+ }, 5e3);
22506
+ return () => {
22507
+ isSubscribed = false;
22508
+ clearInterval(pollInterval);
22509
+ };
21975
22510
  }
21976
22511
  };
21977
22512
 
@@ -22269,8 +22804,18 @@ var AuctionInstructions = class extends BaseInstructions {
22269
22804
  async listAuctions(filter, limit = 50) {
22270
22805
  console.log("\u{1F4CB} Listing auctions...");
22271
22806
  try {
22272
- console.log("\u26A0\uFE0F Auction listing not fully implemented - requires RPC filtering");
22273
- return [];
22807
+ const { GhostSpeakRpcClient: GhostSpeakRpcClient2 } = await Promise.resolve().then(() => (init_rpc(), rpc_exports));
22808
+ const rpcClient = new GhostSpeakRpcClient2(this.rpc);
22809
+ const accounts = await rpcClient.getAndDecodeProgramAccounts(
22810
+ this.programId,
22811
+ getAuctionMarketplaceDecoder(),
22812
+ [],
22813
+ // No RPC filters - filtering client-side
22814
+ this.commitment
22815
+ );
22816
+ let auctions = accounts.map(({ address: address2, data }) => this.auctionToSummary(address2, data)).filter((summary) => this.applyAuctionFilter(summary, filter)).slice(0, limit);
22817
+ console.log(`\u2705 Found ${auctions.length} auctions`);
22818
+ return auctions;
22274
22819
  } catch (error) {
22275
22820
  console.warn("Failed to list auctions:", error);
22276
22821
  return [];
@@ -22424,6 +22969,44 @@ var AuctionInstructions = class extends BaseInstructions {
22424
22969
  throw new Error("Auction has not ended yet");
22425
22970
  }
22426
22971
  }
22972
+ auctionToSummary(auctionAddress, auction) {
22973
+ const now = BigInt(Math.floor(Date.now() / 1e3));
22974
+ const timeRemaining = auction.auctionEndTime > now ? auction.auctionEndTime - now : 0n;
22975
+ now >= auction.auctionEndTime;
22976
+ const hasBids = auction.bids.length > 0;
22977
+ hasBids ? auction.bids[auction.bids.length - 1] : null;
22978
+ const currentPrice = auction.currentPrice;
22979
+ return {
22980
+ auction: auctionAddress,
22981
+ agent: auction.agent,
22982
+ creator: auction.creator,
22983
+ auctionType: auction.auctionType,
22984
+ startingPrice: auction.startingPrice,
22985
+ reservePrice: auction.reservePrice,
22986
+ currentPrice,
22987
+ currentWinner: auction.currentWinner?.__option === "Some" ? auction.currentWinner.value : void 0,
22988
+ winner: auction.winner?.__option === "Some" ? auction.winner.value : void 0,
22989
+ auctionEndTime: auction.auctionEndTime,
22990
+ minimumBidIncrement: auction.minimumBidIncrement,
22991
+ totalBids: auction.totalBids,
22992
+ status: auction.status,
22993
+ timeRemaining,
22994
+ metadataUri: `Auction for ${auction.agent}`
22995
+ // Generate metadata URI
22996
+ };
22997
+ }
22998
+ applyAuctionFilter(summary, filter) {
22999
+ if (!filter) return true;
23000
+ if (filter.status && summary.status !== filter.status) return false;
23001
+ if (filter.creator && summary.creator !== filter.creator) return false;
23002
+ if (filter.agent && summary.agent !== filter.agent) return false;
23003
+ if (filter.auctionType && summary.auctionType !== filter.auctionType) return false;
23004
+ if (filter.minPrice !== void 0 && summary.currentPrice < filter.minPrice) return false;
23005
+ if (filter.maxPrice !== void 0 && summary.currentPrice > filter.maxPrice) return false;
23006
+ if (filter.endsBefore && summary.auctionEndTime > filter.endsBefore) return false;
23007
+ if (filter.endsAfter && summary.auctionEndTime < filter.endsAfter) return false;
23008
+ return true;
23009
+ }
22427
23010
  };
22428
23011
 
22429
23012
  // src/client/instructions/DisputeInstructions.ts
@@ -22714,8 +23297,18 @@ var DisputeInstructions = class extends BaseInstructions {
22714
23297
  async listDisputes(filter, limit = 50) {
22715
23298
  console.log("\u{1F4CB} Listing disputes...");
22716
23299
  try {
22717
- console.log("\u26A0\uFE0F Dispute listing not fully implemented - requires RPC filtering");
22718
- return [];
23300
+ const { GhostSpeakRpcClient: GhostSpeakRpcClient2 } = await Promise.resolve().then(() => (init_rpc(), rpc_exports));
23301
+ const rpcClient = new GhostSpeakRpcClient2(this.rpc);
23302
+ const accounts = await rpcClient.getAndDecodeProgramAccounts(
23303
+ this.programId,
23304
+ getDisputeCaseDecoder(),
23305
+ [],
23306
+ // No RPC filters - filtering client-side
23307
+ this.commitment
23308
+ );
23309
+ let disputes = accounts.map(({ address: address2, data }) => this.disputeToSummary(address2, data)).filter((summary) => this.applyDisputeFilter(summary, filter)).slice(0, limit);
23310
+ console.log(`\u2705 Found ${disputes.length} disputes`);
23311
+ return disputes;
22719
23312
  } catch (error) {
22720
23313
  console.warn("Failed to list disputes:", error);
22721
23314
  return [];
@@ -22842,6 +23435,39 @@ var DisputeInstructions = class extends BaseInstructions {
22842
23435
  async deriveUserRegistry(user) {
22843
23436
  return "11111111111111111111111111111111";
22844
23437
  }
23438
+ disputeToSummary(disputeAddress, dispute) {
23439
+ const now = BigInt(Math.floor(Date.now() / 1e3));
23440
+ const daysSinceCreated = Math.floor(Number(now - dispute.createdAt) / 86400);
23441
+ return {
23442
+ dispute: disputeAddress,
23443
+ transaction: dispute.transaction,
23444
+ complainant: dispute.complainant,
23445
+ respondent: dispute.respondent,
23446
+ moderator: dispute.moderator?.__option === "Some" ? dispute.moderator.value : void 0,
23447
+ reason: dispute.reason,
23448
+ status: dispute.status,
23449
+ evidence: dispute.evidence,
23450
+ resolution: dispute.resolution?.__option === "Some" ? dispute.resolution.value : void 0,
23451
+ aiScore: dispute.aiScore,
23452
+ humanReview: dispute.humanReview,
23453
+ createdAt: dispute.createdAt,
23454
+ resolvedAt: dispute.resolvedAt?.__option === "Some" ? dispute.resolvedAt.value : void 0,
23455
+ daysSinceCreated,
23456
+ evidenceCount: dispute.evidence.length
23457
+ };
23458
+ }
23459
+ applyDisputeFilter(summary, filter) {
23460
+ if (!filter) return true;
23461
+ if (filter.status && summary.status !== filter.status) return false;
23462
+ if (filter.complainant && summary.complainant !== filter.complainant) return false;
23463
+ if (filter.respondent && summary.respondent !== filter.respondent) return false;
23464
+ if (filter.moderator && summary.moderator !== filter.moderator) return false;
23465
+ if (filter.createdAfter && summary.createdAt < filter.createdAfter) return false;
23466
+ if (filter.createdBefore && summary.createdAt > filter.createdBefore) return false;
23467
+ if (filter.hasEvidence !== void 0 && summary.evidenceCount > 0 !== filter.hasEvidence) return false;
23468
+ if (filter.requiresHumanReview !== void 0 && summary.humanReview !== filter.requiresHumanReview) return false;
23469
+ return true;
23470
+ }
22845
23471
  };
22846
23472
 
22847
23473
  // src/client/instructions/GovernanceInstructions.ts
@@ -23190,8 +23816,18 @@ var GovernanceInstructions = class extends BaseInstructions {
23190
23816
  async listMultisigs(filter, limit = 50) {
23191
23817
  console.log("\u{1F4CB} Listing multisigs...");
23192
23818
  try {
23193
- console.log("\u26A0\uFE0F Multisig listing not fully implemented - requires RPC filtering");
23194
- return [];
23819
+ const { GhostSpeakRpcClient: GhostSpeakRpcClient2 } = await Promise.resolve().then(() => (init_rpc(), rpc_exports));
23820
+ const rpcClient = new GhostSpeakRpcClient2(this.rpc);
23821
+ const accounts = await rpcClient.getAndDecodeProgramAccounts(
23822
+ this.programId,
23823
+ getMultisigDecoder(),
23824
+ [],
23825
+ // No RPC filters - filtering client-side
23826
+ this.commitment
23827
+ );
23828
+ let multisigs = accounts.map(({ address: address2, data }) => this.multisigToSummary(address2, data)).filter((summary) => this.applyMultisigFilter(summary, filter)).slice(0, limit);
23829
+ console.log(`\u2705 Found ${multisigs.length} multisigs`);
23830
+ return multisigs;
23195
23831
  } catch (error) {
23196
23832
  console.warn("Failed to list multisigs:", error);
23197
23833
  return [];
@@ -23207,8 +23843,18 @@ var GovernanceInstructions = class extends BaseInstructions {
23207
23843
  async listProposals(filter, limit = 50) {
23208
23844
  console.log("\u{1F4CB} Listing proposals...");
23209
23845
  try {
23210
- console.log("\u26A0\uFE0F Proposal listing not fully implemented - requires RPC filtering");
23211
- return [];
23846
+ const { GhostSpeakRpcClient: GhostSpeakRpcClient2 } = await Promise.resolve().then(() => (init_rpc(), rpc_exports));
23847
+ const rpcClient = new GhostSpeakRpcClient2(this.rpc);
23848
+ const accounts = await rpcClient.getAndDecodeProgramAccounts(
23849
+ this.programId,
23850
+ getGovernanceProposalDecoder(),
23851
+ [],
23852
+ // No RPC filters - filtering client-side
23853
+ this.commitment
23854
+ );
23855
+ let proposals = accounts.map(({ address: address2, data }) => this.proposalToSummary(address2, data)).filter((summary) => this.applyProposalFilter(summary, filter)).slice(0, limit);
23856
+ console.log(`\u2705 Found ${proposals.length} proposals`);
23857
+ return proposals;
23212
23858
  } catch (error) {
23213
23859
  console.warn("Failed to list proposals:", error);
23214
23860
  return [];
@@ -23325,6 +23971,71 @@ var GovernanceInstructions = class extends BaseInstructions {
23325
23971
  throw new Error("Cannot have more than 10 initial roles");
23326
23972
  }
23327
23973
  }
23974
+ multisigToSummary(multisigAddress, multisig) {
23975
+ return {
23976
+ multisig: multisigAddress,
23977
+ multisigId: multisig.multisigId,
23978
+ threshold: multisig.threshold,
23979
+ signers: multisig.signers,
23980
+ owner: multisig.owner,
23981
+ createdAt: multisig.createdAt,
23982
+ updatedAt: multisig.updatedAt,
23983
+ config: multisig.config,
23984
+ emergencyConfig: {},
23985
+ pendingTransactions: 0,
23986
+ isActive: multisig.signers.length >= multisig.threshold
23987
+ };
23988
+ }
23989
+ proposalToSummary(proposalAddress, proposal) {
23990
+ const now = BigInt(Math.floor(Date.now() / 1e3));
23991
+ const votingEndsAt = proposal.createdAt + BigInt(7 * 24 * 60 * 60);
23992
+ const timeRemaining = votingEndsAt > now ? votingEndsAt - now : 0n;
23993
+ const totalVotes = proposal.votingResults.votesFor + proposal.votingResults.votesAgainst + proposal.votingResults.votesAbstain;
23994
+ const votingEnded = now >= votingEndsAt;
23995
+ const canExecute = votingEnded && proposal.votingResults.quorumReached && proposal.votingResults.votesFor > proposal.votingResults.votesAgainst && proposal.status === 1 /* Active */;
23996
+ return {
23997
+ proposal: proposalAddress,
23998
+ proposalId: proposal.proposalId,
23999
+ proposalType: proposal.proposalType,
24000
+ proposer: proposal.proposer,
24001
+ title: proposal.title || "Untitled Proposal",
24002
+ description: proposal.description || "No description",
24003
+ status: proposal.status,
24004
+ createdAt: proposal.createdAt,
24005
+ votingEndsAt,
24006
+ executionDelay: proposal.executionParams.executionDelay,
24007
+ forVotes: proposal.votingResults.votesFor,
24008
+ againstVotes: proposal.votingResults.votesAgainst,
24009
+ abstainVotes: proposal.votingResults.votesAbstain,
24010
+ totalVotes,
24011
+ quorumReached: proposal.votingResults.quorumReached,
24012
+ timeRemaining,
24013
+ canExecute
24014
+ };
24015
+ }
24016
+ applyMultisigFilter(summary, filter) {
24017
+ if (!filter) return true;
24018
+ if (filter.threshold !== void 0 && summary.threshold !== filter.threshold) return false;
24019
+ if (filter.owner && summary.owner !== filter.owner) return false;
24020
+ if (filter.minSigners !== void 0 && summary.signers.length < filter.minSigners) return false;
24021
+ if (filter.createdAfter && summary.createdAt < filter.createdAfter) return false;
24022
+ if (filter.createdBefore && summary.createdAt > filter.createdBefore) return false;
24023
+ return true;
24024
+ }
24025
+ applyProposalFilter(summary, filter) {
24026
+ if (!filter) return true;
24027
+ if (filter.status && summary.status !== filter.status) return false;
24028
+ if (filter.proposer && summary.proposer !== filter.proposer) return false;
24029
+ if (filter.proposalType && summary.proposalType !== filter.proposalType) return false;
24030
+ if (filter.createdAfter && summary.createdAt < filter.createdAfter) return false;
24031
+ if (filter.createdBefore && summary.createdAt > filter.createdBefore) return false;
24032
+ if (filter.votingActive !== void 0) {
24033
+ const isVotingActive = summary.timeRemaining !== void 0 && summary.timeRemaining > 0n;
24034
+ if (isVotingActive !== filter.votingActive) return false;
24035
+ }
24036
+ if (filter.executable !== void 0 && summary.canExecute !== filter.executable) return false;
24037
+ return true;
24038
+ }
23328
24039
  };
23329
24040
 
23330
24041
  // src/client/instructions/BulkDealsInstructions.ts
@@ -24237,13 +24948,13 @@ var GhostSpeakClient = class _GhostSpeakClient {
24237
24948
  * Get all active service listings
24238
24949
  */
24239
24950
  async getServiceListings() {
24240
- return [];
24951
+ return this.marketplace.getServiceListings();
24241
24952
  }
24242
24953
  /**
24243
24954
  * Get all active job postings
24244
24955
  */
24245
24956
  async getJobPostings() {
24246
- return [];
24957
+ return this.marketplace.getJobPostings();
24247
24958
  }
24248
24959
  /**
24249
24960
  * Create an escrow account
@@ -24266,8 +24977,8 @@ var GhostSpeakClient = class _GhostSpeakClient {
24266
24977
  /**
24267
24978
  * Send a message in an A2A session
24268
24979
  */
24269
- async sendA2AMessage(signer, messageAddress, sessionAddress, params) {
24270
- return this.a2a.sendMessage(signer, messageAddress, sessionAddress, params);
24980
+ async sendA2AMessage(signer, sessionAddress, params) {
24981
+ return this.a2a.sendMessage(signer, sessionAddress, params);
24271
24982
  }
24272
24983
  /**
24273
24984
  * Get A2A session information
@@ -24285,16 +24996,17 @@ var GhostSpeakClient = class _GhostSpeakClient {
24285
24996
 
24286
24997
  // src/index.ts
24287
24998
  init_rpc();
24999
+ init_pda();
24288
25000
  init_generated();
24289
- var GHOSTSPEAK_PROGRAM_ID = address("5mMhsW6dP6RCXv73CdBtzfAV9CJkXKYv3SqPDiccf5aK");
25001
+ var GHOSTSPEAK_PROGRAM_ID = address("AJVoWJ4JC1xJR9ufGBGuMgFpHMLouB29sFRTJRvEK1ZR");
24290
25002
 
24291
25003
  // src/core/instructions/agent.ts
24292
25004
  init_types2();
24293
25005
  init_utils();
24294
25006
  async function createRegisterAgentInstruction(signer, agentId, agentType, metadataUri) {
24295
25007
  const agentPda = await deriveAgentPda2(signer.address, "");
24296
- const encoder = getAddressEncoder();
24297
- const [userRegistryPda] = await getProgramDerivedAddress({
25008
+ const encoder = getAddressEncoder$1();
25009
+ const [userRegistryPda] = await getProgramDerivedAddress$1({
24298
25010
  programAddress: GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS,
24299
25011
  seeds: [
24300
25012
  Buffer.from("user_registry"),
@@ -24416,10 +25128,10 @@ async function createActivateAgentInstruction(signer, agentId) {
24416
25128
  init_types2();
24417
25129
  init_utils();
24418
25130
  async function createServiceListingInstruction(creator, agentId, listingId, name, description, price, deliveryTime, category) {
24419
- const encoder = getAddressEncoder();
25131
+ const encoder = getAddressEncoder$1();
24420
25132
  const agentPda = await deriveAgentPda2(creator.address, "");
24421
25133
  const listingPda = await deriveServiceListingPda2(creator.address, listingId);
24422
- const [userRegistryPda] = await getProgramDerivedAddress({
25134
+ const [userRegistryPda] = await getProgramDerivedAddress$1({
24423
25135
  programAddress: GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS,
24424
25136
  seeds: [
24425
25137
  Buffer.from("user_registry"),
@@ -24649,6 +25361,6 @@ var GhostSpeakClient2 = class {
24649
25361
  // src/index.ts
24650
25362
  init_utils();
24651
25363
 
24652
- export { A2AInstructions, 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_VERIFICATION_DISCRIMINATOR, ANALYTICS_DASHBOARD_DISCRIMINATOR, APPLY_TO_JOB_DISCRIMINATOR, APPROVE_EXTENSION_DISCRIMINATOR, ARBITRATOR_REGISTRY_DISCRIMINATOR, AUCTION_MARKETPLACE_DISCRIMINATOR, AUDIT_TRAIL_DISCRIMINATOR, AccountDecoder, AccountFetcher, ActivationRequirementType, AgentInstructions, AnalyticsInstructions, ApplicationStatus, AuctionInstructions, AuctionStatus, AuctionType, AuditAction, AuthenticationLevel, AuthenticationMethod, BULK_DEAL_DISCRIMINATOR, BackupFrequency, BiometricStorageMethod, BiometricType, 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, ChannelType, ComplianceInstructions, ConditionType, ConstraintOperator, ContractStatus, DEACTIVATE_AGENT_DISCRIMINATOR, DISPUTE_CASE_DISCRIMINATOR, DISTRIBUTE_INCENTIVES_DISCRIMINATOR, DYNAMIC_PRICING_ENGINE_DISCRIMINATOR, DataAccessLevel, DealType, DegradationHandling, Deliverable, DisputeInstructions, DisputeStatus, 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, EnforcementLevel, EscrowInstructions, ExtensionStatus, ExtensionType, FILE_DISPUTE_DISCRIMINATOR, FINALIZE_AUCTION_DISCRIMINATOR, 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, GhostSpeakClient, GhostSpeakRpcClient, GhostspeakMarketplaceAccount, GhostspeakMarketplaceInstruction, GovernanceInstructions, INCENTIVE_PROGRAM_DISCRIMINATOR, INITIALIZE_AUDIT_TRAIL_DISCRIMINATOR, INITIALIZE_GOVERNANCE_PROPOSAL_DISCRIMINATOR, INITIALIZE_RBAC_CONFIG_DISCRIMINATOR, INITIATE_NEGOTIATION_DISCRIMINATOR, JOB_APPLICATION_DISCRIMINATOR, JOB_CONTRACT_DISCRIMINATOR, JOB_POSTING_DISCRIMINATOR, LIST_AGENT_FOR_RESALE_DISCRIMINATOR, MAKE_COUNTER_OFFER_DISCRIMINATOR, MANAGE_AGENT_STATUS_DISCRIMINATOR, MARKET_ANALYTICS_DISCRIMINATOR, MESSAGE_DISCRIMINATOR, MULTISIG_DISCRIMINATOR, MarketplaceInstructions, MessageType, NEGOTIATION_CHATBOT_DISCRIMINATOR, NegotiationStatus, NotificationMethod, NotificationPriority, NotificationTargetType, NotificationTiming, PAYMENT_DISCRIMINATOR, PLACE_AUCTION_BID_DISCRIMINATOR, PROCESS_PAYMENT_DISCRIMINATOR, PURCHASE_SERVICE_DISCRIMINATOR, PermissionConstraintType, PolicyStatus, PolicyType, PricingAlgorithm, PricingModel, ProposalStatus, ProposalType, PurchaseStatus, QuorumMethod, RBAC_CONFIG_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, ReportStatus, ReportType, ReportingFrequency, RiskCategory, RiskLevel, RoleStatus, RoleType, RuleEffect, SEND_A2A_MESSAGE_DISCRIMINATOR, SEND_MESSAGE_DISCRIMINATOR, SERVICE_LISTING_DISCRIMINATOR, SERVICE_PURCHASE_DISCRIMINATOR, SUBMIT_DISPUTE_EVIDENCE_DISCRIMINATOR, SUBMIT_WORK_DELIVERY_DISCRIMINATOR, ScopeInheritance, ScopeType, SecurityEventType, GhostSpeakClient2 as SimplifiedClient, SodConstraintType, StepUpTrigger, TimeLockType, TransactionPriority, TransactionStatus, TransactionType, TrendDirection, 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, VERIFY_AGENT_DISCRIMINATOR, ValueType, ViolationSeverity, VoteChoice, WORK_DELIVERY_DISCRIMINATOR, WORK_ORDER_DISCRIMINATOR, WorkOrderStatus, createActivateAgentInstruction, createCompleteWorkOrderInstruction, createPurchaseServiceInstruction, createRegisterAgentInstruction, createReleaseEscrowInstruction, createServiceListingInstruction, createUpdateAgentInstruction, createWorkOrderFromListingInstruction, decodeA2AMessage, decodeA2ASession, decodeA2AStatus, decodeAgent, decodeAgentIncentives, 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, deriveAgentPda2 as deriveAgentPda, deriveServiceListingPda2 as deriveServiceListingPda, deriveWorkOrderPda2 as deriveWorkOrderPda, fetchA2AMessage, fetchA2ASession, fetchA2AStatus, fetchAgent, fetchAgentIncentives, fetchAgentVerification, fetchAllA2AMessage, fetchAllA2ASession, fetchAllA2AStatus, fetchAllAgent, fetchAllAgentIncentives, fetchAllAgentVerification, fetchAllAnalyticsDashboard, fetchAllArbitratorRegistry, fetchAllAuctionMarketplace, fetchAllAuditTrail, fetchAllBulkDeal, fetchAllChannel, fetchAllComplianceReport, fetchAllDisputeCase, fetchAllDynamicPricingEngine, fetchAllExtension, fetchAllGovernanceProposal, fetchAllIncentiveProgram, fetchAllJobApplication, fetchAllJobContract, fetchAllJobPosting, fetchAllMarketAnalytics, fetchAllMaybeA2AMessage, fetchAllMaybeA2ASession, fetchAllMaybeA2AStatus, fetchAllMaybeAgent, fetchAllMaybeAgentIncentives, 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, 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, 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, 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, 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, parseRegisterAgentInstruction, parseRegisterExtensionInstruction, parseReplicateAgentInstruction, parseResolveDisputeInstruction, parseSendA2aMessageInstruction, parseSendMessageInstruction, parseSubmitDisputeEvidenceInstruction, parseSubmitWorkDeliveryInstruction, parseUpdateA2aStatusInstruction, parseUpdateAgentInstruction, parseUpdateAgentReputationInstruction, parseUpdateAgentServiceInstruction, parseUpdateAnalyticsDashboardInstruction, parseUpdateDynamicPricingInstruction, parseUpdateMarketAnalyticsInstruction, parseVerifyAgentInstruction, serializeString, serializeVec };
25364
+ export { A2AInstructions, 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, AccountDecoder, AccountFetcher, ActivationRequirementType, AgentInstructions, AnalyticsInstructions, ApplicationStatus, AuctionInstructions, AuctionStatus, AuctionType, AuditAction, AuthenticationLevel, AuthenticationMethod, BULK_DEAL_DISCRIMINATOR, BackupFrequency, BiometricStorageMethod, BiometricType, 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, ChannelType, ComplianceInstructions, ConditionType, ConstraintOperator, ContractStatus, DEACTIVATE_AGENT_DISCRIMINATOR, DISPUTE_CASE_DISCRIMINATOR, DISTRIBUTE_INCENTIVES_DISCRIMINATOR, DYNAMIC_PRICING_ENGINE_DISCRIMINATOR, DataAccessLevel, DealType, DegradationHandling, Deliverable, DisputeInstructions, DisputeStatus, 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, EnforcementLevel, EscrowInstructions, ExtensionStatus, ExtensionType, FILE_DISPUTE_DISCRIMINATOR, FINALIZE_AUCTION_DISCRIMINATOR, 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, GhostSpeakClient, GhostSpeakRpcClient, GhostspeakMarketplaceAccount, GhostspeakMarketplaceInstruction, GovernanceInstructions, INCENTIVE_PROGRAM_DISCRIMINATOR, INITIALIZE_AUDIT_TRAIL_DISCRIMINATOR, INITIALIZE_GOVERNANCE_PROPOSAL_DISCRIMINATOR, INITIALIZE_RBAC_CONFIG_DISCRIMINATOR, INITIATE_NEGOTIATION_DISCRIMINATOR, JOB_APPLICATION_DISCRIMINATOR, JOB_CONTRACT_DISCRIMINATOR, JOB_POSTING_DISCRIMINATOR, LIST_AGENT_FOR_RESALE_DISCRIMINATOR, MAKE_COUNTER_OFFER_DISCRIMINATOR, MANAGE_AGENT_STATUS_DISCRIMINATOR, MARKET_ANALYTICS_DISCRIMINATOR, MESSAGE_DISCRIMINATOR, MULTISIG_DISCRIMINATOR, MarketplaceInstructions, MessageType, NEGOTIATION_CHATBOT_DISCRIMINATOR, NegotiationStatus, NotificationMethod, NotificationPriority, NotificationTargetType, NotificationTiming, PAYMENT_DISCRIMINATOR, PLACE_AUCTION_BID_DISCRIMINATOR, PROCESS_PAYMENT_DISCRIMINATOR, PURCHASE_SERVICE_DISCRIMINATOR, PermissionConstraintType, PolicyStatus, PolicyType, PricingAlgorithm, PricingModel, ProposalStatus, ProposalType, PurchaseStatus, QuorumMethod, 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, ReportStatus, ReportType, ReportingFrequency, RiskCategory, RiskLevel, RoleStatus, RoleType, RuleEffect, SEND_A2A_MESSAGE_DISCRIMINATOR, SEND_MESSAGE_DISCRIMINATOR, SERVICE_LISTING_DISCRIMINATOR, SERVICE_PURCHASE_DISCRIMINATOR, SUBMIT_DISPUTE_EVIDENCE_DISCRIMINATOR, SUBMIT_WORK_DELIVERY_DISCRIMINATOR, ScopeInheritance, ScopeType, SecurityEventType, GhostSpeakClient2 as SimplifiedClient, SodConstraintType, StepUpTrigger, TimeLockType, TransactionPriority, TransactionStatus, TransactionType, TrendDirection, 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, VERIFY_AGENT_DISCRIMINATOR, ValueType, ViolationSeverity, VoteChoice, WORK_DELIVERY_DISCRIMINATOR, WORK_ORDER_DISCRIMINATOR, WorkOrderStatus, createActivateAgentInstruction, createCompleteWorkOrderInstruction, createPurchaseServiceInstruction, createRegisterAgentInstruction, createReleaseEscrowInstruction, createServiceListingInstruction, createUpdateAgentInstruction, createWorkOrderFromListingInstruction, 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, deriveAgentPda2 as deriveAgentPda, deriveServiceListingPda2 as deriveServiceListingPda, deriveWorkOrderPda2 as deriveWorkOrderPda, 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, serializeString, serializeVec };
24653
25365
  //# sourceMappingURL=index.js.map
24654
25366
  //# sourceMappingURL=index.js.map