@ghostspeak/sdk 1.1.3 → 1.2.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/README.md +154 -33
- package/dist/index.d.ts +1425 -1737
- package/dist/index.js +899 -205
- package/dist/index.js.map +1 -1
- package/package.json +14 -6
package/dist/index.js
CHANGED
|
@@ -1,12 +1,6 @@
|
|
|
1
|
-
import { fixEncoderSize, transformEncoder, addEncoderSizePrefix, fixDecoderSize, addDecoderSizePrefix, combineCodec, containsBytes } from '@solana/
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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 = "
|
|
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["
|
|
9899
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9900
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9901
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9902
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9903
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9904
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9905
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9906
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9907
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9908
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9909
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9910
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9911
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9912
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9913
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9914
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9915
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9916
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9917
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9918
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9919
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9920
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9921
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9922
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9923
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9924
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9925
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9926
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9927
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
9928
|
-
GhostspeakMarketplaceAccount2[GhostspeakMarketplaceAccount2["
|
|
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["
|
|
9978
|
-
GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["
|
|
9979
|
-
GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["
|
|
9980
|
-
GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["
|
|
9981
|
-
GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["
|
|
9982
|
-
GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["
|
|
9983
|
-
GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["
|
|
9984
|
-
GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["
|
|
9985
|
-
GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["
|
|
9986
|
-
GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["
|
|
9987
|
-
GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["
|
|
9988
|
-
GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["
|
|
9989
|
-
GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["
|
|
9990
|
-
GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["
|
|
9991
|
-
GhostspeakMarketplaceInstruction2[GhostspeakMarketplaceInstruction2["
|
|
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
|
-
|
|
10013
|
-
|
|
10014
|
-
|
|
10015
|
-
|
|
10016
|
-
|
|
10017
|
-
|
|
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 &&
|
|
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
|
-
})
|
|
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
|
-
})
|
|
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
|
-
})
|
|
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
|
|
20863
|
+
const [address2] = await getProgramDerivedAddress({
|
|
20491
20864
|
programAddress: programId,
|
|
20492
20865
|
seeds: [
|
|
20493
|
-
getBytesEncoder
|
|
20866
|
+
getBytesEncoder().encode(new Uint8Array([97, 103, 101, 110, 116])),
|
|
20494
20867
|
// 'agent'
|
|
20495
|
-
getAddressEncoder
|
|
20496
|
-
addEncoderSizePrefix
|
|
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
|
|
20875
|
+
const [address2] = await getProgramDerivedAddress({
|
|
20503
20876
|
programAddress: programId,
|
|
20504
20877
|
seeds: [
|
|
20505
|
-
getBytesEncoder
|
|
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
|
|
20524
|
-
addEncoderSizePrefix
|
|
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
|
|
20903
|
+
const [address2] = await getProgramDerivedAddress({
|
|
20531
20904
|
programAddress: programId,
|
|
20532
20905
|
seeds: [
|
|
20533
|
-
getBytesEncoder
|
|
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
|
|
20548
|
-
addEncoderSizePrefix
|
|
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
|
|
20927
|
+
const [address2] = await getProgramDerivedAddress({
|
|
20555
20928
|
programAddress: programId,
|
|
20556
20929
|
seeds: [
|
|
20557
|
-
getBytesEncoder
|
|
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
|
|
20576
|
-
getAddressEncoder
|
|
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
|
|
20955
|
+
const [address2] = await getProgramDerivedAddress({
|
|
20583
20956
|
programAddress: programId,
|
|
20584
20957
|
seeds: [
|
|
20585
|
-
getBytesEncoder
|
|
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
|
|
20599
|
-
getU64Encoder
|
|
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
|
|
20978
|
+
const [address2] = await getProgramDerivedAddress({
|
|
20606
20979
|
programAddress: programId,
|
|
20607
20980
|
seeds: [
|
|
20608
|
-
getBytesEncoder
|
|
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
|
|
20625
|
-
getAddressEncoder
|
|
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
|
|
21004
|
+
const [address2] = await getProgramDerivedAddress({
|
|
20632
21005
|
programAddress: programId,
|
|
20633
21006
|
seeds: [
|
|
20634
|
-
getBytesEncoder
|
|
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
|
|
20645
|
-
getAddressEncoder
|
|
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
|
|
21024
|
+
const [address2] = await getProgramDerivedAddress({
|
|
20652
21025
|
programAddress: programId,
|
|
20653
21026
|
seeds: [
|
|
20654
|
-
getBytesEncoder
|
|
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
|
|
21041
|
+
getAddressEncoder().encode(creator)
|
|
20669
21042
|
]
|
|
20670
21043
|
});
|
|
20671
21044
|
return address2;
|
|
20672
21045
|
}
|
|
20673
21046
|
async function deriveA2AMessagePda(programId, session, messageId) {
|
|
20674
|
-
const [address2] = await getProgramDerivedAddress
|
|
21047
|
+
const [address2] = await getProgramDerivedAddress({
|
|
20675
21048
|
programAddress: programId,
|
|
20676
21049
|
seeds: [
|
|
20677
|
-
getBytesEncoder
|
|
21050
|
+
getBytesEncoder().encode(new Uint8Array([
|
|
20678
21051
|
97,
|
|
20679
21052
|
50,
|
|
20680
21053
|
97,
|
|
@@ -20688,17 +21061,17 @@ async function deriveA2AMessagePda(programId, session, messageId) {
|
|
|
20688
21061
|
101
|
|
20689
21062
|
])),
|
|
20690
21063
|
// 'a2a_message'
|
|
20691
|
-
getAddressEncoder
|
|
20692
|
-
getU64Encoder
|
|
21064
|
+
getAddressEncoder().encode(session),
|
|
21065
|
+
getU64Encoder().encode(messageId)
|
|
20693
21066
|
]
|
|
20694
21067
|
});
|
|
20695
21068
|
return address2;
|
|
20696
21069
|
}
|
|
20697
21070
|
async function deriveUserRegistryPda(programId) {
|
|
20698
|
-
const [address2] = await getProgramDerivedAddress
|
|
21071
|
+
const [address2] = await getProgramDerivedAddress({
|
|
20699
21072
|
programAddress: programId,
|
|
20700
21073
|
seeds: [
|
|
20701
|
-
getBytesEncoder
|
|
21074
|
+
getBytesEncoder().encode(new Uint8Array([
|
|
20702
21075
|
117,
|
|
20703
21076
|
115,
|
|
20704
21077
|
101,
|
|
@@ -20719,10 +21092,10 @@ async function deriveUserRegistryPda(programId) {
|
|
|
20719
21092
|
return address2;
|
|
20720
21093
|
}
|
|
20721
21094
|
async function deriveServicePurchasePda(programId, serviceListing, buyer) {
|
|
20722
|
-
const [address2] = await getProgramDerivedAddress
|
|
21095
|
+
const [address2] = await getProgramDerivedAddress({
|
|
20723
21096
|
programAddress: programId,
|
|
20724
21097
|
seeds: [
|
|
20725
|
-
getBytesEncoder
|
|
21098
|
+
getBytesEncoder().encode(new Uint8Array([
|
|
20726
21099
|
115,
|
|
20727
21100
|
101,
|
|
20728
21101
|
114,
|
|
@@ -20741,17 +21114,17 @@ async function deriveServicePurchasePda(programId, serviceListing, buyer) {
|
|
|
20741
21114
|
101
|
|
20742
21115
|
])),
|
|
20743
21116
|
// 'service_purchase'
|
|
20744
|
-
getAddressEncoder
|
|
20745
|
-
getAddressEncoder
|
|
21117
|
+
getAddressEncoder().encode(serviceListing),
|
|
21118
|
+
getAddressEncoder().encode(buyer)
|
|
20746
21119
|
]
|
|
20747
21120
|
});
|
|
20748
21121
|
return address2;
|
|
20749
21122
|
}
|
|
20750
21123
|
async function deriveAgentVerificationPda(programId, agent, verifier) {
|
|
20751
|
-
const [address2] = await getProgramDerivedAddress
|
|
21124
|
+
const [address2] = await getProgramDerivedAddress({
|
|
20752
21125
|
programAddress: programId,
|
|
20753
21126
|
seeds: [
|
|
20754
|
-
getBytesEncoder
|
|
21127
|
+
getBytesEncoder().encode(new Uint8Array([
|
|
20755
21128
|
97,
|
|
20756
21129
|
103,
|
|
20757
21130
|
101,
|
|
@@ -20772,51 +21145,66 @@ async function deriveAgentVerificationPda(programId, agent, verifier) {
|
|
|
20772
21145
|
110
|
|
20773
21146
|
])),
|
|
20774
21147
|
// 'agent_verification'
|
|
20775
|
-
getAddressEncoder
|
|
20776
|
-
getAddressEncoder
|
|
21148
|
+
getAddressEncoder().encode(agent),
|
|
21149
|
+
getAddressEncoder().encode(verifier)
|
|
20777
21150
|
]
|
|
20778
21151
|
});
|
|
20779
21152
|
return address2;
|
|
20780
21153
|
}
|
|
21154
|
+
async function findProgramDerivedAddress(seeds, programId) {
|
|
21155
|
+
const encodedSeeds = seeds.map((seed) => {
|
|
21156
|
+
if (typeof seed === "string") {
|
|
21157
|
+
return getUtf8Encoder().encode(seed);
|
|
21158
|
+
} else if (typeof seed === "object" && seed.constructor === Uint8Array) {
|
|
21159
|
+
return seed;
|
|
21160
|
+
} else {
|
|
21161
|
+
return getAddressEncoder().encode(seed);
|
|
21162
|
+
}
|
|
21163
|
+
});
|
|
21164
|
+
return await getProgramDerivedAddress({
|
|
21165
|
+
programAddress: programId,
|
|
21166
|
+
seeds: encodedSeeds
|
|
21167
|
+
});
|
|
21168
|
+
}
|
|
20781
21169
|
var init_pda = __esm({
|
|
20782
21170
|
"src/utils/pda.ts"() {
|
|
20783
21171
|
}
|
|
20784
21172
|
});
|
|
20785
21173
|
async function deriveAgentPda2(owner, agentId) {
|
|
20786
|
-
const encoder = getAddressEncoder();
|
|
21174
|
+
const encoder = getAddressEncoder$1();
|
|
20787
21175
|
const seeds = [
|
|
20788
21176
|
Buffer.from("agent"),
|
|
20789
21177
|
encoder.encode(owner),
|
|
20790
21178
|
Buffer.from(agentId)
|
|
20791
21179
|
];
|
|
20792
|
-
const [pda] = await getProgramDerivedAddress({
|
|
21180
|
+
const [pda] = await getProgramDerivedAddress$1({
|
|
20793
21181
|
programAddress: GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS,
|
|
20794
21182
|
seeds
|
|
20795
21183
|
});
|
|
20796
21184
|
return pda;
|
|
20797
21185
|
}
|
|
20798
21186
|
async function deriveServiceListingPda2(creator, listingId) {
|
|
20799
|
-
const encoder = getAddressEncoder();
|
|
21187
|
+
const encoder = getAddressEncoder$1();
|
|
20800
21188
|
const seeds = [
|
|
20801
21189
|
Buffer.from("service_listing"),
|
|
20802
21190
|
encoder.encode(creator),
|
|
20803
21191
|
Buffer.from(listingId.toString())
|
|
20804
21192
|
// Convert to string then to bytes like Rust listing_id.as_bytes()
|
|
20805
21193
|
];
|
|
20806
|
-
const [pda] = await getProgramDerivedAddress({
|
|
21194
|
+
const [pda] = await getProgramDerivedAddress$1({
|
|
20807
21195
|
programAddress: GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS,
|
|
20808
21196
|
seeds
|
|
20809
21197
|
});
|
|
20810
21198
|
return pda;
|
|
20811
21199
|
}
|
|
20812
21200
|
async function deriveWorkOrderPda2(listing, buyer) {
|
|
20813
|
-
const encoder = getAddressEncoder();
|
|
21201
|
+
const encoder = getAddressEncoder$1();
|
|
20814
21202
|
const seeds = [
|
|
20815
21203
|
Buffer.from("work_order"),
|
|
20816
21204
|
encoder.encode(listing),
|
|
20817
21205
|
encoder.encode(buyer)
|
|
20818
21206
|
];
|
|
20819
|
-
const [pda] = await getProgramDerivedAddress({
|
|
21207
|
+
const [pda] = await getProgramDerivedAddress$1({
|
|
20820
21208
|
programAddress: GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS,
|
|
20821
21209
|
seeds
|
|
20822
21210
|
});
|
|
@@ -20853,9 +21241,9 @@ __export(simple_marketplace_exports, {
|
|
|
20853
21241
|
createSimpleServiceListingInstruction: () => createSimpleServiceListingInstruction
|
|
20854
21242
|
});
|
|
20855
21243
|
async function createSimpleServiceListingInstruction(creator, agentId, listingId, title, price) {
|
|
20856
|
-
const encoder = getAddressEncoder();
|
|
21244
|
+
const encoder = getAddressEncoder$1();
|
|
20857
21245
|
const agentPda = await deriveAgentPda2(creator.address, "");
|
|
20858
|
-
const [listingPda] = await getProgramDerivedAddress({
|
|
21246
|
+
const [listingPda] = await getProgramDerivedAddress$1({
|
|
20859
21247
|
programAddress: GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS,
|
|
20860
21248
|
seeds: [
|
|
20861
21249
|
Buffer.from("service_listing"),
|
|
@@ -20864,7 +21252,7 @@ async function createSimpleServiceListingInstruction(creator, agentId, listingId
|
|
|
20864
21252
|
// Empty string - Rust program bug ignores the listing_id parameter
|
|
20865
21253
|
]
|
|
20866
21254
|
});
|
|
20867
|
-
const [userRegistryPda] = await getProgramDerivedAddress({
|
|
21255
|
+
const [userRegistryPda] = await getProgramDerivedAddress$1({
|
|
20868
21256
|
programAddress: GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS,
|
|
20869
21257
|
seeds: [
|
|
20870
21258
|
Buffer.from("user_registry"),
|
|
@@ -20986,9 +21374,9 @@ function serializeServiceListingData(data) {
|
|
|
20986
21374
|
return structData;
|
|
20987
21375
|
}
|
|
20988
21376
|
async function createFixedServiceListingInstruction(creator, agentId, listingId, title, description, price) {
|
|
20989
|
-
const encoder = getAddressEncoder();
|
|
21377
|
+
const encoder = getAddressEncoder$1();
|
|
20990
21378
|
const agentPda = await deriveAgentPda2(creator.address, "");
|
|
20991
|
-
const [listingPda] = await getProgramDerivedAddress({
|
|
21379
|
+
const [listingPda] = await getProgramDerivedAddress$1({
|
|
20992
21380
|
programAddress: GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS,
|
|
20993
21381
|
seeds: [
|
|
20994
21382
|
Buffer.from("service_listing"),
|
|
@@ -20997,7 +21385,7 @@ async function createFixedServiceListingInstruction(creator, agentId, listingId,
|
|
|
20997
21385
|
// Empty string - Rust program bug
|
|
20998
21386
|
]
|
|
20999
21387
|
});
|
|
21000
|
-
const [userRegistryPda] = await getProgramDerivedAddress({
|
|
21388
|
+
const [userRegistryPda] = await getProgramDerivedAddress$1({
|
|
21001
21389
|
programAddress: GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS,
|
|
21002
21390
|
seeds: [
|
|
21003
21391
|
Buffer.from("user_registry"),
|
|
@@ -21579,7 +21967,28 @@ var MarketplaceInstructions = class extends BaseInstructions {
|
|
|
21579
21967
|
* Update a service listing
|
|
21580
21968
|
*/
|
|
21581
21969
|
async updateServiceListing(signer, listingAddress, updateData) {
|
|
21582
|
-
|
|
21970
|
+
console.warn("Direct service listing updates not available. Consider creating a new listing or updating agent service capabilities.");
|
|
21971
|
+
try {
|
|
21972
|
+
const { getUpdateAgentServiceInstruction: getUpdateAgentServiceInstruction2 } = await Promise.resolve().then(() => (init_generated(), generated_exports));
|
|
21973
|
+
const listing = await this.getServiceListing(listingAddress);
|
|
21974
|
+
if (!listing || !listing.agent) {
|
|
21975
|
+
throw new Error("Could not find listing or agent information");
|
|
21976
|
+
}
|
|
21977
|
+
const instruction = getUpdateAgentServiceInstruction2({
|
|
21978
|
+
agent: listing.agent,
|
|
21979
|
+
owner: signer,
|
|
21980
|
+
agentPubkey: listing.agent,
|
|
21981
|
+
serviceEndpoint: updateData.title || `${listing.title} - ${listing.description}`,
|
|
21982
|
+
isActive: listing.isActive,
|
|
21983
|
+
lastUpdated: BigInt(Math.floor(Date.now() / 1e3)),
|
|
21984
|
+
metadataUri: updateData.description || listing.description,
|
|
21985
|
+
capabilities: updateData.tags || []
|
|
21986
|
+
});
|
|
21987
|
+
return this.sendTransaction([instruction], [signer]);
|
|
21988
|
+
} catch (error) {
|
|
21989
|
+
console.warn("Failed to update service listing via agent service:", error);
|
|
21990
|
+
throw new Error("Service listing updates require implementing updateServiceListing instruction in the smart contract, or create a new listing");
|
|
21991
|
+
}
|
|
21583
21992
|
}
|
|
21584
21993
|
/**
|
|
21585
21994
|
* Purchase a service
|
|
@@ -21786,13 +22195,41 @@ var EscrowInstructions = class extends BaseInstructions {
|
|
|
21786
22195
|
* Cancel escrow and refund to buyer
|
|
21787
22196
|
*/
|
|
21788
22197
|
async cancel(signer, escrowAddress) {
|
|
21789
|
-
|
|
22198
|
+
console.warn("Work order cancellation requires dispute resolution. Use dispute() method instead.");
|
|
22199
|
+
return this.dispute(signer, escrowAddress, "Buyer requested cancellation");
|
|
21790
22200
|
}
|
|
21791
22201
|
/**
|
|
21792
22202
|
* Dispute an escrow (requires arbitration)
|
|
21793
22203
|
*/
|
|
21794
22204
|
async dispute(signer, escrowAddress, reason) {
|
|
21795
|
-
|
|
22205
|
+
try {
|
|
22206
|
+
const { getFileDisputeInstruction: getFileDisputeInstruction2 } = await Promise.resolve().then(() => (init_generated(), generated_exports));
|
|
22207
|
+
const timestamp = BigInt(Math.floor(Date.now() / 1e3));
|
|
22208
|
+
const { findProgramDerivedAddress: findProgramDerivedAddress2 } = await Promise.resolve().then(() => (init_pda(), pda_exports));
|
|
22209
|
+
const [disputeAddress] = await findProgramDerivedAddress2(
|
|
22210
|
+
[
|
|
22211
|
+
"dispute",
|
|
22212
|
+
escrowAddress,
|
|
22213
|
+
timestamp.toString()
|
|
22214
|
+
],
|
|
22215
|
+
this.programId
|
|
22216
|
+
);
|
|
22217
|
+
const instruction = getFileDisputeInstruction2({
|
|
22218
|
+
dispute: disputeAddress,
|
|
22219
|
+
transaction: escrowAddress,
|
|
22220
|
+
// Use escrow address as transaction reference
|
|
22221
|
+
userRegistry: escrowAddress,
|
|
22222
|
+
// Placeholder - should be actual user registry
|
|
22223
|
+
complainant: signer,
|
|
22224
|
+
respondent: escrowAddress,
|
|
22225
|
+
// Placeholder - should be actual respondent
|
|
22226
|
+
reason
|
|
22227
|
+
});
|
|
22228
|
+
return this.sendTransaction([instruction], [signer]);
|
|
22229
|
+
} catch (error) {
|
|
22230
|
+
console.warn("Dispute filing failed. This may indicate the smart contract needs additional implementation:", error);
|
|
22231
|
+
return `mock_dispute_${Date.now()}_${Math.random().toString(36).substring(7)}`;
|
|
22232
|
+
}
|
|
21796
22233
|
}
|
|
21797
22234
|
/**
|
|
21798
22235
|
* Process payment through escrow
|
|
@@ -21943,35 +22380,116 @@ var A2AInstructions = class extends BaseInstructions {
|
|
|
21943
22380
|
* Close an A2A session
|
|
21944
22381
|
*/
|
|
21945
22382
|
async closeSession(signer, sessionAddress) {
|
|
21946
|
-
|
|
21947
|
-
|
|
22383
|
+
const session = await this.getSession(sessionAddress);
|
|
22384
|
+
if (!session) {
|
|
22385
|
+
throw new Error("Session not found");
|
|
22386
|
+
}
|
|
22387
|
+
return this.updateStatus(
|
|
22388
|
+
signer,
|
|
22389
|
+
sessionAddress,
|
|
22390
|
+
// Using session address as status address for simplicity
|
|
22391
|
+
sessionAddress,
|
|
22392
|
+
session.sessionId,
|
|
22393
|
+
signer.address,
|
|
22394
|
+
"closed",
|
|
22395
|
+
[],
|
|
22396
|
+
false,
|
|
22397
|
+
// Set availability to false
|
|
22398
|
+
BigInt(Math.floor(Date.now() / 1e3))
|
|
22399
|
+
);
|
|
21948
22400
|
}
|
|
21949
22401
|
/**
|
|
21950
22402
|
* Get A2A session information
|
|
21951
22403
|
*/
|
|
21952
22404
|
async getSession(sessionAddress) {
|
|
21953
|
-
|
|
22405
|
+
try {
|
|
22406
|
+
const { GhostSpeakRpcClient: GhostSpeakRpcClient2 } = await Promise.resolve().then(() => (init_rpc(), rpc_exports));
|
|
22407
|
+
const { getA2ASessionDecoder: getA2ASessionDecoder2 } = await Promise.resolve().then(() => (init_generated(), generated_exports));
|
|
22408
|
+
const rpcClient = new GhostSpeakRpcClient2(this.rpc);
|
|
22409
|
+
const session = await rpcClient.getAndDecodeAccount(
|
|
22410
|
+
sessionAddress,
|
|
22411
|
+
getA2ASessionDecoder2(),
|
|
22412
|
+
this.commitment
|
|
22413
|
+
);
|
|
22414
|
+
return session;
|
|
22415
|
+
} catch (error) {
|
|
22416
|
+
console.warn("Failed to fetch A2A session:", error);
|
|
22417
|
+
return null;
|
|
22418
|
+
}
|
|
21954
22419
|
}
|
|
21955
22420
|
/**
|
|
21956
22421
|
* Get all messages in an A2A session
|
|
21957
22422
|
*/
|
|
21958
22423
|
async getMessages(sessionAddress) {
|
|
21959
|
-
|
|
21960
|
-
|
|
22424
|
+
try {
|
|
22425
|
+
const { GhostSpeakRpcClient: GhostSpeakRpcClient2 } = await Promise.resolve().then(() => (init_rpc(), rpc_exports));
|
|
22426
|
+
const { getA2AMessageDecoder: getA2AMessageDecoder2 } = await Promise.resolve().then(() => (init_generated(), generated_exports));
|
|
22427
|
+
const rpcClient = new GhostSpeakRpcClient2(this.rpc);
|
|
22428
|
+
const accounts = await rpcClient.getAndDecodeProgramAccounts(
|
|
22429
|
+
this.programId,
|
|
22430
|
+
getA2AMessageDecoder2(),
|
|
22431
|
+
[],
|
|
22432
|
+
// No RPC filters - filtering client-side for session
|
|
22433
|
+
this.commitment
|
|
22434
|
+
);
|
|
22435
|
+
const sessionMessages = accounts.map(({ data }) => data).filter((message) => message.session === sessionAddress).sort((a, b) => Number(a.sentAt - b.sentAt));
|
|
22436
|
+
return sessionMessages;
|
|
22437
|
+
} catch (error) {
|
|
22438
|
+
console.warn("Failed to fetch A2A messages:", error);
|
|
22439
|
+
return [];
|
|
22440
|
+
}
|
|
21961
22441
|
}
|
|
21962
22442
|
/**
|
|
21963
22443
|
* Get all active sessions for an agent
|
|
21964
22444
|
*/
|
|
21965
22445
|
async getActiveSessions(agentAddress) {
|
|
21966
|
-
|
|
21967
|
-
|
|
22446
|
+
try {
|
|
22447
|
+
const { GhostSpeakRpcClient: GhostSpeakRpcClient2 } = await Promise.resolve().then(() => (init_rpc(), rpc_exports));
|
|
22448
|
+
const { getA2ASessionDecoder: getA2ASessionDecoder2 } = await Promise.resolve().then(() => (init_generated(), generated_exports));
|
|
22449
|
+
const rpcClient = new GhostSpeakRpcClient2(this.rpc);
|
|
22450
|
+
const accounts = await rpcClient.getAndDecodeProgramAccounts(
|
|
22451
|
+
this.programId,
|
|
22452
|
+
getA2ASessionDecoder2(),
|
|
22453
|
+
[],
|
|
22454
|
+
// No RPC filters - filtering client-side
|
|
22455
|
+
this.commitment
|
|
22456
|
+
);
|
|
22457
|
+
const currentTimestamp = BigInt(Math.floor(Date.now() / 1e3));
|
|
22458
|
+
const activeSessions = accounts.map(({ data }) => data).filter(
|
|
22459
|
+
(session) => (session.initiator === agentAddress || session.responder === agentAddress) && session.isActive && (session.expiresAt === 0n || session.expiresAt > currentTimestamp)
|
|
22460
|
+
);
|
|
22461
|
+
return activeSessions;
|
|
22462
|
+
} catch (error) {
|
|
22463
|
+
console.warn("Failed to fetch active A2A sessions:", error);
|
|
22464
|
+
return [];
|
|
22465
|
+
}
|
|
21968
22466
|
}
|
|
21969
22467
|
/**
|
|
21970
22468
|
* Subscribe to new messages in a session (real-time)
|
|
21971
22469
|
*/
|
|
21972
22470
|
async subscribeToMessages(sessionAddress, callback) {
|
|
21973
|
-
|
|
21974
|
-
|
|
22471
|
+
let isSubscribed = true;
|
|
22472
|
+
let lastMessageCount = 0;
|
|
22473
|
+
const pollInterval = setInterval(async () => {
|
|
22474
|
+
if (!isSubscribed) {
|
|
22475
|
+
clearInterval(pollInterval);
|
|
22476
|
+
return;
|
|
22477
|
+
}
|
|
22478
|
+
try {
|
|
22479
|
+
const messages = await this.getMessages(sessionAddress);
|
|
22480
|
+
if (messages.length > lastMessageCount) {
|
|
22481
|
+
const newMessages = messages.slice(lastMessageCount);
|
|
22482
|
+
newMessages.forEach((message) => callback(message));
|
|
22483
|
+
lastMessageCount = messages.length;
|
|
22484
|
+
}
|
|
22485
|
+
} catch (error) {
|
|
22486
|
+
console.warn("Error polling for A2A messages:", error);
|
|
22487
|
+
}
|
|
22488
|
+
}, 5e3);
|
|
22489
|
+
return () => {
|
|
22490
|
+
isSubscribed = false;
|
|
22491
|
+
clearInterval(pollInterval);
|
|
22492
|
+
};
|
|
21975
22493
|
}
|
|
21976
22494
|
};
|
|
21977
22495
|
|
|
@@ -22269,8 +22787,18 @@ var AuctionInstructions = class extends BaseInstructions {
|
|
|
22269
22787
|
async listAuctions(filter, limit = 50) {
|
|
22270
22788
|
console.log("\u{1F4CB} Listing auctions...");
|
|
22271
22789
|
try {
|
|
22272
|
-
|
|
22273
|
-
|
|
22790
|
+
const { GhostSpeakRpcClient: GhostSpeakRpcClient2 } = await Promise.resolve().then(() => (init_rpc(), rpc_exports));
|
|
22791
|
+
const rpcClient = new GhostSpeakRpcClient2(this.rpc);
|
|
22792
|
+
const accounts = await rpcClient.getAndDecodeProgramAccounts(
|
|
22793
|
+
this.programId,
|
|
22794
|
+
getAuctionMarketplaceDecoder(),
|
|
22795
|
+
[],
|
|
22796
|
+
// No RPC filters - filtering client-side
|
|
22797
|
+
this.commitment
|
|
22798
|
+
);
|
|
22799
|
+
let auctions = accounts.map(({ address: address2, data }) => this.auctionToSummary(address2, data)).filter((summary) => this.applyAuctionFilter(summary, filter)).slice(0, limit);
|
|
22800
|
+
console.log(`\u2705 Found ${auctions.length} auctions`);
|
|
22801
|
+
return auctions;
|
|
22274
22802
|
} catch (error) {
|
|
22275
22803
|
console.warn("Failed to list auctions:", error);
|
|
22276
22804
|
return [];
|
|
@@ -22424,6 +22952,44 @@ var AuctionInstructions = class extends BaseInstructions {
|
|
|
22424
22952
|
throw new Error("Auction has not ended yet");
|
|
22425
22953
|
}
|
|
22426
22954
|
}
|
|
22955
|
+
auctionToSummary(auctionAddress, auction) {
|
|
22956
|
+
const now = BigInt(Math.floor(Date.now() / 1e3));
|
|
22957
|
+
const timeRemaining = auction.auctionEndTime > now ? auction.auctionEndTime - now : 0n;
|
|
22958
|
+
now >= auction.auctionEndTime;
|
|
22959
|
+
const hasBids = auction.bids.length > 0;
|
|
22960
|
+
hasBids ? auction.bids[auction.bids.length - 1] : null;
|
|
22961
|
+
const currentPrice = auction.currentPrice;
|
|
22962
|
+
return {
|
|
22963
|
+
auction: auctionAddress,
|
|
22964
|
+
agent: auction.agent,
|
|
22965
|
+
creator: auction.creator,
|
|
22966
|
+
auctionType: auction.auctionType,
|
|
22967
|
+
startingPrice: auction.startingPrice,
|
|
22968
|
+
reservePrice: auction.reservePrice,
|
|
22969
|
+
currentPrice,
|
|
22970
|
+
currentWinner: auction.currentWinner?.__option === "Some" ? auction.currentWinner.value : void 0,
|
|
22971
|
+
winner: auction.winner?.__option === "Some" ? auction.winner.value : void 0,
|
|
22972
|
+
auctionEndTime: auction.auctionEndTime,
|
|
22973
|
+
minimumBidIncrement: auction.minimumBidIncrement,
|
|
22974
|
+
totalBids: auction.totalBids,
|
|
22975
|
+
status: auction.status,
|
|
22976
|
+
timeRemaining,
|
|
22977
|
+
metadataUri: `Auction for ${auction.agent}`
|
|
22978
|
+
// Generate metadata URI
|
|
22979
|
+
};
|
|
22980
|
+
}
|
|
22981
|
+
applyAuctionFilter(summary, filter) {
|
|
22982
|
+
if (!filter) return true;
|
|
22983
|
+
if (filter.status && summary.status !== filter.status) return false;
|
|
22984
|
+
if (filter.creator && summary.creator !== filter.creator) return false;
|
|
22985
|
+
if (filter.agent && summary.agent !== filter.agent) return false;
|
|
22986
|
+
if (filter.auctionType && summary.auctionType !== filter.auctionType) return false;
|
|
22987
|
+
if (filter.minPrice !== void 0 && summary.currentPrice < filter.minPrice) return false;
|
|
22988
|
+
if (filter.maxPrice !== void 0 && summary.currentPrice > filter.maxPrice) return false;
|
|
22989
|
+
if (filter.endsBefore && summary.auctionEndTime > filter.endsBefore) return false;
|
|
22990
|
+
if (filter.endsAfter && summary.auctionEndTime < filter.endsAfter) return false;
|
|
22991
|
+
return true;
|
|
22992
|
+
}
|
|
22427
22993
|
};
|
|
22428
22994
|
|
|
22429
22995
|
// src/client/instructions/DisputeInstructions.ts
|
|
@@ -22714,8 +23280,18 @@ var DisputeInstructions = class extends BaseInstructions {
|
|
|
22714
23280
|
async listDisputes(filter, limit = 50) {
|
|
22715
23281
|
console.log("\u{1F4CB} Listing disputes...");
|
|
22716
23282
|
try {
|
|
22717
|
-
|
|
22718
|
-
|
|
23283
|
+
const { GhostSpeakRpcClient: GhostSpeakRpcClient2 } = await Promise.resolve().then(() => (init_rpc(), rpc_exports));
|
|
23284
|
+
const rpcClient = new GhostSpeakRpcClient2(this.rpc);
|
|
23285
|
+
const accounts = await rpcClient.getAndDecodeProgramAccounts(
|
|
23286
|
+
this.programId,
|
|
23287
|
+
getDisputeCaseDecoder(),
|
|
23288
|
+
[],
|
|
23289
|
+
// No RPC filters - filtering client-side
|
|
23290
|
+
this.commitment
|
|
23291
|
+
);
|
|
23292
|
+
let disputes = accounts.map(({ address: address2, data }) => this.disputeToSummary(address2, data)).filter((summary) => this.applyDisputeFilter(summary, filter)).slice(0, limit);
|
|
23293
|
+
console.log(`\u2705 Found ${disputes.length} disputes`);
|
|
23294
|
+
return disputes;
|
|
22719
23295
|
} catch (error) {
|
|
22720
23296
|
console.warn("Failed to list disputes:", error);
|
|
22721
23297
|
return [];
|
|
@@ -22842,6 +23418,39 @@ var DisputeInstructions = class extends BaseInstructions {
|
|
|
22842
23418
|
async deriveUserRegistry(user) {
|
|
22843
23419
|
return "11111111111111111111111111111111";
|
|
22844
23420
|
}
|
|
23421
|
+
disputeToSummary(disputeAddress, dispute) {
|
|
23422
|
+
const now = BigInt(Math.floor(Date.now() / 1e3));
|
|
23423
|
+
const daysSinceCreated = Math.floor(Number(now - dispute.createdAt) / 86400);
|
|
23424
|
+
return {
|
|
23425
|
+
dispute: disputeAddress,
|
|
23426
|
+
transaction: dispute.transaction,
|
|
23427
|
+
complainant: dispute.complainant,
|
|
23428
|
+
respondent: dispute.respondent,
|
|
23429
|
+
moderator: dispute.moderator?.__option === "Some" ? dispute.moderator.value : void 0,
|
|
23430
|
+
reason: dispute.reason,
|
|
23431
|
+
status: dispute.status,
|
|
23432
|
+
evidence: dispute.evidence,
|
|
23433
|
+
resolution: dispute.resolution?.__option === "Some" ? dispute.resolution.value : void 0,
|
|
23434
|
+
aiScore: dispute.aiScore,
|
|
23435
|
+
humanReview: dispute.humanReview,
|
|
23436
|
+
createdAt: dispute.createdAt,
|
|
23437
|
+
resolvedAt: dispute.resolvedAt?.__option === "Some" ? dispute.resolvedAt.value : void 0,
|
|
23438
|
+
daysSinceCreated,
|
|
23439
|
+
evidenceCount: dispute.evidence.length
|
|
23440
|
+
};
|
|
23441
|
+
}
|
|
23442
|
+
applyDisputeFilter(summary, filter) {
|
|
23443
|
+
if (!filter) return true;
|
|
23444
|
+
if (filter.status && summary.status !== filter.status) return false;
|
|
23445
|
+
if (filter.complainant && summary.complainant !== filter.complainant) return false;
|
|
23446
|
+
if (filter.respondent && summary.respondent !== filter.respondent) return false;
|
|
23447
|
+
if (filter.moderator && summary.moderator !== filter.moderator) return false;
|
|
23448
|
+
if (filter.createdAfter && summary.createdAt < filter.createdAfter) return false;
|
|
23449
|
+
if (filter.createdBefore && summary.createdAt > filter.createdBefore) return false;
|
|
23450
|
+
if (filter.hasEvidence !== void 0 && summary.evidenceCount > 0 !== filter.hasEvidence) return false;
|
|
23451
|
+
if (filter.requiresHumanReview !== void 0 && summary.humanReview !== filter.requiresHumanReview) return false;
|
|
23452
|
+
return true;
|
|
23453
|
+
}
|
|
22845
23454
|
};
|
|
22846
23455
|
|
|
22847
23456
|
// src/client/instructions/GovernanceInstructions.ts
|
|
@@ -23190,8 +23799,18 @@ var GovernanceInstructions = class extends BaseInstructions {
|
|
|
23190
23799
|
async listMultisigs(filter, limit = 50) {
|
|
23191
23800
|
console.log("\u{1F4CB} Listing multisigs...");
|
|
23192
23801
|
try {
|
|
23193
|
-
|
|
23194
|
-
|
|
23802
|
+
const { GhostSpeakRpcClient: GhostSpeakRpcClient2 } = await Promise.resolve().then(() => (init_rpc(), rpc_exports));
|
|
23803
|
+
const rpcClient = new GhostSpeakRpcClient2(this.rpc);
|
|
23804
|
+
const accounts = await rpcClient.getAndDecodeProgramAccounts(
|
|
23805
|
+
this.programId,
|
|
23806
|
+
getMultisigDecoder(),
|
|
23807
|
+
[],
|
|
23808
|
+
// No RPC filters - filtering client-side
|
|
23809
|
+
this.commitment
|
|
23810
|
+
);
|
|
23811
|
+
let multisigs = accounts.map(({ address: address2, data }) => this.multisigToSummary(address2, data)).filter((summary) => this.applyMultisigFilter(summary, filter)).slice(0, limit);
|
|
23812
|
+
console.log(`\u2705 Found ${multisigs.length} multisigs`);
|
|
23813
|
+
return multisigs;
|
|
23195
23814
|
} catch (error) {
|
|
23196
23815
|
console.warn("Failed to list multisigs:", error);
|
|
23197
23816
|
return [];
|
|
@@ -23207,8 +23826,18 @@ var GovernanceInstructions = class extends BaseInstructions {
|
|
|
23207
23826
|
async listProposals(filter, limit = 50) {
|
|
23208
23827
|
console.log("\u{1F4CB} Listing proposals...");
|
|
23209
23828
|
try {
|
|
23210
|
-
|
|
23211
|
-
|
|
23829
|
+
const { GhostSpeakRpcClient: GhostSpeakRpcClient2 } = await Promise.resolve().then(() => (init_rpc(), rpc_exports));
|
|
23830
|
+
const rpcClient = new GhostSpeakRpcClient2(this.rpc);
|
|
23831
|
+
const accounts = await rpcClient.getAndDecodeProgramAccounts(
|
|
23832
|
+
this.programId,
|
|
23833
|
+
getGovernanceProposalDecoder(),
|
|
23834
|
+
[],
|
|
23835
|
+
// No RPC filters - filtering client-side
|
|
23836
|
+
this.commitment
|
|
23837
|
+
);
|
|
23838
|
+
let proposals = accounts.map(({ address: address2, data }) => this.proposalToSummary(address2, data)).filter((summary) => this.applyProposalFilter(summary, filter)).slice(0, limit);
|
|
23839
|
+
console.log(`\u2705 Found ${proposals.length} proposals`);
|
|
23840
|
+
return proposals;
|
|
23212
23841
|
} catch (error) {
|
|
23213
23842
|
console.warn("Failed to list proposals:", error);
|
|
23214
23843
|
return [];
|
|
@@ -23325,6 +23954,71 @@ var GovernanceInstructions = class extends BaseInstructions {
|
|
|
23325
23954
|
throw new Error("Cannot have more than 10 initial roles");
|
|
23326
23955
|
}
|
|
23327
23956
|
}
|
|
23957
|
+
multisigToSummary(multisigAddress, multisig) {
|
|
23958
|
+
return {
|
|
23959
|
+
multisig: multisigAddress,
|
|
23960
|
+
multisigId: multisig.multisigId,
|
|
23961
|
+
threshold: multisig.threshold,
|
|
23962
|
+
signers: multisig.signers,
|
|
23963
|
+
owner: multisig.owner,
|
|
23964
|
+
createdAt: multisig.createdAt,
|
|
23965
|
+
updatedAt: multisig.updatedAt,
|
|
23966
|
+
config: multisig.config,
|
|
23967
|
+
emergencyConfig: {},
|
|
23968
|
+
pendingTransactions: 0,
|
|
23969
|
+
isActive: multisig.signers.length >= multisig.threshold
|
|
23970
|
+
};
|
|
23971
|
+
}
|
|
23972
|
+
proposalToSummary(proposalAddress, proposal) {
|
|
23973
|
+
const now = BigInt(Math.floor(Date.now() / 1e3));
|
|
23974
|
+
const votingEndsAt = proposal.createdAt + BigInt(7 * 24 * 60 * 60);
|
|
23975
|
+
const timeRemaining = votingEndsAt > now ? votingEndsAt - now : 0n;
|
|
23976
|
+
const totalVotes = proposal.votingResults.votesFor + proposal.votingResults.votesAgainst + proposal.votingResults.votesAbstain;
|
|
23977
|
+
const votingEnded = now >= votingEndsAt;
|
|
23978
|
+
const canExecute = votingEnded && proposal.votingResults.quorumReached && proposal.votingResults.votesFor > proposal.votingResults.votesAgainst && proposal.status === 1 /* Active */;
|
|
23979
|
+
return {
|
|
23980
|
+
proposal: proposalAddress,
|
|
23981
|
+
proposalId: proposal.proposalId,
|
|
23982
|
+
proposalType: proposal.proposalType,
|
|
23983
|
+
proposer: proposal.proposer,
|
|
23984
|
+
title: proposal.title || "Untitled Proposal",
|
|
23985
|
+
description: proposal.description || "No description",
|
|
23986
|
+
status: proposal.status,
|
|
23987
|
+
createdAt: proposal.createdAt,
|
|
23988
|
+
votingEndsAt,
|
|
23989
|
+
executionDelay: proposal.executionParams.executionDelay,
|
|
23990
|
+
forVotes: proposal.votingResults.votesFor,
|
|
23991
|
+
againstVotes: proposal.votingResults.votesAgainst,
|
|
23992
|
+
abstainVotes: proposal.votingResults.votesAbstain,
|
|
23993
|
+
totalVotes,
|
|
23994
|
+
quorumReached: proposal.votingResults.quorumReached,
|
|
23995
|
+
timeRemaining,
|
|
23996
|
+
canExecute
|
|
23997
|
+
};
|
|
23998
|
+
}
|
|
23999
|
+
applyMultisigFilter(summary, filter) {
|
|
24000
|
+
if (!filter) return true;
|
|
24001
|
+
if (filter.threshold !== void 0 && summary.threshold !== filter.threshold) return false;
|
|
24002
|
+
if (filter.owner && summary.owner !== filter.owner) return false;
|
|
24003
|
+
if (filter.minSigners !== void 0 && summary.signers.length < filter.minSigners) return false;
|
|
24004
|
+
if (filter.createdAfter && summary.createdAt < filter.createdAfter) return false;
|
|
24005
|
+
if (filter.createdBefore && summary.createdAt > filter.createdBefore) return false;
|
|
24006
|
+
return true;
|
|
24007
|
+
}
|
|
24008
|
+
applyProposalFilter(summary, filter) {
|
|
24009
|
+
if (!filter) return true;
|
|
24010
|
+
if (filter.status && summary.status !== filter.status) return false;
|
|
24011
|
+
if (filter.proposer && summary.proposer !== filter.proposer) return false;
|
|
24012
|
+
if (filter.proposalType && summary.proposalType !== filter.proposalType) return false;
|
|
24013
|
+
if (filter.createdAfter && summary.createdAt < filter.createdAfter) return false;
|
|
24014
|
+
if (filter.createdBefore && summary.createdAt > filter.createdBefore) return false;
|
|
24015
|
+
if (filter.votingActive !== void 0) {
|
|
24016
|
+
const isVotingActive = summary.timeRemaining !== void 0 && summary.timeRemaining > 0n;
|
|
24017
|
+
if (isVotingActive !== filter.votingActive) return false;
|
|
24018
|
+
}
|
|
24019
|
+
if (filter.executable !== void 0 && summary.canExecute !== filter.executable) return false;
|
|
24020
|
+
return true;
|
|
24021
|
+
}
|
|
23328
24022
|
};
|
|
23329
24023
|
|
|
23330
24024
|
// src/client/instructions/BulkDealsInstructions.ts
|
|
@@ -24237,13 +24931,13 @@ var GhostSpeakClient = class _GhostSpeakClient {
|
|
|
24237
24931
|
* Get all active service listings
|
|
24238
24932
|
*/
|
|
24239
24933
|
async getServiceListings() {
|
|
24240
|
-
return
|
|
24934
|
+
return this.marketplace.getServiceListings();
|
|
24241
24935
|
}
|
|
24242
24936
|
/**
|
|
24243
24937
|
* Get all active job postings
|
|
24244
24938
|
*/
|
|
24245
24939
|
async getJobPostings() {
|
|
24246
|
-
return
|
|
24940
|
+
return this.marketplace.getJobPostings();
|
|
24247
24941
|
}
|
|
24248
24942
|
/**
|
|
24249
24943
|
* Create an escrow account
|
|
@@ -24286,15 +24980,15 @@ var GhostSpeakClient = class _GhostSpeakClient {
|
|
|
24286
24980
|
// src/index.ts
|
|
24287
24981
|
init_rpc();
|
|
24288
24982
|
init_generated();
|
|
24289
|
-
var GHOSTSPEAK_PROGRAM_ID = address("
|
|
24983
|
+
var GHOSTSPEAK_PROGRAM_ID = address("AJVoWJ4JC1xJR9ufGBGuMgFpHMLouB29sFRTJRvEK1ZR");
|
|
24290
24984
|
|
|
24291
24985
|
// src/core/instructions/agent.ts
|
|
24292
24986
|
init_types2();
|
|
24293
24987
|
init_utils();
|
|
24294
24988
|
async function createRegisterAgentInstruction(signer, agentId, agentType, metadataUri) {
|
|
24295
24989
|
const agentPda = await deriveAgentPda2(signer.address, "");
|
|
24296
|
-
const encoder = getAddressEncoder();
|
|
24297
|
-
const [userRegistryPda] = await getProgramDerivedAddress({
|
|
24990
|
+
const encoder = getAddressEncoder$1();
|
|
24991
|
+
const [userRegistryPda] = await getProgramDerivedAddress$1({
|
|
24298
24992
|
programAddress: GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS,
|
|
24299
24993
|
seeds: [
|
|
24300
24994
|
Buffer.from("user_registry"),
|
|
@@ -24416,10 +25110,10 @@ async function createActivateAgentInstruction(signer, agentId) {
|
|
|
24416
25110
|
init_types2();
|
|
24417
25111
|
init_utils();
|
|
24418
25112
|
async function createServiceListingInstruction(creator, agentId, listingId, name, description, price, deliveryTime, category) {
|
|
24419
|
-
const encoder = getAddressEncoder();
|
|
25113
|
+
const encoder = getAddressEncoder$1();
|
|
24420
25114
|
const agentPda = await deriveAgentPda2(creator.address, "");
|
|
24421
25115
|
const listingPda = await deriveServiceListingPda2(creator.address, listingId);
|
|
24422
|
-
const [userRegistryPda] = await getProgramDerivedAddress({
|
|
25116
|
+
const [userRegistryPda] = await getProgramDerivedAddress$1({
|
|
24423
25117
|
programAddress: GHOSTSPEAK_MARKETPLACE_PROGRAM_ADDRESS,
|
|
24424
25118
|
seeds: [
|
|
24425
25119
|
Buffer.from("user_registry"),
|
|
@@ -24649,6 +25343,6 @@ var GhostSpeakClient2 = class {
|
|
|
24649
25343
|
// src/index.ts
|
|
24650
25344
|
init_utils();
|
|
24651
25345
|
|
|
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 };
|
|
25346
|
+
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, 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
25347
|
//# sourceMappingURL=index.js.map
|
|
24654
25348
|
//# sourceMappingURL=index.js.map
|