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
19 lines
288 B
JSON
19 lines
288 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"title": "State",
|
|
"type": "object",
|
|
"required": [
|
|
"owner"
|
|
],
|
|
"properties": {
|
|
"owner": {
|
|
"$ref": "#/definitions/HumanAddr"
|
|
}
|
|
},
|
|
"definitions": {
|
|
"HumanAddr": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|