51d2213819
* Exporting Coin struct, needed for wallet * Passing the url through instead of using local options. This gives us the ability to hook up to the new validator * Removing examples * Simplifying dependencies a bit * Setting all contract denominations to uhal * Making stakeDenom configurable throughout
74 lines
1.4 KiB
JSON
74 lines
1.4 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "QueryMsg",
|
|
"anyOf": [
|
|
{
|
|
"type": "object",
|
|
"required": [
|
|
"get_mix_nodes"
|
|
],
|
|
"properties": {
|
|
"get_mix_nodes": {
|
|
"type": "object",
|
|
"properties": {
|
|
"limit": {
|
|
"type": [
|
|
"integer",
|
|
"null"
|
|
],
|
|
"format": "uint32",
|
|
"minimum": 0.0
|
|
},
|
|
"start_after": {
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/definitions/HumanAddr"
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"type": "object",
|
|
"required": [
|
|
"get_gateways"
|
|
],
|
|
"properties": {
|
|
"get_gateways": {
|
|
"type": "object",
|
|
"properties": {
|
|
"limit": {
|
|
"type": [
|
|
"integer",
|
|
"null"
|
|
],
|
|
"format": "uint32",
|
|
"minimum": 0.0
|
|
},
|
|
"start_after": {
|
|
"anyOf": [
|
|
{
|
|
"$ref": "#/definitions/HumanAddr"
|
|
},
|
|
{
|
|
"type": "null"
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"definitions": {
|
|
"HumanAddr": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|