Files
nym/contracts/mixnet/schema/state.json
T
Dave Hrycyszyn 51d2213819 Feature/convert to uhal (#537)
* 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
2021-03-23 12:18:08 +00:00

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"
}
}
}