@kasarlabs/transaction-mcp 0.1.0 → 0.1.1
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/build/schemas/index.d.ts +52 -67
- package/build/schemas/index.js +21 -23
- package/build/schemas/index.js.map +1 -1
- package/package.json +2 -2
package/build/schemas/index.d.ts
CHANGED
|
@@ -4,12 +4,12 @@ export declare const declareContractSchema: z.ZodObject<{
|
|
|
4
4
|
classHash: z.ZodOptional<z.ZodString>;
|
|
5
5
|
compiledClassHash: z.ZodOptional<z.ZodString>;
|
|
6
6
|
}, "strip", z.ZodTypeAny, {
|
|
7
|
-
classHash?: string | undefined;
|
|
8
7
|
contract?: any;
|
|
8
|
+
classHash?: string | undefined;
|
|
9
9
|
compiledClassHash?: string | undefined;
|
|
10
10
|
}, {
|
|
11
|
-
classHash?: string | undefined;
|
|
12
11
|
contract?: any;
|
|
12
|
+
classHash?: string | undefined;
|
|
13
13
|
compiledClassHash?: string | undefined;
|
|
14
14
|
}>;
|
|
15
15
|
export declare const simulateInvokeTransactionSchema: z.ZodObject<{
|
|
@@ -17,113 +17,104 @@ export declare const simulateInvokeTransactionSchema: z.ZodObject<{
|
|
|
17
17
|
payloads: z.ZodArray<z.ZodObject<{
|
|
18
18
|
contractAddress: z.ZodString;
|
|
19
19
|
entrypoint: z.ZodString;
|
|
20
|
-
calldata: z.ZodOptional<z.
|
|
20
|
+
calldata: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
21
21
|
}, "strip", z.ZodTypeAny, {
|
|
22
22
|
contractAddress: string;
|
|
23
23
|
entrypoint: string;
|
|
24
|
-
calldata?: string[] |
|
|
24
|
+
calldata?: string[] | undefined;
|
|
25
25
|
}, {
|
|
26
26
|
contractAddress: string;
|
|
27
27
|
entrypoint: string;
|
|
28
|
-
calldata?: string[] |
|
|
28
|
+
calldata?: string[] | undefined;
|
|
29
29
|
}>, "many">;
|
|
30
30
|
}, "strip", z.ZodTypeAny, {
|
|
31
31
|
accountAddress: string;
|
|
32
32
|
payloads: {
|
|
33
33
|
contractAddress: string;
|
|
34
34
|
entrypoint: string;
|
|
35
|
-
calldata?: string[] |
|
|
35
|
+
calldata?: string[] | undefined;
|
|
36
36
|
}[];
|
|
37
37
|
}, {
|
|
38
38
|
accountAddress: string;
|
|
39
39
|
payloads: {
|
|
40
40
|
contractAddress: string;
|
|
41
41
|
entrypoint: string;
|
|
42
|
-
calldata?: string[] |
|
|
42
|
+
calldata?: string[] | undefined;
|
|
43
43
|
}[];
|
|
44
44
|
}>;
|
|
45
45
|
export declare const simulateDeployAccountTransactionSchema: z.ZodObject<{
|
|
46
46
|
accountAddress: z.ZodString;
|
|
47
47
|
payloads: z.ZodArray<z.ZodObject<{
|
|
48
48
|
classHash: z.ZodString;
|
|
49
|
-
constructorCalldata: z.ZodOptional<z.
|
|
50
|
-
addressSalt: z.ZodOptional<z.
|
|
49
|
+
constructorCalldata: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
50
|
+
addressSalt: z.ZodOptional<z.ZodString>;
|
|
51
51
|
contractAddressSchema: z.ZodOptional<z.ZodString>;
|
|
52
52
|
}, "strip", z.ZodTypeAny, {
|
|
53
53
|
classHash: string;
|
|
54
|
-
|
|
55
|
-
|
|
54
|
+
constructorCalldata?: string[] | undefined;
|
|
55
|
+
addressSalt?: string | undefined;
|
|
56
56
|
contractAddressSchema?: string | undefined;
|
|
57
57
|
}, {
|
|
58
58
|
classHash: string;
|
|
59
|
-
|
|
60
|
-
|
|
59
|
+
constructorCalldata?: string[] | undefined;
|
|
60
|
+
addressSalt?: string | undefined;
|
|
61
61
|
contractAddressSchema?: string | undefined;
|
|
62
62
|
}>, "many">;
|
|
63
63
|
}, "strip", z.ZodTypeAny, {
|
|
64
64
|
accountAddress: string;
|
|
65
65
|
payloads: {
|
|
66
66
|
classHash: string;
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
constructorCalldata?: string[] | undefined;
|
|
68
|
+
addressSalt?: string | undefined;
|
|
69
69
|
contractAddressSchema?: string | undefined;
|
|
70
70
|
}[];
|
|
71
71
|
}, {
|
|
72
72
|
accountAddress: string;
|
|
73
73
|
payloads: {
|
|
74
74
|
classHash: string;
|
|
75
|
-
|
|
76
|
-
|
|
75
|
+
constructorCalldata?: string[] | undefined;
|
|
76
|
+
addressSalt?: string | undefined;
|
|
77
77
|
contractAddressSchema?: string | undefined;
|
|
78
78
|
}[];
|
|
79
79
|
}>;
|
|
80
80
|
export declare const simulateDeployTransactionSchema: z.ZodObject<{
|
|
81
81
|
accountAddress: z.ZodString;
|
|
82
82
|
payloads: z.ZodArray<z.ZodObject<{
|
|
83
|
-
classHash: z.
|
|
84
|
-
addressSalt: z.ZodOptional<z.
|
|
85
|
-
unique: z.ZodOptional<z.
|
|
86
|
-
constructorCalldata: z.ZodOptional<z.
|
|
83
|
+
classHash: z.ZodString;
|
|
84
|
+
addressSalt: z.ZodOptional<z.ZodString>;
|
|
85
|
+
unique: z.ZodOptional<z.ZodString>;
|
|
86
|
+
constructorCalldata: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
87
87
|
}, "strip", z.ZodTypeAny, {
|
|
88
|
-
classHash: string
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
88
|
+
classHash: string;
|
|
89
|
+
constructorCalldata?: string[] | undefined;
|
|
90
|
+
addressSalt?: string | undefined;
|
|
91
|
+
unique?: string | undefined;
|
|
92
92
|
}, {
|
|
93
|
-
classHash: string
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
93
|
+
classHash: string;
|
|
94
|
+
constructorCalldata?: string[] | undefined;
|
|
95
|
+
addressSalt?: string | undefined;
|
|
96
|
+
unique?: string | undefined;
|
|
97
97
|
}>, "many">;
|
|
98
98
|
}, "strip", z.ZodTypeAny, {
|
|
99
99
|
accountAddress: string;
|
|
100
100
|
payloads: {
|
|
101
|
-
classHash: string
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
101
|
+
classHash: string;
|
|
102
|
+
constructorCalldata?: string[] | undefined;
|
|
103
|
+
addressSalt?: string | undefined;
|
|
104
|
+
unique?: string | undefined;
|
|
105
105
|
}[];
|
|
106
106
|
}, {
|
|
107
107
|
accountAddress: string;
|
|
108
108
|
payloads: {
|
|
109
|
-
classHash: string
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
109
|
+
classHash: string;
|
|
110
|
+
constructorCalldata?: string[] | undefined;
|
|
111
|
+
addressSalt?: string | undefined;
|
|
112
|
+
unique?: string | undefined;
|
|
113
113
|
}[];
|
|
114
114
|
}>;
|
|
115
115
|
export declare const simulateDeclareTransactionSchema: z.ZodObject<{
|
|
116
116
|
accountAddress: z.ZodString;
|
|
117
|
-
contract: z.
|
|
118
|
-
program: z.ZodAny;
|
|
119
|
-
entry_points_by_type: z.ZodAny;
|
|
120
|
-
}, "strip", z.ZodTypeAny, {
|
|
121
|
-
program?: any;
|
|
122
|
-
entry_points_by_type?: any;
|
|
123
|
-
}, {
|
|
124
|
-
program?: any;
|
|
125
|
-
entry_points_by_type?: any;
|
|
126
|
-
}>]>;
|
|
117
|
+
contract: z.ZodString;
|
|
127
118
|
classHash: z.ZodOptional<z.ZodString>;
|
|
128
119
|
casm: z.ZodOptional<z.ZodObject<{
|
|
129
120
|
prime: z.ZodString;
|
|
@@ -166,12 +157,10 @@ export declare const simulateDeclareTransactionSchema: z.ZodObject<{
|
|
|
166
157
|
}>>;
|
|
167
158
|
compiledClassHash: z.ZodOptional<z.ZodString>;
|
|
168
159
|
}, "strip", z.ZodTypeAny, {
|
|
160
|
+
contract: string;
|
|
169
161
|
accountAddress: string;
|
|
170
|
-
contract: string | {
|
|
171
|
-
program?: any;
|
|
172
|
-
entry_points_by_type?: any;
|
|
173
|
-
};
|
|
174
162
|
classHash?: string | undefined;
|
|
163
|
+
compiledClassHash?: string | undefined;
|
|
175
164
|
casm?: {
|
|
176
165
|
entry_points_by_type: {
|
|
177
166
|
CONSTRUCTOR: any[];
|
|
@@ -183,14 +172,11 @@ export declare const simulateDeclareTransactionSchema: z.ZodObject<{
|
|
|
183
172
|
bytecode: string[];
|
|
184
173
|
hints: Record<string, any>;
|
|
185
174
|
} | undefined;
|
|
186
|
-
compiledClassHash?: string | undefined;
|
|
187
175
|
}, {
|
|
176
|
+
contract: string;
|
|
188
177
|
accountAddress: string;
|
|
189
|
-
contract: string | {
|
|
190
|
-
program?: any;
|
|
191
|
-
entry_points_by_type?: any;
|
|
192
|
-
};
|
|
193
178
|
classHash?: string | undefined;
|
|
179
|
+
compiledClassHash?: string | undefined;
|
|
194
180
|
casm?: {
|
|
195
181
|
entry_points_by_type: {
|
|
196
182
|
CONSTRUCTOR: any[];
|
|
@@ -202,40 +188,39 @@ export declare const simulateDeclareTransactionSchema: z.ZodObject<{
|
|
|
202
188
|
bytecode: string[];
|
|
203
189
|
hints: Record<string, any>;
|
|
204
190
|
} | undefined;
|
|
205
|
-
compiledClassHash?: string | undefined;
|
|
206
191
|
}>;
|
|
207
192
|
export declare const estimateAccountDeployFeeSchema: z.ZodObject<{
|
|
208
193
|
accountAddress: z.ZodString;
|
|
209
194
|
payloads: z.ZodArray<z.ZodObject<{
|
|
210
195
|
classHash: z.ZodString;
|
|
211
|
-
constructorCalldata: z.ZodOptional<z.
|
|
212
|
-
addressSalt: z.ZodOptional<z.
|
|
196
|
+
constructorCalldata: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
197
|
+
addressSalt: z.ZodOptional<z.ZodString>;
|
|
213
198
|
contractAddressSchema: z.ZodOptional<z.ZodString>;
|
|
214
199
|
}, "strip", z.ZodTypeAny, {
|
|
215
200
|
classHash: string;
|
|
216
|
-
|
|
217
|
-
|
|
201
|
+
constructorCalldata?: string[] | undefined;
|
|
202
|
+
addressSalt?: string | undefined;
|
|
218
203
|
contractAddressSchema?: string | undefined;
|
|
219
204
|
}, {
|
|
220
205
|
classHash: string;
|
|
221
|
-
|
|
222
|
-
|
|
206
|
+
constructorCalldata?: string[] | undefined;
|
|
207
|
+
addressSalt?: string | undefined;
|
|
223
208
|
contractAddressSchema?: string | undefined;
|
|
224
209
|
}>, "many">;
|
|
225
210
|
}, "strip", z.ZodTypeAny, {
|
|
226
211
|
accountAddress: string;
|
|
227
212
|
payloads: {
|
|
228
213
|
classHash: string;
|
|
229
|
-
|
|
230
|
-
|
|
214
|
+
constructorCalldata?: string[] | undefined;
|
|
215
|
+
addressSalt?: string | undefined;
|
|
231
216
|
contractAddressSchema?: string | undefined;
|
|
232
217
|
}[];
|
|
233
218
|
}, {
|
|
234
219
|
accountAddress: string;
|
|
235
220
|
payloads: {
|
|
236
221
|
classHash: string;
|
|
237
|
-
|
|
238
|
-
|
|
222
|
+
constructorCalldata?: string[] | undefined;
|
|
223
|
+
addressSalt?: string | undefined;
|
|
239
224
|
contractAddressSchema?: string | undefined;
|
|
240
225
|
}[];
|
|
241
226
|
}>;
|
package/build/schemas/index.js
CHANGED
|
@@ -10,7 +10,10 @@ export const declareContractSchema = z.object({
|
|
|
10
10
|
const callSchema = z.object({
|
|
11
11
|
contractAddress: z.string().describe('The contract address'),
|
|
12
12
|
entrypoint: z.string().describe('The entrypoint'),
|
|
13
|
-
calldata: z
|
|
13
|
+
calldata: z
|
|
14
|
+
.array(z.string())
|
|
15
|
+
.optional()
|
|
16
|
+
.describe('Array of calldata parameters'),
|
|
14
17
|
});
|
|
15
18
|
export const simulateInvokeTransactionSchema = z.object({
|
|
16
19
|
accountAddress: z.string().describe('Account Address/public key'),
|
|
@@ -18,10 +21,11 @@ export const simulateInvokeTransactionSchema = z.object({
|
|
|
18
21
|
});
|
|
19
22
|
const PayloadDeployAccountSchema = z.object({
|
|
20
23
|
classHash: z.string().describe('The class Hash Address'),
|
|
21
|
-
constructorCalldata: z
|
|
22
|
-
|
|
23
|
-
.
|
|
24
|
-
.
|
|
24
|
+
constructorCalldata: z
|
|
25
|
+
.array(z.string())
|
|
26
|
+
.optional()
|
|
27
|
+
.describe('Constructor calldata parameters'),
|
|
28
|
+
addressSalt: z.string().describe('Address Salt').optional(),
|
|
25
29
|
contractAddressSchema: z.string().describe('ContractAddress').optional(),
|
|
26
30
|
});
|
|
27
31
|
export const simulateDeployAccountTransactionSchema = z.object({
|
|
@@ -29,21 +33,21 @@ export const simulateDeployAccountTransactionSchema = z.object({
|
|
|
29
33
|
payloads: z.array(PayloadDeployAccountSchema),
|
|
30
34
|
});
|
|
31
35
|
const PayloadDeploySchema = z.object({
|
|
32
|
-
classHash: z.
|
|
33
|
-
z.string().regex(/^0x[0-9a-fA-F]+$/),
|
|
34
|
-
z.number(),
|
|
35
|
-
z.bigint().describe('The class Hash Address'),
|
|
36
|
-
]),
|
|
36
|
+
classHash: z.string().describe('The class Hash Address'),
|
|
37
37
|
addressSalt: z
|
|
38
|
-
.
|
|
38
|
+
.string()
|
|
39
|
+
.regex(/^0x[0-9a-fA-F]+$/)
|
|
40
|
+
.describe('Address salt as hex string')
|
|
39
41
|
.optional(),
|
|
40
42
|
unique: z
|
|
41
|
-
.
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
])
|
|
43
|
+
.string()
|
|
44
|
+
.regex(/^0x[0-9a-fA-F]+$/)
|
|
45
|
+
.describe('Unique identifier as hex string')
|
|
45
46
|
.optional(),
|
|
46
|
-
constructorCalldata: z
|
|
47
|
+
constructorCalldata: z
|
|
48
|
+
.array(z.string())
|
|
49
|
+
.optional()
|
|
50
|
+
.describe('Constructor calldata parameters'),
|
|
47
51
|
});
|
|
48
52
|
export const simulateDeployTransactionSchema = z.object({
|
|
49
53
|
accountAddress: z.string().describe('Account Address'),
|
|
@@ -60,15 +64,9 @@ const cairoAssemblySchema = z.object({
|
|
|
60
64
|
L1_HANDLER: z.array(z.any()),
|
|
61
65
|
}),
|
|
62
66
|
});
|
|
63
|
-
const compiledContractSchema = z.object({
|
|
64
|
-
program: z.any(),
|
|
65
|
-
entry_points_by_type: z.any(),
|
|
66
|
-
});
|
|
67
67
|
export const simulateDeclareTransactionSchema = z.object({
|
|
68
68
|
accountAddress: z.string().describe('Account address'),
|
|
69
|
-
contract: z
|
|
70
|
-
.union([z.string(), compiledContractSchema])
|
|
71
|
-
.describe('Contract data'),
|
|
69
|
+
contract: z.string().describe('Contract data as string path or JSON string'),
|
|
72
70
|
classHash: z.string().optional().describe('Class hash of the contract'),
|
|
73
71
|
casm: cairoAssemblySchema.optional().describe('Cairo assembly data'),
|
|
74
72
|
compiledClassHash: z.string().optional().describe('Compiled class hash'),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/schemas/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC5C,QAAQ,EAAE,CAAC,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,sCAAsC,CAAC;IAClE,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,kCAAkC,CAAC;IAC7E,iBAAiB,EAAE,CAAC;SACjB,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,oDAAoD,CAAC;CAClE,CAAC,CAAC;AAIH,MAAM,UAAU,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1B,eAAe,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,sBAAsB,CAAC;IAC5D,UAAU,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,gBAAgB,CAAC;IACjD,QAAQ,EAAE,CAAC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/schemas/index.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kasarlabs/transaction-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "803a8f9ba4004c51c63ffa87f454803223380384"
|
|
43
43
|
}
|