@kasarlabs/erc721-mcp 0.1.0 → 0.1.2
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 +16 -16
- package/package.json +3 -3
package/build/schemas/index.d.ts
CHANGED
|
@@ -3,11 +3,11 @@ export declare const getBalanceSchema: z.ZodObject<{
|
|
|
3
3
|
accountAddress: z.ZodString;
|
|
4
4
|
contractAddress: z.ZodString;
|
|
5
5
|
}, "strip", z.ZodTypeAny, {
|
|
6
|
-
accountAddress: string;
|
|
7
6
|
contractAddress: string;
|
|
8
|
-
}, {
|
|
9
7
|
accountAddress: string;
|
|
8
|
+
}, {
|
|
10
9
|
contractAddress: string;
|
|
10
|
+
accountAddress: string;
|
|
11
11
|
}>;
|
|
12
12
|
export declare const getOwnBalanceSchema: z.ZodObject<{
|
|
13
13
|
contractAddress: z.ZodString;
|
|
@@ -20,21 +20,21 @@ export declare const ownerOfSchema: z.ZodObject<{
|
|
|
20
20
|
tokenId: z.ZodString;
|
|
21
21
|
contractAddress: z.ZodString;
|
|
22
22
|
}, "strip", z.ZodTypeAny, {
|
|
23
|
-
contractAddress: string;
|
|
24
23
|
tokenId: string;
|
|
25
|
-
}, {
|
|
26
24
|
contractAddress: string;
|
|
25
|
+
}, {
|
|
27
26
|
tokenId: string;
|
|
27
|
+
contractAddress: string;
|
|
28
28
|
}>;
|
|
29
29
|
export declare const getApprovedSchema: z.ZodObject<{
|
|
30
30
|
tokenId: z.ZodString;
|
|
31
31
|
contractAddress: z.ZodString;
|
|
32
32
|
}, "strip", z.ZodTypeAny, {
|
|
33
|
-
contractAddress: string;
|
|
34
33
|
tokenId: string;
|
|
35
|
-
}, {
|
|
36
34
|
contractAddress: string;
|
|
35
|
+
}, {
|
|
37
36
|
tokenId: string;
|
|
37
|
+
contractAddress: string;
|
|
38
38
|
}>;
|
|
39
39
|
export declare const isApprovedForAllSchema: z.ZodObject<{
|
|
40
40
|
ownerAddress: z.ZodString;
|
|
@@ -55,13 +55,13 @@ export declare const transferFromSchema: z.ZodObject<{
|
|
|
55
55
|
tokenId: z.ZodString;
|
|
56
56
|
contractAddress: z.ZodString;
|
|
57
57
|
}, "strip", z.ZodTypeAny, {
|
|
58
|
-
contractAddress: string;
|
|
59
58
|
tokenId: string;
|
|
59
|
+
contractAddress: string;
|
|
60
60
|
fromAddress: string;
|
|
61
61
|
toAddress: string;
|
|
62
62
|
}, {
|
|
63
|
-
contractAddress: string;
|
|
64
63
|
tokenId: string;
|
|
64
|
+
contractAddress: string;
|
|
65
65
|
fromAddress: string;
|
|
66
66
|
toAddress: string;
|
|
67
67
|
}>;
|
|
@@ -70,12 +70,12 @@ export declare const transferSchema: z.ZodObject<{
|
|
|
70
70
|
tokenId: z.ZodString;
|
|
71
71
|
contractAddress: z.ZodString;
|
|
72
72
|
}, "strip", z.ZodTypeAny, {
|
|
73
|
-
contractAddress: string;
|
|
74
73
|
tokenId: string;
|
|
74
|
+
contractAddress: string;
|
|
75
75
|
toAddress: string;
|
|
76
76
|
}, {
|
|
77
|
-
contractAddress: string;
|
|
78
77
|
tokenId: string;
|
|
78
|
+
contractAddress: string;
|
|
79
79
|
toAddress: string;
|
|
80
80
|
}>;
|
|
81
81
|
export declare const safeTransferFromSchema: z.ZodObject<{
|
|
@@ -84,13 +84,13 @@ export declare const safeTransferFromSchema: z.ZodObject<{
|
|
|
84
84
|
tokenId: z.ZodString;
|
|
85
85
|
contractAddress: z.ZodString;
|
|
86
86
|
}, "strip", z.ZodTypeAny, {
|
|
87
|
-
contractAddress: string;
|
|
88
87
|
tokenId: string;
|
|
88
|
+
contractAddress: string;
|
|
89
89
|
fromAddress: string;
|
|
90
90
|
toAddress: string;
|
|
91
91
|
}, {
|
|
92
|
-
contractAddress: string;
|
|
93
92
|
tokenId: string;
|
|
93
|
+
contractAddress: string;
|
|
94
94
|
fromAddress: string;
|
|
95
95
|
toAddress: string;
|
|
96
96
|
}>;
|
|
@@ -99,12 +99,12 @@ export declare const approveSchema: z.ZodObject<{
|
|
|
99
99
|
tokenId: z.ZodString;
|
|
100
100
|
contractAddress: z.ZodString;
|
|
101
101
|
}, "strip", z.ZodTypeAny, {
|
|
102
|
-
contractAddress: string;
|
|
103
102
|
tokenId: string;
|
|
103
|
+
contractAddress: string;
|
|
104
104
|
approvedAddress: string;
|
|
105
105
|
}, {
|
|
106
|
-
contractAddress: string;
|
|
107
106
|
tokenId: string;
|
|
107
|
+
contractAddress: string;
|
|
108
108
|
approvedAddress: string;
|
|
109
109
|
}>;
|
|
110
110
|
export declare const setApprovalForAllSchema: z.ZodObject<{
|
|
@@ -113,12 +113,12 @@ export declare const setApprovalForAllSchema: z.ZodObject<{
|
|
|
113
113
|
contractAddress: z.ZodString;
|
|
114
114
|
}, "strip", z.ZodTypeAny, {
|
|
115
115
|
contractAddress: string;
|
|
116
|
-
operatorAddress: string;
|
|
117
116
|
approved: boolean;
|
|
117
|
+
operatorAddress: string;
|
|
118
118
|
}, {
|
|
119
119
|
contractAddress: string;
|
|
120
|
-
operatorAddress: string;
|
|
121
120
|
approved: boolean;
|
|
121
|
+
operatorAddress: string;
|
|
122
122
|
}>;
|
|
123
123
|
export declare const deployERC721Schema: z.ZodObject<{
|
|
124
124
|
name: z.ZodString;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kasarlabs/erc721-mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
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.2",
|
|
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": "967038b13c313def17911c88d85601cb208b8cd6"
|
|
43
43
|
}
|