@kasarlabs/transaction-mcp 0.1.2 → 0.1.3
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 +19 -19
- package/package.json +3 -3
package/build/schemas/index.d.ts
CHANGED
|
@@ -126,34 +126,34 @@ export declare const simulateDeclareTransactionSchema: z.ZodObject<{
|
|
|
126
126
|
EXTERNAL: z.ZodArray<z.ZodAny, "many">;
|
|
127
127
|
L1_HANDLER: z.ZodArray<z.ZodAny, "many">;
|
|
128
128
|
}, "strip", z.ZodTypeAny, {
|
|
129
|
-
L1_HANDLER: any[];
|
|
130
129
|
CONSTRUCTOR: any[];
|
|
131
130
|
EXTERNAL: any[];
|
|
132
|
-
}, {
|
|
133
131
|
L1_HANDLER: any[];
|
|
132
|
+
}, {
|
|
134
133
|
CONSTRUCTOR: any[];
|
|
135
134
|
EXTERNAL: any[];
|
|
135
|
+
L1_HANDLER: any[];
|
|
136
136
|
}>;
|
|
137
137
|
}, "strip", z.ZodTypeAny, {
|
|
138
|
-
entry_points_by_type: {
|
|
139
|
-
L1_HANDLER: any[];
|
|
140
|
-
CONSTRUCTOR: any[];
|
|
141
|
-
EXTERNAL: any[];
|
|
142
|
-
};
|
|
143
138
|
prime: string;
|
|
144
139
|
compiler_version: string;
|
|
145
140
|
bytecode: string[];
|
|
146
141
|
hints: Record<string, any>;
|
|
147
|
-
}, {
|
|
148
142
|
entry_points_by_type: {
|
|
149
|
-
L1_HANDLER: any[];
|
|
150
143
|
CONSTRUCTOR: any[];
|
|
151
144
|
EXTERNAL: any[];
|
|
145
|
+
L1_HANDLER: any[];
|
|
152
146
|
};
|
|
147
|
+
}, {
|
|
153
148
|
prime: string;
|
|
154
149
|
compiler_version: string;
|
|
155
150
|
bytecode: string[];
|
|
156
151
|
hints: Record<string, any>;
|
|
152
|
+
entry_points_by_type: {
|
|
153
|
+
CONSTRUCTOR: any[];
|
|
154
|
+
EXTERNAL: any[];
|
|
155
|
+
L1_HANDLER: any[];
|
|
156
|
+
};
|
|
157
157
|
}>>;
|
|
158
158
|
compiledClassHash: z.ZodOptional<z.ZodString>;
|
|
159
159
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -161,15 +161,15 @@ export declare const simulateDeclareTransactionSchema: z.ZodObject<{
|
|
|
161
161
|
contract: string;
|
|
162
162
|
classHash?: string | undefined;
|
|
163
163
|
casm?: {
|
|
164
|
-
entry_points_by_type: {
|
|
165
|
-
L1_HANDLER: any[];
|
|
166
|
-
CONSTRUCTOR: any[];
|
|
167
|
-
EXTERNAL: any[];
|
|
168
|
-
};
|
|
169
164
|
prime: string;
|
|
170
165
|
compiler_version: string;
|
|
171
166
|
bytecode: string[];
|
|
172
167
|
hints: Record<string, any>;
|
|
168
|
+
entry_points_by_type: {
|
|
169
|
+
CONSTRUCTOR: any[];
|
|
170
|
+
EXTERNAL: any[];
|
|
171
|
+
L1_HANDLER: any[];
|
|
172
|
+
};
|
|
173
173
|
} | undefined;
|
|
174
174
|
compiledClassHash?: string | undefined;
|
|
175
175
|
}, {
|
|
@@ -177,15 +177,15 @@ export declare const simulateDeclareTransactionSchema: z.ZodObject<{
|
|
|
177
177
|
contract: string;
|
|
178
178
|
classHash?: string | undefined;
|
|
179
179
|
casm?: {
|
|
180
|
-
entry_points_by_type: {
|
|
181
|
-
L1_HANDLER: any[];
|
|
182
|
-
CONSTRUCTOR: any[];
|
|
183
|
-
EXTERNAL: any[];
|
|
184
|
-
};
|
|
185
180
|
prime: string;
|
|
186
181
|
compiler_version: string;
|
|
187
182
|
bytecode: string[];
|
|
188
183
|
hints: Record<string, any>;
|
|
184
|
+
entry_points_by_type: {
|
|
185
|
+
CONSTRUCTOR: any[];
|
|
186
|
+
EXTERNAL: any[];
|
|
187
|
+
L1_HANDLER: any[];
|
|
188
|
+
};
|
|
189
189
|
} | undefined;
|
|
190
190
|
compiledClassHash?: string | undefined;
|
|
191
191
|
}>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kasarlabs/transaction-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"build"
|
|
17
17
|
],
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@kasarlabs/ask-starknet-core": "0.1.
|
|
19
|
+
"@kasarlabs/ask-starknet-core": "0.1.1",
|
|
20
20
|
"@langchain/core": "^0.3.42",
|
|
21
21
|
"@modelcontextprotocol/sdk": "^1.11.2",
|
|
22
22
|
"dotenv": "^16.4.7",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "4212f968456c2a170aac99306a899ae43458e23c"
|
|
43
43
|
}
|