Skip to content

Commit 4dac35d

Browse files
committed
test
1 parent d2edba3 commit 4dac35d

File tree

7 files changed

+151
-412
lines changed

7 files changed

+151
-412
lines changed
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
{
2+
"contract_name": "cw1-whitelist",
3+
"contract_version": "0.3.0",
4+
"idl_version": "1.0.0",
5+
"instantiate": {
6+
"$schema": "http://json-schema.org/draft-07/schema#",
7+
"title": "InstantiateMsg",
8+
"type": "object",
9+
"required": [
10+
"admins",
11+
"mutable"
12+
],
13+
"properties": {
14+
"admins": {
15+
"type": "array",
16+
"items": {
17+
"type": "string"
18+
}
19+
},
20+
"mutable": {
21+
"type": "boolean"
22+
}
23+
}
24+
},
25+
"execute": {
26+
"$schema": "http://json-schema.org/draft-07/schema#",
27+
"title": "ExecuteMsg",
28+
"anyOf": [
29+
{
30+
"$ref": "#/definitions/ExecMsg"
31+
}
32+
],
33+
"definitions": {
34+
"ExecMsg": {
35+
"type": "string",
36+
"enum": []
37+
}
38+
}
39+
},
40+
"query": {
41+
"$schema": "http://json-schema.org/draft-07/schema#",
42+
"title": "QueryMsg",
43+
"anyOf": [
44+
{
45+
"$ref": "#/definitions/QueryMsg"
46+
}
47+
],
48+
"definitions": {
49+
"QueryMsg": {
50+
"type": "string",
51+
"enum": []
52+
}
53+
}
54+
},
55+
"migrate": null,
56+
"sudo": null,
57+
"responses": {}
58+
}

__fixtures__/issues/98/out/98.client.ts

Lines changed: 0 additions & 247 deletions
This file was deleted.

__fixtures__/issues/98/out/98.react-query.ts

Lines changed: 0 additions & 50 deletions
This file was deleted.

0 commit comments

Comments
 (0)