{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "ExecuteMsg", "oneOf": [ { "type": "object", "required": [ "deposit_funds" ], "properties": { "deposit_funds": { "type": "object", "required": [ "data" ], "properties": { "data": { "$ref": "#/definitions/DepositData" } }, "additionalProperties": false } }, "additionalProperties": false }, { "type": "object", "required": [ "spend_credential" ], "properties": { "spend_credential": { "type": "object", "required": [ "data" ], "properties": { "data": { "$ref": "#/definitions/SpendCredentialData" } }, "additionalProperties": false } }, "additionalProperties": false }, { "type": "object", "required": [ "release_funds" ], "properties": { "release_funds": { "type": "object", "required": [ "funds" ], "properties": { "funds": { "$ref": "#/definitions/Coin" } }, "additionalProperties": false } }, "additionalProperties": false } ], "definitions": { "Coin": { "type": "object", "required": [ "amount", "denom" ], "properties": { "amount": { "$ref": "#/definitions/Uint128" }, "denom": { "type": "string" } } }, "DepositData": { "type": "object", "required": [ "deposit_info", "encryption_key", "identity_key" ], "properties": { "deposit_info": { "type": "string" }, "encryption_key": { "type": "string" }, "identity_key": { "type": "string" } }, "additionalProperties": false }, "SpendCredentialData": { "type": "object", "required": [ "blinded_serial_number", "funds", "gateway_cosmos_address" ], "properties": { "blinded_serial_number": { "type": "string" }, "funds": { "$ref": "#/definitions/Coin" }, "gateway_cosmos_address": { "type": "string" } }, "additionalProperties": false }, "Uint128": { "description": "A thin wrapper around u128 that is using strings for JSON encoding/decoding, such that the full u128 range can be used for clients that convert JSON numbers to floats, like JavaScript and jq.\n\n# Examples\n\nUse `from` to create instances of this and `u128` to get the value out:\n\n``` # use cosmwasm_std::Uint128; let a = Uint128::from(123u128); assert_eq!(a.u128(), 123);\n\nlet b = Uint128::from(42u64); assert_eq!(b.u128(), 42);\n\nlet c = Uint128::from(70u32); assert_eq!(c.u128(), 70); ```", "type": "string" } } }