@illalabs/interfaces 0.17.0 → 0.18.0-canary-beta-91509583
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.
|
@@ -672,6 +672,13 @@ export declare const SignatureRequestSchema: z.ZodDiscriminatedUnion<"signMethod
|
|
|
672
672
|
blocked?: boolean | undefined;
|
|
673
673
|
}>]>>;
|
|
674
674
|
}, z.ZodUnknown, "strip">>>;
|
|
675
|
+
/**
|
|
676
|
+
* Server-issued integrity HMAC binding this signature request to the
|
|
677
|
+
* issuing API. Clients must forward this field verbatim when calling
|
|
678
|
+
* sign endpoints; the server rejects requests with a missing or invalid
|
|
679
|
+
* HMAC.
|
|
680
|
+
*/
|
|
681
|
+
hmac: z.ZodString;
|
|
675
682
|
} & {
|
|
676
683
|
signMethod: z.ZodLiteral<"typedData">;
|
|
677
684
|
/** EIP-712 typed data to be signed */
|
|
@@ -709,6 +716,7 @@ export declare const SignatureRequestSchema: z.ZodDiscriminatedUnion<"signMethod
|
|
|
709
716
|
}, "strip", z.ZodTypeAny, {
|
|
710
717
|
id: string;
|
|
711
718
|
signerAddress: string;
|
|
719
|
+
hmac: string;
|
|
712
720
|
signMethod: "typedData";
|
|
713
721
|
typedData: {
|
|
714
722
|
message: Record<string, unknown>;
|
|
@@ -810,6 +818,7 @@ export declare const SignatureRequestSchema: z.ZodDiscriminatedUnion<"signMethod
|
|
|
810
818
|
}, {
|
|
811
819
|
id: string;
|
|
812
820
|
signerAddress: string;
|
|
821
|
+
hmac: string;
|
|
813
822
|
signMethod: "typedData";
|
|
814
823
|
typedData: {
|
|
815
824
|
message: Record<string, unknown>;
|
|
@@ -1175,6 +1184,13 @@ export declare const SignatureRequestSchema: z.ZodDiscriminatedUnion<"signMethod
|
|
|
1175
1184
|
blocked?: boolean | undefined;
|
|
1176
1185
|
}>]>>;
|
|
1177
1186
|
}, z.ZodUnknown, "strip">>>;
|
|
1187
|
+
/**
|
|
1188
|
+
* Server-issued integrity HMAC binding this signature request to the
|
|
1189
|
+
* issuing API. Clients must forward this field verbatim when calling
|
|
1190
|
+
* sign endpoints; the server rejects requests with a missing or invalid
|
|
1191
|
+
* HMAC.
|
|
1192
|
+
*/
|
|
1193
|
+
hmac: z.ZodString;
|
|
1178
1194
|
} & {
|
|
1179
1195
|
signMethod: z.ZodLiteral<"message">;
|
|
1180
1196
|
/** Raw hash to be signed */
|
|
@@ -1182,6 +1198,7 @@ export declare const SignatureRequestSchema: z.ZodDiscriminatedUnion<"signMethod
|
|
|
1182
1198
|
}, "strip", z.ZodTypeAny, {
|
|
1183
1199
|
id: string;
|
|
1184
1200
|
signerAddress: string;
|
|
1201
|
+
hmac: string;
|
|
1185
1202
|
signMethod: "message";
|
|
1186
1203
|
rawHash: string;
|
|
1187
1204
|
description?: string | undefined;
|
|
@@ -1275,6 +1292,7 @@ export declare const SignatureRequestSchema: z.ZodDiscriminatedUnion<"signMethod
|
|
|
1275
1292
|
}, {
|
|
1276
1293
|
id: string;
|
|
1277
1294
|
signerAddress: string;
|
|
1295
|
+
hmac: string;
|
|
1278
1296
|
signMethod: "message";
|
|
1279
1297
|
rawHash: string;
|
|
1280
1298
|
description?: string | undefined;
|
|
@@ -2620,13 +2638,22 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
2620
2638
|
explorerUrl?: string | undefined;
|
|
2621
2639
|
usdValue?: string | undefined;
|
|
2622
2640
|
}>>;
|
|
2641
|
+
/**
|
|
2642
|
+
* Server-issued integrity HMAC binding this transaction to the issuing
|
|
2643
|
+
* API. Clients must forward this field verbatim when calling sign or
|
|
2644
|
+
* broadcast endpoints; the server rejects requests with a missing or
|
|
2645
|
+
* invalid HMAC.
|
|
2646
|
+
*/
|
|
2647
|
+
hmac: z.ZodString;
|
|
2623
2648
|
}, "strip", z.ZodTypeAny, {
|
|
2649
|
+
hmac: string;
|
|
2624
2650
|
transaction: PrepareTransactionRequestReturnType;
|
|
2625
2651
|
metadata?: {
|
|
2626
2652
|
explorerUrl?: string | undefined;
|
|
2627
2653
|
usdValue?: string | undefined;
|
|
2628
2654
|
} | undefined;
|
|
2629
2655
|
}, {
|
|
2656
|
+
hmac: string;
|
|
2630
2657
|
transaction: PrepareTransactionRequestReturnType;
|
|
2631
2658
|
metadata?: {
|
|
2632
2659
|
explorerUrl?: string | undefined;
|
|
@@ -3041,6 +3068,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
3041
3068
|
}, "strip", z.ZodTypeAny, {
|
|
3042
3069
|
type: "BatchTransactions";
|
|
3043
3070
|
value: {
|
|
3071
|
+
hmac: string;
|
|
3044
3072
|
transaction: PrepareTransactionRequestReturnType;
|
|
3045
3073
|
metadata?: {
|
|
3046
3074
|
explorerUrl?: string | undefined;
|
|
@@ -3161,6 +3189,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
3161
3189
|
}, {
|
|
3162
3190
|
type: "BatchTransactions";
|
|
3163
3191
|
value: {
|
|
3192
|
+
hmac: string;
|
|
3164
3193
|
transaction: PrepareTransactionRequestReturnType;
|
|
3165
3194
|
metadata?: {
|
|
3166
3195
|
explorerUrl?: string | undefined;
|
|
@@ -3292,13 +3321,22 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
3292
3321
|
explorerUrl?: string | undefined;
|
|
3293
3322
|
usdValue?: string | undefined;
|
|
3294
3323
|
}>>;
|
|
3324
|
+
/**
|
|
3325
|
+
* Server-issued integrity HMAC binding this transaction to the issuing
|
|
3326
|
+
* API. Clients must forward this field verbatim when calling sign or
|
|
3327
|
+
* broadcast endpoints; the server rejects requests with a missing or
|
|
3328
|
+
* invalid HMAC.
|
|
3329
|
+
*/
|
|
3330
|
+
hmac: z.ZodString;
|
|
3295
3331
|
}, "strip", z.ZodTypeAny, {
|
|
3332
|
+
hmac: string;
|
|
3296
3333
|
transaction: PrepareTransactionRequestReturnType;
|
|
3297
3334
|
metadata?: {
|
|
3298
3335
|
explorerUrl?: string | undefined;
|
|
3299
3336
|
usdValue?: string | undefined;
|
|
3300
3337
|
} | undefined;
|
|
3301
3338
|
}, {
|
|
3339
|
+
hmac: string;
|
|
3302
3340
|
transaction: PrepareTransactionRequestReturnType;
|
|
3303
3341
|
metadata?: {
|
|
3304
3342
|
explorerUrl?: string | undefined;
|
|
@@ -3713,6 +3751,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
3713
3751
|
}, "strip", z.ZodTypeAny, {
|
|
3714
3752
|
type: "SingleTransaction";
|
|
3715
3753
|
value: {
|
|
3754
|
+
hmac: string;
|
|
3716
3755
|
transaction: PrepareTransactionRequestReturnType;
|
|
3717
3756
|
metadata?: {
|
|
3718
3757
|
explorerUrl?: string | undefined;
|
|
@@ -3833,6 +3872,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
3833
3872
|
}, {
|
|
3834
3873
|
type: "SingleTransaction";
|
|
3835
3874
|
value: {
|
|
3875
|
+
hmac: string;
|
|
3836
3876
|
transaction: PrepareTransactionRequestReturnType;
|
|
3837
3877
|
metadata?: {
|
|
3838
3878
|
explorerUrl?: string | undefined;
|
|
@@ -4220,6 +4260,13 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
4220
4260
|
blocked?: boolean | undefined;
|
|
4221
4261
|
}>]>>;
|
|
4222
4262
|
}, z.ZodUnknown, "strip">>>;
|
|
4263
|
+
/**
|
|
4264
|
+
* Server-issued integrity HMAC binding this signature request to the
|
|
4265
|
+
* issuing API. Clients must forward this field verbatim when calling
|
|
4266
|
+
* sign endpoints; the server rejects requests with a missing or invalid
|
|
4267
|
+
* HMAC.
|
|
4268
|
+
*/
|
|
4269
|
+
hmac: z.ZodString;
|
|
4223
4270
|
} & {
|
|
4224
4271
|
signMethod: z.ZodLiteral<"typedData">;
|
|
4225
4272
|
/** EIP-712 typed data to be signed */
|
|
@@ -4257,6 +4304,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
4257
4304
|
}, "strip", z.ZodTypeAny, {
|
|
4258
4305
|
id: string;
|
|
4259
4306
|
signerAddress: string;
|
|
4307
|
+
hmac: string;
|
|
4260
4308
|
signMethod: "typedData";
|
|
4261
4309
|
typedData: {
|
|
4262
4310
|
message: Record<string, unknown>;
|
|
@@ -4358,6 +4406,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
4358
4406
|
}, {
|
|
4359
4407
|
id: string;
|
|
4360
4408
|
signerAddress: string;
|
|
4409
|
+
hmac: string;
|
|
4361
4410
|
signMethod: "typedData";
|
|
4362
4411
|
typedData: {
|
|
4363
4412
|
message: Record<string, unknown>;
|
|
@@ -4723,6 +4772,13 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
4723
4772
|
blocked?: boolean | undefined;
|
|
4724
4773
|
}>]>>;
|
|
4725
4774
|
}, z.ZodUnknown, "strip">>>;
|
|
4775
|
+
/**
|
|
4776
|
+
* Server-issued integrity HMAC binding this signature request to the
|
|
4777
|
+
* issuing API. Clients must forward this field verbatim when calling
|
|
4778
|
+
* sign endpoints; the server rejects requests with a missing or invalid
|
|
4779
|
+
* HMAC.
|
|
4780
|
+
*/
|
|
4781
|
+
hmac: z.ZodString;
|
|
4726
4782
|
} & {
|
|
4727
4783
|
signMethod: z.ZodLiteral<"message">;
|
|
4728
4784
|
/** Raw hash to be signed */
|
|
@@ -4730,6 +4786,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
4730
4786
|
}, "strip", z.ZodTypeAny, {
|
|
4731
4787
|
id: string;
|
|
4732
4788
|
signerAddress: string;
|
|
4789
|
+
hmac: string;
|
|
4733
4790
|
signMethod: "message";
|
|
4734
4791
|
rawHash: string;
|
|
4735
4792
|
description?: string | undefined;
|
|
@@ -4823,6 +4880,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
4823
4880
|
}, {
|
|
4824
4881
|
id: string;
|
|
4825
4882
|
signerAddress: string;
|
|
4883
|
+
hmac: string;
|
|
4826
4884
|
signMethod: "message";
|
|
4827
4885
|
rawHash: string;
|
|
4828
4886
|
description?: string | undefined;
|
|
@@ -4918,6 +4976,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
4918
4976
|
signatureRequests: ({
|
|
4919
4977
|
id: string;
|
|
4920
4978
|
signerAddress: string;
|
|
4979
|
+
hmac: string;
|
|
4921
4980
|
signMethod: "typedData";
|
|
4922
4981
|
typedData: {
|
|
4923
4982
|
message: Record<string, unknown>;
|
|
@@ -5019,6 +5078,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
5019
5078
|
} | {
|
|
5020
5079
|
id: string;
|
|
5021
5080
|
signerAddress: string;
|
|
5081
|
+
hmac: string;
|
|
5022
5082
|
signMethod: "message";
|
|
5023
5083
|
rawHash: string;
|
|
5024
5084
|
description?: string | undefined;
|
|
@@ -5114,6 +5174,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
5114
5174
|
signatureRequests: ({
|
|
5115
5175
|
id: string;
|
|
5116
5176
|
signerAddress: string;
|
|
5177
|
+
hmac: string;
|
|
5117
5178
|
signMethod: "typedData";
|
|
5118
5179
|
typedData: {
|
|
5119
5180
|
message: Record<string, unknown>;
|
|
@@ -5215,6 +5276,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
5215
5276
|
} | {
|
|
5216
5277
|
id: string;
|
|
5217
5278
|
signerAddress: string;
|
|
5279
|
+
hmac: string;
|
|
5218
5280
|
signMethod: "message";
|
|
5219
5281
|
rawHash: string;
|
|
5220
5282
|
description?: string | undefined;
|
|
@@ -5718,6 +5780,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
5718
5780
|
signatureRequests: ({
|
|
5719
5781
|
id: string;
|
|
5720
5782
|
signerAddress: string;
|
|
5783
|
+
hmac: string;
|
|
5721
5784
|
signMethod: "typedData";
|
|
5722
5785
|
typedData: {
|
|
5723
5786
|
message: Record<string, unknown>;
|
|
@@ -5819,6 +5882,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
5819
5882
|
} | {
|
|
5820
5883
|
id: string;
|
|
5821
5884
|
signerAddress: string;
|
|
5885
|
+
hmac: string;
|
|
5822
5886
|
signMethod: "message";
|
|
5823
5887
|
rawHash: string;
|
|
5824
5888
|
description?: string | undefined;
|
|
@@ -6028,6 +6092,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
6028
6092
|
signatureRequests: ({
|
|
6029
6093
|
id: string;
|
|
6030
6094
|
signerAddress: string;
|
|
6095
|
+
hmac: string;
|
|
6031
6096
|
signMethod: "typedData";
|
|
6032
6097
|
typedData: {
|
|
6033
6098
|
message: Record<string, unknown>;
|
|
@@ -6129,6 +6194,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
6129
6194
|
} | {
|
|
6130
6195
|
id: string;
|
|
6131
6196
|
signerAddress: string;
|
|
6197
|
+
hmac: string;
|
|
6132
6198
|
signMethod: "message";
|
|
6133
6199
|
rawHash: string;
|
|
6134
6200
|
description?: string | undefined;
|
|
@@ -6348,13 +6414,22 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
6348
6414
|
explorerUrl?: string | undefined;
|
|
6349
6415
|
usdValue?: string | undefined;
|
|
6350
6416
|
}>>;
|
|
6417
|
+
/**
|
|
6418
|
+
* Server-issued integrity HMAC binding this transaction to the issuing
|
|
6419
|
+
* API. Clients must forward this field verbatim when calling sign or
|
|
6420
|
+
* broadcast endpoints; the server rejects requests with a missing or
|
|
6421
|
+
* invalid HMAC.
|
|
6422
|
+
*/
|
|
6423
|
+
hmac: z.ZodString;
|
|
6351
6424
|
}, "strip", z.ZodTypeAny, {
|
|
6425
|
+
hmac: string;
|
|
6352
6426
|
transaction: PrepareTransactionRequestReturnType;
|
|
6353
6427
|
metadata?: {
|
|
6354
6428
|
explorerUrl?: string | undefined;
|
|
6355
6429
|
usdValue?: string | undefined;
|
|
6356
6430
|
} | undefined;
|
|
6357
6431
|
}, {
|
|
6432
|
+
hmac: string;
|
|
6358
6433
|
transaction: PrepareTransactionRequestReturnType;
|
|
6359
6434
|
metadata?: {
|
|
6360
6435
|
explorerUrl?: string | undefined;
|
|
@@ -6769,6 +6844,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
6769
6844
|
}, "strip", z.ZodTypeAny, {
|
|
6770
6845
|
type: "SingleTransaction";
|
|
6771
6846
|
value: {
|
|
6847
|
+
hmac: string;
|
|
6772
6848
|
transaction: PrepareTransactionRequestReturnType;
|
|
6773
6849
|
metadata?: {
|
|
6774
6850
|
explorerUrl?: string | undefined;
|
|
@@ -6889,6 +6965,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
6889
6965
|
}, {
|
|
6890
6966
|
type: "SingleTransaction";
|
|
6891
6967
|
value: {
|
|
6968
|
+
hmac: string;
|
|
6892
6969
|
transaction: PrepareTransactionRequestReturnType;
|
|
6893
6970
|
metadata?: {
|
|
6894
6971
|
explorerUrl?: string | undefined;
|
|
@@ -7020,13 +7097,22 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
7020
7097
|
explorerUrl?: string | undefined;
|
|
7021
7098
|
usdValue?: string | undefined;
|
|
7022
7099
|
}>>;
|
|
7100
|
+
/**
|
|
7101
|
+
* Server-issued integrity HMAC binding this transaction to the issuing
|
|
7102
|
+
* API. Clients must forward this field verbatim when calling sign or
|
|
7103
|
+
* broadcast endpoints; the server rejects requests with a missing or
|
|
7104
|
+
* invalid HMAC.
|
|
7105
|
+
*/
|
|
7106
|
+
hmac: z.ZodString;
|
|
7023
7107
|
}, "strip", z.ZodTypeAny, {
|
|
7108
|
+
hmac: string;
|
|
7024
7109
|
transaction: PrepareTransactionRequestReturnType;
|
|
7025
7110
|
metadata?: {
|
|
7026
7111
|
explorerUrl?: string | undefined;
|
|
7027
7112
|
usdValue?: string | undefined;
|
|
7028
7113
|
} | undefined;
|
|
7029
7114
|
}, {
|
|
7115
|
+
hmac: string;
|
|
7030
7116
|
transaction: PrepareTransactionRequestReturnType;
|
|
7031
7117
|
metadata?: {
|
|
7032
7118
|
explorerUrl?: string | undefined;
|
|
@@ -7441,6 +7527,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
7441
7527
|
}, "strip", z.ZodTypeAny, {
|
|
7442
7528
|
type: "BatchTransactions";
|
|
7443
7529
|
value: {
|
|
7530
|
+
hmac: string;
|
|
7444
7531
|
transaction: PrepareTransactionRequestReturnType;
|
|
7445
7532
|
metadata?: {
|
|
7446
7533
|
explorerUrl?: string | undefined;
|
|
@@ -7561,6 +7648,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
7561
7648
|
}, {
|
|
7562
7649
|
type: "BatchTransactions";
|
|
7563
7650
|
value: {
|
|
7651
|
+
hmac: string;
|
|
7564
7652
|
transaction: PrepareTransactionRequestReturnType;
|
|
7565
7653
|
metadata?: {
|
|
7566
7654
|
explorerUrl?: string | undefined;
|
|
@@ -7948,6 +8036,13 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
7948
8036
|
blocked?: boolean | undefined;
|
|
7949
8037
|
}>]>>;
|
|
7950
8038
|
}, z.ZodUnknown, "strip">>>;
|
|
8039
|
+
/**
|
|
8040
|
+
* Server-issued integrity HMAC binding this signature request to the
|
|
8041
|
+
* issuing API. Clients must forward this field verbatim when calling
|
|
8042
|
+
* sign endpoints; the server rejects requests with a missing or invalid
|
|
8043
|
+
* HMAC.
|
|
8044
|
+
*/
|
|
8045
|
+
hmac: z.ZodString;
|
|
7951
8046
|
} & {
|
|
7952
8047
|
signMethod: z.ZodLiteral<"typedData">;
|
|
7953
8048
|
/** EIP-712 typed data to be signed */
|
|
@@ -7985,6 +8080,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
7985
8080
|
}, "strip", z.ZodTypeAny, {
|
|
7986
8081
|
id: string;
|
|
7987
8082
|
signerAddress: string;
|
|
8083
|
+
hmac: string;
|
|
7988
8084
|
signMethod: "typedData";
|
|
7989
8085
|
typedData: {
|
|
7990
8086
|
message: Record<string, unknown>;
|
|
@@ -8086,6 +8182,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
8086
8182
|
}, {
|
|
8087
8183
|
id: string;
|
|
8088
8184
|
signerAddress: string;
|
|
8185
|
+
hmac: string;
|
|
8089
8186
|
signMethod: "typedData";
|
|
8090
8187
|
typedData: {
|
|
8091
8188
|
message: Record<string, unknown>;
|
|
@@ -8451,6 +8548,13 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
8451
8548
|
blocked?: boolean | undefined;
|
|
8452
8549
|
}>]>>;
|
|
8453
8550
|
}, z.ZodUnknown, "strip">>>;
|
|
8551
|
+
/**
|
|
8552
|
+
* Server-issued integrity HMAC binding this signature request to the
|
|
8553
|
+
* issuing API. Clients must forward this field verbatim when calling
|
|
8554
|
+
* sign endpoints; the server rejects requests with a missing or invalid
|
|
8555
|
+
* HMAC.
|
|
8556
|
+
*/
|
|
8557
|
+
hmac: z.ZodString;
|
|
8454
8558
|
} & {
|
|
8455
8559
|
signMethod: z.ZodLiteral<"message">;
|
|
8456
8560
|
/** Raw hash to be signed */
|
|
@@ -8458,6 +8562,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
8458
8562
|
}, "strip", z.ZodTypeAny, {
|
|
8459
8563
|
id: string;
|
|
8460
8564
|
signerAddress: string;
|
|
8565
|
+
hmac: string;
|
|
8461
8566
|
signMethod: "message";
|
|
8462
8567
|
rawHash: string;
|
|
8463
8568
|
description?: string | undefined;
|
|
@@ -8551,6 +8656,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
8551
8656
|
}, {
|
|
8552
8657
|
id: string;
|
|
8553
8658
|
signerAddress: string;
|
|
8659
|
+
hmac: string;
|
|
8554
8660
|
signMethod: "message";
|
|
8555
8661
|
rawHash: string;
|
|
8556
8662
|
description?: string | undefined;
|
|
@@ -8646,6 +8752,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
8646
8752
|
signatureRequests: ({
|
|
8647
8753
|
id: string;
|
|
8648
8754
|
signerAddress: string;
|
|
8755
|
+
hmac: string;
|
|
8649
8756
|
signMethod: "typedData";
|
|
8650
8757
|
typedData: {
|
|
8651
8758
|
message: Record<string, unknown>;
|
|
@@ -8747,6 +8854,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
8747
8854
|
} | {
|
|
8748
8855
|
id: string;
|
|
8749
8856
|
signerAddress: string;
|
|
8857
|
+
hmac: string;
|
|
8750
8858
|
signMethod: "message";
|
|
8751
8859
|
rawHash: string;
|
|
8752
8860
|
description?: string | undefined;
|
|
@@ -8842,6 +8950,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
8842
8950
|
signatureRequests: ({
|
|
8843
8951
|
id: string;
|
|
8844
8952
|
signerAddress: string;
|
|
8953
|
+
hmac: string;
|
|
8845
8954
|
signMethod: "typedData";
|
|
8846
8955
|
typedData: {
|
|
8847
8956
|
message: Record<string, unknown>;
|
|
@@ -8943,6 +9052,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
8943
9052
|
} | {
|
|
8944
9053
|
id: string;
|
|
8945
9054
|
signerAddress: string;
|
|
9055
|
+
hmac: string;
|
|
8946
9056
|
signMethod: "message";
|
|
8947
9057
|
rawHash: string;
|
|
8948
9058
|
description?: string | undefined;
|
|
@@ -9446,6 +9556,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
9446
9556
|
signatureRequests: ({
|
|
9447
9557
|
id: string;
|
|
9448
9558
|
signerAddress: string;
|
|
9559
|
+
hmac: string;
|
|
9449
9560
|
signMethod: "typedData";
|
|
9450
9561
|
typedData: {
|
|
9451
9562
|
message: Record<string, unknown>;
|
|
@@ -9547,6 +9658,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
9547
9658
|
} | {
|
|
9548
9659
|
id: string;
|
|
9549
9660
|
signerAddress: string;
|
|
9661
|
+
hmac: string;
|
|
9550
9662
|
signMethod: "message";
|
|
9551
9663
|
rawHash: string;
|
|
9552
9664
|
description?: string | undefined;
|
|
@@ -9756,6 +9868,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
9756
9868
|
signatureRequests: ({
|
|
9757
9869
|
id: string;
|
|
9758
9870
|
signerAddress: string;
|
|
9871
|
+
hmac: string;
|
|
9759
9872
|
signMethod: "typedData";
|
|
9760
9873
|
typedData: {
|
|
9761
9874
|
message: Record<string, unknown>;
|
|
@@ -9857,6 +9970,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
9857
9970
|
} | {
|
|
9858
9971
|
id: string;
|
|
9859
9972
|
signerAddress: string;
|
|
9973
|
+
hmac: string;
|
|
9860
9974
|
signMethod: "message";
|
|
9861
9975
|
rawHash: string;
|
|
9862
9976
|
description?: string | undefined;
|
|
@@ -10471,6 +10585,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
10471
10585
|
value: ({
|
|
10472
10586
|
type: "BatchTransactions";
|
|
10473
10587
|
value: {
|
|
10588
|
+
hmac: string;
|
|
10474
10589
|
transaction: PrepareTransactionRequestReturnType;
|
|
10475
10590
|
metadata?: {
|
|
10476
10591
|
explorerUrl?: string | undefined;
|
|
@@ -10591,6 +10706,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
10591
10706
|
} | {
|
|
10592
10707
|
type: "SingleTransaction";
|
|
10593
10708
|
value: {
|
|
10709
|
+
hmac: string;
|
|
10594
10710
|
transaction: PrepareTransactionRequestReturnType;
|
|
10595
10711
|
metadata?: {
|
|
10596
10712
|
explorerUrl?: string | undefined;
|
|
@@ -10714,6 +10830,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
10714
10830
|
signatureRequests: ({
|
|
10715
10831
|
id: string;
|
|
10716
10832
|
signerAddress: string;
|
|
10833
|
+
hmac: string;
|
|
10717
10834
|
signMethod: "typedData";
|
|
10718
10835
|
typedData: {
|
|
10719
10836
|
message: Record<string, unknown>;
|
|
@@ -10815,6 +10932,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
10815
10932
|
} | {
|
|
10816
10933
|
id: string;
|
|
10817
10934
|
signerAddress: string;
|
|
10935
|
+
hmac: string;
|
|
10818
10936
|
signMethod: "message";
|
|
10819
10937
|
rawHash: string;
|
|
10820
10938
|
description?: string | undefined;
|
|
@@ -11135,6 +11253,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
11135
11253
|
value: ({
|
|
11136
11254
|
type: "BatchTransactions";
|
|
11137
11255
|
value: {
|
|
11256
|
+
hmac: string;
|
|
11138
11257
|
transaction: PrepareTransactionRequestReturnType;
|
|
11139
11258
|
metadata?: {
|
|
11140
11259
|
explorerUrl?: string | undefined;
|
|
@@ -11255,6 +11374,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
11255
11374
|
} | {
|
|
11256
11375
|
type: "SingleTransaction";
|
|
11257
11376
|
value: {
|
|
11377
|
+
hmac: string;
|
|
11258
11378
|
transaction: PrepareTransactionRequestReturnType;
|
|
11259
11379
|
metadata?: {
|
|
11260
11380
|
explorerUrl?: string | undefined;
|
|
@@ -11378,6 +11498,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
11378
11498
|
signatureRequests: ({
|
|
11379
11499
|
id: string;
|
|
11380
11500
|
signerAddress: string;
|
|
11501
|
+
hmac: string;
|
|
11381
11502
|
signMethod: "typedData";
|
|
11382
11503
|
typedData: {
|
|
11383
11504
|
message: Record<string, unknown>;
|
|
@@ -11479,6 +11600,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
11479
11600
|
} | {
|
|
11480
11601
|
id: string;
|
|
11481
11602
|
signerAddress: string;
|
|
11603
|
+
hmac: string;
|
|
11482
11604
|
signMethod: "message";
|
|
11483
11605
|
rawHash: string;
|
|
11484
11606
|
description?: string | undefined;
|
|
@@ -12222,6 +12344,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
12222
12344
|
input: {
|
|
12223
12345
|
type: "BatchTransactions";
|
|
12224
12346
|
value: {
|
|
12347
|
+
hmac: string;
|
|
12225
12348
|
transaction: PrepareTransactionRequestReturnType;
|
|
12226
12349
|
metadata?: {
|
|
12227
12350
|
explorerUrl?: string | undefined;
|
|
@@ -12342,6 +12465,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
12342
12465
|
} | {
|
|
12343
12466
|
type: "SingleTransaction";
|
|
12344
12467
|
value: {
|
|
12468
|
+
hmac: string;
|
|
12345
12469
|
transaction: PrepareTransactionRequestReturnType;
|
|
12346
12470
|
metadata?: {
|
|
12347
12471
|
explorerUrl?: string | undefined;
|
|
@@ -12465,6 +12589,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
12465
12589
|
signatureRequests: ({
|
|
12466
12590
|
id: string;
|
|
12467
12591
|
signerAddress: string;
|
|
12592
|
+
hmac: string;
|
|
12468
12593
|
signMethod: "typedData";
|
|
12469
12594
|
typedData: {
|
|
12470
12595
|
message: Record<string, unknown>;
|
|
@@ -12566,6 +12691,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
12566
12691
|
} | {
|
|
12567
12692
|
id: string;
|
|
12568
12693
|
signerAddress: string;
|
|
12694
|
+
hmac: string;
|
|
12569
12695
|
signMethod: "message";
|
|
12570
12696
|
rawHash: string;
|
|
12571
12697
|
description?: string | undefined;
|
|
@@ -12774,6 +12900,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
12774
12900
|
value: ({
|
|
12775
12901
|
type: "BatchTransactions";
|
|
12776
12902
|
value: {
|
|
12903
|
+
hmac: string;
|
|
12777
12904
|
transaction: PrepareTransactionRequestReturnType;
|
|
12778
12905
|
metadata?: {
|
|
12779
12906
|
explorerUrl?: string | undefined;
|
|
@@ -12894,6 +13021,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
12894
13021
|
} | {
|
|
12895
13022
|
type: "SingleTransaction";
|
|
12896
13023
|
value: {
|
|
13024
|
+
hmac: string;
|
|
12897
13025
|
transaction: PrepareTransactionRequestReturnType;
|
|
12898
13026
|
metadata?: {
|
|
12899
13027
|
explorerUrl?: string | undefined;
|
|
@@ -13017,6 +13145,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
13017
13145
|
signatureRequests: ({
|
|
13018
13146
|
id: string;
|
|
13019
13147
|
signerAddress: string;
|
|
13148
|
+
hmac: string;
|
|
13020
13149
|
signMethod: "typedData";
|
|
13021
13150
|
typedData: {
|
|
13022
13151
|
message: Record<string, unknown>;
|
|
@@ -13118,6 +13247,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
13118
13247
|
} | {
|
|
13119
13248
|
id: string;
|
|
13120
13249
|
signerAddress: string;
|
|
13250
|
+
hmac: string;
|
|
13121
13251
|
signMethod: "message";
|
|
13122
13252
|
rawHash: string;
|
|
13123
13253
|
description?: string | undefined;
|
|
@@ -13511,6 +13641,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
13511
13641
|
input: {
|
|
13512
13642
|
type: "BatchTransactions";
|
|
13513
13643
|
value: {
|
|
13644
|
+
hmac: string;
|
|
13514
13645
|
transaction: PrepareTransactionRequestReturnType;
|
|
13515
13646
|
metadata?: {
|
|
13516
13647
|
explorerUrl?: string | undefined;
|
|
@@ -13631,6 +13762,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
13631
13762
|
} | {
|
|
13632
13763
|
type: "SingleTransaction";
|
|
13633
13764
|
value: {
|
|
13765
|
+
hmac: string;
|
|
13634
13766
|
transaction: PrepareTransactionRequestReturnType;
|
|
13635
13767
|
metadata?: {
|
|
13636
13768
|
explorerUrl?: string | undefined;
|
|
@@ -13754,6 +13886,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
13754
13886
|
signatureRequests: ({
|
|
13755
13887
|
id: string;
|
|
13756
13888
|
signerAddress: string;
|
|
13889
|
+
hmac: string;
|
|
13757
13890
|
signMethod: "typedData";
|
|
13758
13891
|
typedData: {
|
|
13759
13892
|
message: Record<string, unknown>;
|
|
@@ -13855,6 +13988,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
13855
13988
|
} | {
|
|
13856
13989
|
id: string;
|
|
13857
13990
|
signerAddress: string;
|
|
13991
|
+
hmac: string;
|
|
13858
13992
|
signMethod: "message";
|
|
13859
13993
|
rawHash: string;
|
|
13860
13994
|
description?: string | undefined;
|
|
@@ -14063,6 +14197,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
14063
14197
|
value: ({
|
|
14064
14198
|
type: "BatchTransactions";
|
|
14065
14199
|
value: {
|
|
14200
|
+
hmac: string;
|
|
14066
14201
|
transaction: PrepareTransactionRequestReturnType;
|
|
14067
14202
|
metadata?: {
|
|
14068
14203
|
explorerUrl?: string | undefined;
|
|
@@ -14183,6 +14318,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
14183
14318
|
} | {
|
|
14184
14319
|
type: "SingleTransaction";
|
|
14185
14320
|
value: {
|
|
14321
|
+
hmac: string;
|
|
14186
14322
|
transaction: PrepareTransactionRequestReturnType;
|
|
14187
14323
|
metadata?: {
|
|
14188
14324
|
explorerUrl?: string | undefined;
|
|
@@ -14306,6 +14442,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
14306
14442
|
signatureRequests: ({
|
|
14307
14443
|
id: string;
|
|
14308
14444
|
signerAddress: string;
|
|
14445
|
+
hmac: string;
|
|
14309
14446
|
signMethod: "typedData";
|
|
14310
14447
|
typedData: {
|
|
14311
14448
|
message: Record<string, unknown>;
|
|
@@ -14407,6 +14544,7 @@ export declare const PendingToolCallSchema: z.ZodObject<{
|
|
|
14407
14544
|
} | {
|
|
14408
14545
|
id: string;
|
|
14409
14546
|
signerAddress: string;
|
|
14547
|
+
hmac: string;
|
|
14410
14548
|
signMethod: "message";
|
|
14411
14549
|
rawHash: string;
|
|
14412
14550
|
description?: string | undefined;
|