Skip to content

Commit

Permalink
Update schema.
Browse files Browse the repository at this point in the history
  • Loading branch information
piobab committed Jun 11, 2024
1 parent 9077be6 commit 30bde06
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
41 changes: 41 additions & 0 deletions schemas/mars-vault/mars-vault.json
Original file line number Diff line number Diff line change
Expand Up @@ -515,6 +515,47 @@
},
"additionalProperties": false
},
{
"type": "object",
"required": [
"all_unlocks"
],
"properties": {
"all_unlocks": {
"type": "object",
"properties": {
"limit": {
"type": [
"integer",
"null"
],
"format": "uint32",
"minimum": 0.0
},
"start_after": {
"type": [
"array",
"null"
],
"items": [
{
"type": "string"
},
{
"type": "integer",
"format": "uint64",
"minimum": 0.0
}
],
"maxItems": 2,
"minItems": 2
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
{
"type": "object",
"required": [
Expand Down
6 changes: 6 additions & 0 deletions scripts/types/generated/mars-vault/MarsVault.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,12 @@ export type ExtensionQueryMsg =
user_address: string
}
}
| {
all_unlocks: {
limit?: number | null
start_after?: [string, number] | null
}
}
| {
performance_fee_state: {}
}
Expand Down

0 comments on commit 30bde06

Please sign in to comment.