wowok_agent 2.1.26 → 2.1.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +60 -150
- package/dist/index.js +201 -3
- package/dist/schema/call/personal.d.ts +112 -112
- package/dist/schema/call/personal.js +6 -6
- package/dist/schema/call/treasury.d.ts +38 -248
- package/dist/schema/call/treasury.js +4 -4
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -6905,7 +6905,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
6905
6905
|
onChain?: boolean | undefined;
|
|
6906
6906
|
} | undefined;
|
|
6907
6907
|
}>]>;
|
|
6908
|
-
description: z.ZodEffects<z.ZodString, string, string
|
|
6908
|
+
description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
6909
6909
|
receive: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
6910
6910
|
balance: z.ZodUnion<[z.ZodNumber, z.ZodString]>;
|
|
6911
6911
|
token_type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -7176,38 +7176,13 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
7176
7176
|
}[];
|
|
7177
7177
|
}>, z.ZodObject<{
|
|
7178
7178
|
op: z.ZodLiteral<"remove">;
|
|
7179
|
-
guards: z.ZodArray<z.
|
|
7180
|
-
name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7181
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7182
|
-
onChain: z.ZodOptional<z.ZodBoolean>;
|
|
7183
|
-
replaceExistName: z.ZodOptional<z.ZodBoolean>;
|
|
7184
|
-
}, "strict", z.ZodTypeAny, {
|
|
7185
|
-
name?: string | undefined;
|
|
7186
|
-
replaceExistName?: boolean | undefined;
|
|
7187
|
-
tags?: string[] | undefined;
|
|
7188
|
-
onChain?: boolean | undefined;
|
|
7189
|
-
}, {
|
|
7190
|
-
name?: string | undefined;
|
|
7191
|
-
replaceExistName?: boolean | undefined;
|
|
7192
|
-
tags?: string[] | undefined;
|
|
7193
|
-
onChain?: boolean | undefined;
|
|
7194
|
-
}>, "many">;
|
|
7179
|
+
guards: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
7195
7180
|
}, "strict", z.ZodTypeAny, {
|
|
7196
7181
|
op: "remove";
|
|
7197
|
-
guards:
|
|
7198
|
-
name?: string | undefined;
|
|
7199
|
-
replaceExistName?: boolean | undefined;
|
|
7200
|
-
tags?: string[] | undefined;
|
|
7201
|
-
onChain?: boolean | undefined;
|
|
7202
|
-
}[];
|
|
7182
|
+
guards: string[];
|
|
7203
7183
|
}, {
|
|
7204
7184
|
op: "remove";
|
|
7205
|
-
guards:
|
|
7206
|
-
name?: string | undefined;
|
|
7207
|
-
replaceExistName?: boolean | undefined;
|
|
7208
|
-
tags?: string[] | undefined;
|
|
7209
|
-
onChain?: boolean | undefined;
|
|
7210
|
-
}[];
|
|
7185
|
+
guards: string[];
|
|
7211
7186
|
}>, z.ZodObject<{
|
|
7212
7187
|
op: z.ZodLiteral<"clear">;
|
|
7213
7188
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -7265,38 +7240,13 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
7265
7240
|
}[];
|
|
7266
7241
|
}>, z.ZodObject<{
|
|
7267
7242
|
op: z.ZodLiteral<"remove">;
|
|
7268
|
-
guards: z.ZodArray<z.
|
|
7269
|
-
name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
7270
|
-
tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
7271
|
-
onChain: z.ZodOptional<z.ZodBoolean>;
|
|
7272
|
-
replaceExistName: z.ZodOptional<z.ZodBoolean>;
|
|
7273
|
-
}, "strict", z.ZodTypeAny, {
|
|
7274
|
-
name?: string | undefined;
|
|
7275
|
-
replaceExistName?: boolean | undefined;
|
|
7276
|
-
tags?: string[] | undefined;
|
|
7277
|
-
onChain?: boolean | undefined;
|
|
7278
|
-
}, {
|
|
7279
|
-
name?: string | undefined;
|
|
7280
|
-
replaceExistName?: boolean | undefined;
|
|
7281
|
-
tags?: string[] | undefined;
|
|
7282
|
-
onChain?: boolean | undefined;
|
|
7283
|
-
}>, "many">;
|
|
7243
|
+
guards: z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">;
|
|
7284
7244
|
}, "strict", z.ZodTypeAny, {
|
|
7285
7245
|
op: "remove";
|
|
7286
|
-
guards:
|
|
7287
|
-
name?: string | undefined;
|
|
7288
|
-
replaceExistName?: boolean | undefined;
|
|
7289
|
-
tags?: string[] | undefined;
|
|
7290
|
-
onChain?: boolean | undefined;
|
|
7291
|
-
}[];
|
|
7246
|
+
guards: string[];
|
|
7292
7247
|
}, {
|
|
7293
7248
|
op: "remove";
|
|
7294
|
-
guards:
|
|
7295
|
-
name?: string | undefined;
|
|
7296
|
-
replaceExistName?: boolean | undefined;
|
|
7297
|
-
tags?: string[] | undefined;
|
|
7298
|
-
onChain?: boolean | undefined;
|
|
7299
|
-
}[];
|
|
7249
|
+
guards: string[];
|
|
7300
7250
|
}>, z.ZodObject<{
|
|
7301
7251
|
op: z.ZodLiteral<"clear">;
|
|
7302
7252
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -7377,7 +7327,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
7377
7327
|
onChain?: boolean | undefined;
|
|
7378
7328
|
} | undefined;
|
|
7379
7329
|
};
|
|
7380
|
-
description
|
|
7330
|
+
description?: string | undefined;
|
|
7381
7331
|
owner_receive?: {
|
|
7382
7332
|
received: {
|
|
7383
7333
|
id: string;
|
|
@@ -7410,12 +7360,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
7410
7360
|
}[];
|
|
7411
7361
|
} | {
|
|
7412
7362
|
op: "remove";
|
|
7413
|
-
guards:
|
|
7414
|
-
name?: string | undefined;
|
|
7415
|
-
replaceExistName?: boolean | undefined;
|
|
7416
|
-
tags?: string[] | undefined;
|
|
7417
|
-
onChain?: boolean | undefined;
|
|
7418
|
-
}[];
|
|
7363
|
+
guards: string[];
|
|
7419
7364
|
} | {
|
|
7420
7365
|
op: "clear";
|
|
7421
7366
|
} | undefined;
|
|
@@ -7433,12 +7378,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
7433
7378
|
}[];
|
|
7434
7379
|
} | {
|
|
7435
7380
|
op: "remove";
|
|
7436
|
-
guards:
|
|
7437
|
-
name?: string | undefined;
|
|
7438
|
-
replaceExistName?: boolean | undefined;
|
|
7439
|
-
tags?: string[] | undefined;
|
|
7440
|
-
onChain?: boolean | undefined;
|
|
7441
|
-
}[];
|
|
7381
|
+
guards: string[];
|
|
7442
7382
|
} | {
|
|
7443
7383
|
op: "clear";
|
|
7444
7384
|
} | undefined;
|
|
@@ -7509,7 +7449,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
7509
7449
|
onChain?: boolean | undefined;
|
|
7510
7450
|
} | undefined;
|
|
7511
7451
|
};
|
|
7512
|
-
description
|
|
7452
|
+
description?: string | undefined;
|
|
7513
7453
|
owner_receive?: {
|
|
7514
7454
|
received: {
|
|
7515
7455
|
id: string;
|
|
@@ -7542,12 +7482,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
7542
7482
|
}[];
|
|
7543
7483
|
} | {
|
|
7544
7484
|
op: "remove";
|
|
7545
|
-
guards:
|
|
7546
|
-
name?: string | undefined;
|
|
7547
|
-
replaceExistName?: boolean | undefined;
|
|
7548
|
-
tags?: string[] | undefined;
|
|
7549
|
-
onChain?: boolean | undefined;
|
|
7550
|
-
}[];
|
|
7485
|
+
guards: string[];
|
|
7551
7486
|
} | {
|
|
7552
7487
|
op: "clear";
|
|
7553
7488
|
} | undefined;
|
|
@@ -7565,12 +7500,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
7565
7500
|
}[];
|
|
7566
7501
|
} | {
|
|
7567
7502
|
op: "remove";
|
|
7568
|
-
guards:
|
|
7569
|
-
name?: string | undefined;
|
|
7570
|
-
replaceExistName?: boolean | undefined;
|
|
7571
|
-
tags?: string[] | undefined;
|
|
7572
|
-
onChain?: boolean | undefined;
|
|
7573
|
-
}[];
|
|
7503
|
+
guards: string[];
|
|
7574
7504
|
} | {
|
|
7575
7505
|
op: "clear";
|
|
7576
7506
|
} | undefined;
|
|
@@ -7842,7 +7772,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
7842
7772
|
onChain?: boolean | undefined;
|
|
7843
7773
|
} | undefined;
|
|
7844
7774
|
};
|
|
7845
|
-
description
|
|
7775
|
+
description?: string | undefined;
|
|
7846
7776
|
owner_receive?: {
|
|
7847
7777
|
received: {
|
|
7848
7778
|
id: string;
|
|
@@ -7875,12 +7805,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
7875
7805
|
}[];
|
|
7876
7806
|
} | {
|
|
7877
7807
|
op: "remove";
|
|
7878
|
-
guards:
|
|
7879
|
-
name?: string | undefined;
|
|
7880
|
-
replaceExistName?: boolean | undefined;
|
|
7881
|
-
tags?: string[] | undefined;
|
|
7882
|
-
onChain?: boolean | undefined;
|
|
7883
|
-
}[];
|
|
7808
|
+
guards: string[];
|
|
7884
7809
|
} | {
|
|
7885
7810
|
op: "clear";
|
|
7886
7811
|
} | undefined;
|
|
@@ -7898,12 +7823,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
7898
7823
|
}[];
|
|
7899
7824
|
} | {
|
|
7900
7825
|
op: "remove";
|
|
7901
|
-
guards:
|
|
7902
|
-
name?: string | undefined;
|
|
7903
|
-
replaceExistName?: boolean | undefined;
|
|
7904
|
-
tags?: string[] | undefined;
|
|
7905
|
-
onChain?: boolean | undefined;
|
|
7906
|
-
}[];
|
|
7826
|
+
guards: string[];
|
|
7907
7827
|
} | {
|
|
7908
7828
|
op: "clear";
|
|
7909
7829
|
} | undefined;
|
|
@@ -8011,7 +7931,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
8011
7931
|
onChain?: boolean | undefined;
|
|
8012
7932
|
} | undefined;
|
|
8013
7933
|
};
|
|
8014
|
-
description
|
|
7934
|
+
description?: string | undefined;
|
|
8015
7935
|
owner_receive?: {
|
|
8016
7936
|
received: {
|
|
8017
7937
|
id: string;
|
|
@@ -8044,12 +7964,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
8044
7964
|
}[];
|
|
8045
7965
|
} | {
|
|
8046
7966
|
op: "remove";
|
|
8047
|
-
guards:
|
|
8048
|
-
name?: string | undefined;
|
|
8049
|
-
replaceExistName?: boolean | undefined;
|
|
8050
|
-
tags?: string[] | undefined;
|
|
8051
|
-
onChain?: boolean | undefined;
|
|
8052
|
-
}[];
|
|
7967
|
+
guards: string[];
|
|
8053
7968
|
} | {
|
|
8054
7969
|
op: "clear";
|
|
8055
7970
|
} | undefined;
|
|
@@ -8067,12 +7982,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
8067
7982
|
}[];
|
|
8068
7983
|
} | {
|
|
8069
7984
|
op: "remove";
|
|
8070
|
-
guards:
|
|
8071
|
-
name?: string | undefined;
|
|
8072
|
-
replaceExistName?: boolean | undefined;
|
|
8073
|
-
tags?: string[] | undefined;
|
|
8074
|
-
onChain?: boolean | undefined;
|
|
8075
|
-
}[];
|
|
7985
|
+
guards: string[];
|
|
8076
7986
|
} | {
|
|
8077
7987
|
op: "clear";
|
|
8078
7988
|
} | undefined;
|
|
@@ -11100,7 +11010,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11100
11010
|
operation_type: z.ZodLiteral<"personal">;
|
|
11101
11011
|
data: z.ZodObject<{
|
|
11102
11012
|
description: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
11103
|
-
referrer: z.ZodOptional<z.ZodUnion<[z.ZodObject<{
|
|
11013
|
+
referrer: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
11104
11014
|
name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
11105
11015
|
local_mark_first: z.ZodOptional<z.ZodBoolean>;
|
|
11106
11016
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -11191,7 +11101,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11191
11101
|
mark: z.ZodOptional<z.ZodDiscriminatedUnion<"op", [z.ZodObject<{
|
|
11192
11102
|
op: z.ZodLiteral<"add">;
|
|
11193
11103
|
data: z.ZodArray<z.ZodObject<{
|
|
11194
|
-
address: z.ZodObject<{
|
|
11104
|
+
address: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
11195
11105
|
name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
11196
11106
|
local_mark_first: z.ZodOptional<z.ZodBoolean>;
|
|
11197
11107
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -11200,18 +11110,18 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11200
11110
|
}, {
|
|
11201
11111
|
name_or_address?: string | undefined;
|
|
11202
11112
|
local_mark_first?: boolean | undefined;
|
|
11203
|
-
}>;
|
|
11113
|
+
}>]>;
|
|
11204
11114
|
name: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
11205
11115
|
tags: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
|
|
11206
11116
|
}, "strict", z.ZodTypeAny, {
|
|
11207
|
-
address: {
|
|
11117
|
+
address: string | {
|
|
11208
11118
|
name_or_address?: string | undefined;
|
|
11209
11119
|
local_mark_first?: boolean | undefined;
|
|
11210
11120
|
};
|
|
11211
11121
|
name?: string | undefined;
|
|
11212
11122
|
tags?: string[] | undefined;
|
|
11213
11123
|
}, {
|
|
11214
|
-
address: {
|
|
11124
|
+
address: string | {
|
|
11215
11125
|
name_or_address?: string | undefined;
|
|
11216
11126
|
local_mark_first?: boolean | undefined;
|
|
11217
11127
|
};
|
|
@@ -11220,7 +11130,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11220
11130
|
}>, "many">;
|
|
11221
11131
|
}, "strict", z.ZodTypeAny, {
|
|
11222
11132
|
data: {
|
|
11223
|
-
address: {
|
|
11133
|
+
address: string | {
|
|
11224
11134
|
name_or_address?: string | undefined;
|
|
11225
11135
|
local_mark_first?: boolean | undefined;
|
|
11226
11136
|
};
|
|
@@ -11230,7 +11140,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11230
11140
|
op: "add";
|
|
11231
11141
|
}, {
|
|
11232
11142
|
data: {
|
|
11233
|
-
address: {
|
|
11143
|
+
address: string | {
|
|
11234
11144
|
name_or_address?: string | undefined;
|
|
11235
11145
|
local_mark_first?: boolean | undefined;
|
|
11236
11146
|
};
|
|
@@ -11241,7 +11151,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11241
11151
|
}>, z.ZodObject<{
|
|
11242
11152
|
op: z.ZodLiteral<"remove">;
|
|
11243
11153
|
data: z.ZodArray<z.ZodObject<{
|
|
11244
|
-
address: z.ZodObject<{
|
|
11154
|
+
address: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
11245
11155
|
name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
11246
11156
|
local_mark_first: z.ZodOptional<z.ZodBoolean>;
|
|
11247
11157
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -11250,16 +11160,16 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11250
11160
|
}, {
|
|
11251
11161
|
name_or_address?: string | undefined;
|
|
11252
11162
|
local_mark_first?: boolean | undefined;
|
|
11253
|
-
}>;
|
|
11163
|
+
}>]>;
|
|
11254
11164
|
tags: z.ZodOptional<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">>;
|
|
11255
11165
|
}, "strict", z.ZodTypeAny, {
|
|
11256
|
-
address: {
|
|
11166
|
+
address: string | {
|
|
11257
11167
|
name_or_address?: string | undefined;
|
|
11258
11168
|
local_mark_first?: boolean | undefined;
|
|
11259
11169
|
};
|
|
11260
11170
|
tags?: string[] | undefined;
|
|
11261
11171
|
}, {
|
|
11262
|
-
address: {
|
|
11172
|
+
address: string | {
|
|
11263
11173
|
name_or_address?: string | undefined;
|
|
11264
11174
|
local_mark_first?: boolean | undefined;
|
|
11265
11175
|
};
|
|
@@ -11267,7 +11177,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11267
11177
|
}>, "many">;
|
|
11268
11178
|
}, "strict", z.ZodTypeAny, {
|
|
11269
11179
|
data: {
|
|
11270
|
-
address: {
|
|
11180
|
+
address: string | {
|
|
11271
11181
|
name_or_address?: string | undefined;
|
|
11272
11182
|
local_mark_first?: boolean | undefined;
|
|
11273
11183
|
};
|
|
@@ -11276,7 +11186,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11276
11186
|
op: "remove";
|
|
11277
11187
|
}, {
|
|
11278
11188
|
data: {
|
|
11279
|
-
address: {
|
|
11189
|
+
address: string | {
|
|
11280
11190
|
name_or_address?: string | undefined;
|
|
11281
11191
|
local_mark_first?: boolean | undefined;
|
|
11282
11192
|
};
|
|
@@ -11285,7 +11195,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11285
11195
|
op: "remove";
|
|
11286
11196
|
}>, z.ZodObject<{
|
|
11287
11197
|
op: z.ZodLiteral<"clear">;
|
|
11288
|
-
address: z.ZodObject<{
|
|
11198
|
+
address: z.ZodUnion<[z.ZodArray<z.ZodString, "many">, z.ZodObject<{
|
|
11289
11199
|
entities: z.ZodArray<z.ZodObject<{
|
|
11290
11200
|
name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
11291
11201
|
local_mark_first: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -11309,7 +11219,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11309
11219
|
local_mark_first?: boolean | undefined;
|
|
11310
11220
|
}[];
|
|
11311
11221
|
check_all_founded?: boolean | undefined;
|
|
11312
|
-
}>;
|
|
11222
|
+
}>]>;
|
|
11313
11223
|
}, "strict", z.ZodTypeAny, {
|
|
11314
11224
|
address: {
|
|
11315
11225
|
entities: {
|
|
@@ -11317,7 +11227,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11317
11227
|
local_mark_first?: boolean | undefined;
|
|
11318
11228
|
}[];
|
|
11319
11229
|
check_all_founded?: boolean | undefined;
|
|
11320
|
-
};
|
|
11230
|
+
} | string[];
|
|
11321
11231
|
op: "clear";
|
|
11322
11232
|
}, {
|
|
11323
11233
|
address: {
|
|
@@ -11326,11 +11236,11 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11326
11236
|
local_mark_first?: boolean | undefined;
|
|
11327
11237
|
}[];
|
|
11328
11238
|
check_all_founded?: boolean | undefined;
|
|
11329
|
-
};
|
|
11239
|
+
} | string[];
|
|
11330
11240
|
op: "clear";
|
|
11331
11241
|
}>, z.ZodObject<{
|
|
11332
11242
|
op: z.ZodLiteral<"transfer">;
|
|
11333
|
-
to: z.ZodObject<{
|
|
11243
|
+
to: z.ZodUnion<[z.ZodString, z.ZodObject<{
|
|
11334
11244
|
name_or_address: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
11335
11245
|
local_mark_first: z.ZodOptional<z.ZodBoolean>;
|
|
11336
11246
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -11339,16 +11249,16 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11339
11249
|
}, {
|
|
11340
11250
|
name_or_address?: string | undefined;
|
|
11341
11251
|
local_mark_first?: boolean | undefined;
|
|
11342
|
-
}>;
|
|
11252
|
+
}>]>;
|
|
11343
11253
|
}, "strict", z.ZodTypeAny, {
|
|
11344
11254
|
op: "transfer";
|
|
11345
|
-
to: {
|
|
11255
|
+
to: string | {
|
|
11346
11256
|
name_or_address?: string | undefined;
|
|
11347
11257
|
local_mark_first?: boolean | undefined;
|
|
11348
11258
|
};
|
|
11349
11259
|
}, {
|
|
11350
11260
|
op: "transfer";
|
|
11351
|
-
to: {
|
|
11261
|
+
to: string | {
|
|
11352
11262
|
name_or_address?: string | undefined;
|
|
11353
11263
|
local_mark_first?: boolean | undefined;
|
|
11354
11264
|
};
|
|
@@ -11370,7 +11280,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11370
11280
|
}>]>>;
|
|
11371
11281
|
}, "strict", z.ZodTypeAny, {
|
|
11372
11282
|
description?: string | undefined;
|
|
11373
|
-
referrer?: {
|
|
11283
|
+
referrer?: string | {
|
|
11374
11284
|
name_or_address?: string | undefined;
|
|
11375
11285
|
local_mark_first?: boolean | undefined;
|
|
11376
11286
|
} | null | undefined;
|
|
@@ -11389,7 +11299,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11389
11299
|
} | undefined;
|
|
11390
11300
|
mark?: {
|
|
11391
11301
|
data: {
|
|
11392
|
-
address: {
|
|
11302
|
+
address: string | {
|
|
11393
11303
|
name_or_address?: string | undefined;
|
|
11394
11304
|
local_mark_first?: boolean | undefined;
|
|
11395
11305
|
};
|
|
@@ -11399,7 +11309,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11399
11309
|
op: "add";
|
|
11400
11310
|
} | {
|
|
11401
11311
|
data: {
|
|
11402
|
-
address: {
|
|
11312
|
+
address: string | {
|
|
11403
11313
|
name_or_address?: string | undefined;
|
|
11404
11314
|
local_mark_first?: boolean | undefined;
|
|
11405
11315
|
};
|
|
@@ -11413,11 +11323,11 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11413
11323
|
local_mark_first?: boolean | undefined;
|
|
11414
11324
|
}[];
|
|
11415
11325
|
check_all_founded?: boolean | undefined;
|
|
11416
|
-
};
|
|
11326
|
+
} | string[];
|
|
11417
11327
|
op: "clear";
|
|
11418
11328
|
} | {
|
|
11419
11329
|
op: "transfer";
|
|
11420
|
-
to: {
|
|
11330
|
+
to: string | {
|
|
11421
11331
|
name_or_address?: string | undefined;
|
|
11422
11332
|
local_mark_first?: boolean | undefined;
|
|
11423
11333
|
};
|
|
@@ -11429,7 +11339,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11429
11339
|
} | undefined;
|
|
11430
11340
|
}, {
|
|
11431
11341
|
description?: string | undefined;
|
|
11432
|
-
referrer?: {
|
|
11342
|
+
referrer?: string | {
|
|
11433
11343
|
name_or_address?: string | undefined;
|
|
11434
11344
|
local_mark_first?: boolean | undefined;
|
|
11435
11345
|
} | null | undefined;
|
|
@@ -11448,7 +11358,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11448
11358
|
} | undefined;
|
|
11449
11359
|
mark?: {
|
|
11450
11360
|
data: {
|
|
11451
|
-
address: {
|
|
11361
|
+
address: string | {
|
|
11452
11362
|
name_or_address?: string | undefined;
|
|
11453
11363
|
local_mark_first?: boolean | undefined;
|
|
11454
11364
|
};
|
|
@@ -11458,7 +11368,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11458
11368
|
op: "add";
|
|
11459
11369
|
} | {
|
|
11460
11370
|
data: {
|
|
11461
|
-
address: {
|
|
11371
|
+
address: string | {
|
|
11462
11372
|
name_or_address?: string | undefined;
|
|
11463
11373
|
local_mark_first?: boolean | undefined;
|
|
11464
11374
|
};
|
|
@@ -11472,11 +11382,11 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11472
11382
|
local_mark_first?: boolean | undefined;
|
|
11473
11383
|
}[];
|
|
11474
11384
|
check_all_founded?: boolean | undefined;
|
|
11475
|
-
};
|
|
11385
|
+
} | string[];
|
|
11476
11386
|
op: "clear";
|
|
11477
11387
|
} | {
|
|
11478
11388
|
op: "transfer";
|
|
11479
|
-
to: {
|
|
11389
|
+
to: string | {
|
|
11480
11390
|
name_or_address?: string | undefined;
|
|
11481
11391
|
local_mark_first?: boolean | undefined;
|
|
11482
11392
|
};
|
|
@@ -11509,7 +11419,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11509
11419
|
}, "strip", z.ZodTypeAny, {
|
|
11510
11420
|
data: {
|
|
11511
11421
|
description?: string | undefined;
|
|
11512
|
-
referrer?: {
|
|
11422
|
+
referrer?: string | {
|
|
11513
11423
|
name_or_address?: string | undefined;
|
|
11514
11424
|
local_mark_first?: boolean | undefined;
|
|
11515
11425
|
} | null | undefined;
|
|
@@ -11528,7 +11438,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11528
11438
|
} | undefined;
|
|
11529
11439
|
mark?: {
|
|
11530
11440
|
data: {
|
|
11531
|
-
address: {
|
|
11441
|
+
address: string | {
|
|
11532
11442
|
name_or_address?: string | undefined;
|
|
11533
11443
|
local_mark_first?: boolean | undefined;
|
|
11534
11444
|
};
|
|
@@ -11538,7 +11448,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11538
11448
|
op: "add";
|
|
11539
11449
|
} | {
|
|
11540
11450
|
data: {
|
|
11541
|
-
address: {
|
|
11451
|
+
address: string | {
|
|
11542
11452
|
name_or_address?: string | undefined;
|
|
11543
11453
|
local_mark_first?: boolean | undefined;
|
|
11544
11454
|
};
|
|
@@ -11552,11 +11462,11 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11552
11462
|
local_mark_first?: boolean | undefined;
|
|
11553
11463
|
}[];
|
|
11554
11464
|
check_all_founded?: boolean | undefined;
|
|
11555
|
-
};
|
|
11465
|
+
} | string[];
|
|
11556
11466
|
op: "clear";
|
|
11557
11467
|
} | {
|
|
11558
11468
|
op: "transfer";
|
|
11559
|
-
to: {
|
|
11469
|
+
to: string | {
|
|
11560
11470
|
name_or_address?: string | undefined;
|
|
11561
11471
|
local_mark_first?: boolean | undefined;
|
|
11562
11472
|
};
|
|
@@ -11578,7 +11488,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11578
11488
|
}, {
|
|
11579
11489
|
data: {
|
|
11580
11490
|
description?: string | undefined;
|
|
11581
|
-
referrer?: {
|
|
11491
|
+
referrer?: string | {
|
|
11582
11492
|
name_or_address?: string | undefined;
|
|
11583
11493
|
local_mark_first?: boolean | undefined;
|
|
11584
11494
|
} | null | undefined;
|
|
@@ -11597,7 +11507,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11597
11507
|
} | undefined;
|
|
11598
11508
|
mark?: {
|
|
11599
11509
|
data: {
|
|
11600
|
-
address: {
|
|
11510
|
+
address: string | {
|
|
11601
11511
|
name_or_address?: string | undefined;
|
|
11602
11512
|
local_mark_first?: boolean | undefined;
|
|
11603
11513
|
};
|
|
@@ -11607,7 +11517,7 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11607
11517
|
op: "add";
|
|
11608
11518
|
} | {
|
|
11609
11519
|
data: {
|
|
11610
|
-
address: {
|
|
11520
|
+
address: string | {
|
|
11611
11521
|
name_or_address?: string | undefined;
|
|
11612
11522
|
local_mark_first?: boolean | undefined;
|
|
11613
11523
|
};
|
|
@@ -11621,11 +11531,11 @@ declare const OnchainOperationsSchema: z.ZodDiscriminatedUnion<"operation_type",
|
|
|
11621
11531
|
local_mark_first?: boolean | undefined;
|
|
11622
11532
|
}[];
|
|
11623
11533
|
check_all_founded?: boolean | undefined;
|
|
11624
|
-
};
|
|
11534
|
+
} | string[];
|
|
11625
11535
|
op: "clear";
|
|
11626
11536
|
} | {
|
|
11627
11537
|
op: "transfer";
|
|
11628
|
-
to: {
|
|
11538
|
+
to: string | {
|
|
11629
11539
|
name_or_address?: string | undefined;
|
|
11630
11540
|
local_mark_first?: boolean | undefined;
|
|
11631
11541
|
};
|