Skip to content

Commit 8870634

Browse files
authored
Add pins to dependency height (#2246)
1 parent de44b8a commit 8870634

File tree

3 files changed

+1224
-179
lines changed

3 files changed

+1224
-179
lines changed

flowkit/schema.json

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"$schema": "https://json-schema.org/draft/2020-12/schema",
3-
"$id": "https://github.com/onflow/flow-cli/flowkit/config/json/json-config",
3+
"$id": "https://github.com/onflow/flowkit/v2/config/json/json-config",
44
"$ref": "#/$defs/jsonConfig",
55
"$defs": {
66
"account": {
@@ -111,20 +111,15 @@
111111
}
112112
},
113113
"additionalProperties": false,
114-
"type": "object",
115-
"required": [
116-
"host"
117-
]
114+
"type": "object"
118115
},
119116
"contractDeployment": {
120117
"properties": {
121118
"name": {
122119
"type": "string"
123120
},
124121
"args": {
125-
"items": {
126-
"type": "object"
127-
},
122+
"items": true,
128123
"type": "array"
129124
}
130125
},
@@ -199,6 +194,9 @@
199194
}
200195
},
201196
"type": "object"
197+
},
198+
"canonical": {
199+
"type": "string"
202200
}
203201
},
204202
"additionalProperties": false,
@@ -242,13 +240,19 @@
242240
"hash": {
243241
"type": "string"
244242
},
243+
"block_height": {
244+
"type": "integer"
245+
},
245246
"aliases": {
246247
"patternProperties": {
247248
".*": {
248249
"type": "string"
249250
}
250251
},
251252
"type": "object"
253+
},
254+
"canonical": {
255+
"type": "string"
252256
}
253257
},
254258
"additionalProperties": false,

0 commit comments

Comments
 (0)