secret-network-ccl
Version:
Secret Network's Confidential Comutation Layer
31 lines (30 loc) • 755 B
JSON
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "InitMsg",
"type": "object",
"required": [
"gateway_address",
"gateway_hash",
"gateway_key"
],
"properties": {
"gateway_address": {
"$ref": "#/definitions/HumanAddr"
},
"gateway_hash": {
"type": "string"
},
"gateway_key": {
"$ref": "#/definitions/Binary"
}
},
"definitions": {
"Binary": {
"description": "Binary is a wrapper around Vec<u8> to add base64 de/serialization with serde. It also adds some helper methods to help encode inline.\n\nThis is only needed as serde-json-{core,wasm} has a horrible encoding for Vec<u8>",
"type": "string"
},
"HumanAddr": {
"type": "string"
}
}
}