cw20-escrow 0.2.1

Implementation of an escrow that accepts CosmWasm-20 tokens as well as native tokens
Documentation
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "QueryMsg",
  "anyOf": [
    {
      "description": "Show all open escrows. Return type is ListResponse.",
      "type": "object",
      "required": [
        "list"
      ],
      "properties": {
        "list": {
          "type": "object"
        }
      }
    },
    {
      "description": "Returns the details of the named escrow, error if not created Return type: DetailsResponse.",
      "type": "object",
      "required": [
        "details"
      ],
      "properties": {
        "details": {
          "type": "object",
          "required": [
            "id"
          ],
          "properties": {
            "id": {
              "type": "string"
            }
          }
        }
      }
    }
  ]
}