{
  "contractName": "IVaultRecoverable",
  "abi": [
    {
      "constant": false,
      "inputs": [
        {
          "name": "token",
          "type": "address"
        }
      ],
      "name": "transferToVault",
      "outputs": [],
      "payable": false,
      "stateMutability": "nonpayable",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [
        {
          "name": "token",
          "type": "address"
        }
      ],
      "name": "allowRecoverability",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [],
      "name": "getRecoveryVault",
      "outputs": [
        {
          "name": "",
          "type": "address"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    }
  ],
  "bytecode": "0x",
  "deployedBytecode": "0x",
  "sourceMap": "",
  "deployedSourceMap": "",
  "source": "/*\n * SPDX-License-Identitifer:    MIT\n */\n\npragma solidity ^0.4.24;\n\n\ninterface IVaultRecoverable {\n    function transferToVault(address token) external;\n\n    function allowRecoverability(address token) external view returns (bool);\n    function getRecoveryVault() external view returns (address);\n}\n",
  "sourcePath": "@aragon/os/contracts/common/IVaultRecoverable.sol",
  "ast": {
    "absolutePath": "@aragon/os/contracts/common/IVaultRecoverable.sol",
    "exportedSymbols": {
      "IVaultRecoverable": [
        8663
      ]
    },
    "id": 8664,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 8645,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "44:24:25"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": null,
        "fullyImplemented": false,
        "id": 8663,
        "linearizedBaseContracts": [
          8663
        ],
        "name": "IVaultRecoverable",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "id": 8650,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "transferToVault",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8648,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8647,
                  "name": "token",
                  "nodeType": "VariableDeclaration",
                  "scope": 8650,
                  "src": "130:13:25",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8646,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "130:7:25",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "129:15:25"
            },
            "payable": false,
            "returnParameters": {
              "id": 8649,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "153:0:25"
            },
            "scope": 8663,
            "src": "105:49:25",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "id": 8657,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "allowRecoverability",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8653,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8652,
                  "name": "token",
                  "nodeType": "VariableDeclaration",
                  "scope": 8657,
                  "src": "189:13:25",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8651,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "189:7:25",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "188:15:25"
            },
            "payable": false,
            "returnParameters": {
              "id": 8656,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8655,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 8657,
                  "src": "227:4:25",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 8654,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "227:4:25",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "226:6:25"
            },
            "scope": 8663,
            "src": "160:73:25",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "id": 8662,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getRecoveryVault",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8658,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "263:2:25"
            },
            "payable": false,
            "returnParameters": {
              "id": 8661,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8660,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 8662,
                  "src": "289:7:25",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8659,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "289:7:25",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "288:9:25"
            },
            "scope": 8663,
            "src": "238:60:25",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "external"
          }
        ],
        "scope": 8664,
        "src": "71:229:25"
      }
    ],
    "src": "44:257:25"
  },
  "legacyAST": {
    "absolutePath": "@aragon/os/contracts/common/IVaultRecoverable.sol",
    "exportedSymbols": {
      "IVaultRecoverable": [
        8663
      ]
    },
    "id": 8664,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 8645,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "44:24:25"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": null,
        "fullyImplemented": false,
        "id": 8663,
        "linearizedBaseContracts": [
          8663
        ],
        "name": "IVaultRecoverable",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "id": 8650,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "transferToVault",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8648,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8647,
                  "name": "token",
                  "nodeType": "VariableDeclaration",
                  "scope": 8650,
                  "src": "130:13:25",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8646,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "130:7:25",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "129:15:25"
            },
            "payable": false,
            "returnParameters": {
              "id": 8649,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "153:0:25"
            },
            "scope": 8663,
            "src": "105:49:25",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "id": 8657,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "allowRecoverability",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8653,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8652,
                  "name": "token",
                  "nodeType": "VariableDeclaration",
                  "scope": 8657,
                  "src": "189:13:25",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8651,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "189:7:25",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "188:15:25"
            },
            "payable": false,
            "returnParameters": {
              "id": 8656,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8655,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 8657,
                  "src": "227:4:25",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 8654,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "227:4:25",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "226:6:25"
            },
            "scope": 8663,
            "src": "160:73:25",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "id": 8662,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getRecoveryVault",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8658,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "263:2:25"
            },
            "payable": false,
            "returnParameters": {
              "id": 8661,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8660,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 8662,
                  "src": "289:7:25",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8659,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "289:7:25",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "288:9:25"
            },
            "scope": 8663,
            "src": "238:60:25",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "external"
          }
        ],
        "scope": 8664,
        "src": "71:229:25"
      }
    ],
    "src": "44:257:25"
  },
  "compiler": {
    "name": "solc",
    "version": "0.4.24+commit.e67f0147.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "3.0.1",
  "updatedAt": "2019-03-29T09:45:33.505Z",
  "devdoc": {
    "methods": {}
  },
  "userdoc": {
    "methods": {}
  }
}