{
  "contractName": "IVaultRecoverable",
  "abi": [
    {
      "anonymous": false,
      "inputs": [
        {
          "indexed": true,
          "name": "vault",
          "type": "address"
        },
        {
          "indexed": true,
          "name": "token",
          "type": "address"
        },
        {
          "indexed": false,
          "name": "amount",
          "type": "uint256"
        }
      ],
      "name": "RecoverToVault",
      "type": "event"
    },
    {
      "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"
    }
  ],
  "metadata": "",
  "bytecode": "0x",
  "deployedBytecode": "0x",
  "sourceMap": "",
  "deployedSourceMap": "",
  "source": "/*\n * SPDX-License-Identitifer:    MIT\n */\n\npragma solidity ^0.4.24;\n\n\ninterface IVaultRecoverable {\n    event RecoverToVault(address indexed vault, address indexed token, uint256 amount);\n\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": [
        6343
      ]
    },
    "id": 6344,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 6317,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "44:24:29"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": null,
        "fullyImplemented": false,
        "id": 6343,
        "linearizedBaseContracts": [
          6343
        ],
        "name": "IVaultRecoverable",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "anonymous": false,
            "documentation": null,
            "id": 6325,
            "name": "RecoverToVault",
            "nodeType": "EventDefinition",
            "parameters": {
              "id": 6324,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 6319,
                  "indexed": true,
                  "name": "vault",
                  "nodeType": "VariableDeclaration",
                  "scope": 6325,
                  "src": "126:21:29",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 6318,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "126:7:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 6321,
                  "indexed": true,
                  "name": "token",
                  "nodeType": "VariableDeclaration",
                  "scope": 6325,
                  "src": "149:21:29",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 6320,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "149:7:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 6323,
                  "indexed": false,
                  "name": "amount",
                  "nodeType": "VariableDeclaration",
                  "scope": 6325,
                  "src": "172:14:29",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 6322,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "172:7:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "125:62:29"
            },
            "src": "105:83:29"
          },
          {
            "body": null,
            "documentation": null,
            "id": 6330,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "transferToVault",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 6328,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 6327,
                  "name": "token",
                  "nodeType": "VariableDeclaration",
                  "scope": 6330,
                  "src": "219:13:29",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 6326,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "219:7:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "218:15:29"
            },
            "payable": false,
            "returnParameters": {
              "id": 6329,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "242:0:29"
            },
            "scope": 6343,
            "src": "194:49:29",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "id": 6337,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "allowRecoverability",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 6333,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 6332,
                  "name": "token",
                  "nodeType": "VariableDeclaration",
                  "scope": 6337,
                  "src": "278:13:29",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 6331,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "278:7:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "277:15:29"
            },
            "payable": false,
            "returnParameters": {
              "id": 6336,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 6335,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 6337,
                  "src": "316:4:29",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 6334,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "316:4:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "315:6:29"
            },
            "scope": 6343,
            "src": "249:73:29",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "id": 6342,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getRecoveryVault",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 6338,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "352:2:29"
            },
            "payable": false,
            "returnParameters": {
              "id": 6341,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 6340,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 6342,
                  "src": "378:7:29",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 6339,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "378:7:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "377:9:29"
            },
            "scope": 6343,
            "src": "327:60:29",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "external"
          }
        ],
        "scope": 6344,
        "src": "71:318:29"
      }
    ],
    "src": "44:346:29"
  },
  "legacyAST": {
    "absolutePath": "@aragon/os/contracts/common/IVaultRecoverable.sol",
    "exportedSymbols": {
      "IVaultRecoverable": [
        6343
      ]
    },
    "id": 6344,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 6317,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "44:24:29"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": null,
        "fullyImplemented": false,
        "id": 6343,
        "linearizedBaseContracts": [
          6343
        ],
        "name": "IVaultRecoverable",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "anonymous": false,
            "documentation": null,
            "id": 6325,
            "name": "RecoverToVault",
            "nodeType": "EventDefinition",
            "parameters": {
              "id": 6324,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 6319,
                  "indexed": true,
                  "name": "vault",
                  "nodeType": "VariableDeclaration",
                  "scope": 6325,
                  "src": "126:21:29",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 6318,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "126:7:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 6321,
                  "indexed": true,
                  "name": "token",
                  "nodeType": "VariableDeclaration",
                  "scope": 6325,
                  "src": "149:21:29",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 6320,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "149:7:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 6323,
                  "indexed": false,
                  "name": "amount",
                  "nodeType": "VariableDeclaration",
                  "scope": 6325,
                  "src": "172:14:29",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint256",
                    "typeString": "uint256"
                  },
                  "typeName": {
                    "id": 6322,
                    "name": "uint256",
                    "nodeType": "ElementaryTypeName",
                    "src": "172:7:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint256",
                      "typeString": "uint256"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "125:62:29"
            },
            "src": "105:83:29"
          },
          {
            "body": null,
            "documentation": null,
            "id": 6330,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "transferToVault",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 6328,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 6327,
                  "name": "token",
                  "nodeType": "VariableDeclaration",
                  "scope": 6330,
                  "src": "219:13:29",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 6326,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "219:7:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "218:15:29"
            },
            "payable": false,
            "returnParameters": {
              "id": 6329,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "242:0:29"
            },
            "scope": 6343,
            "src": "194:49:29",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "id": 6337,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "allowRecoverability",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 6333,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 6332,
                  "name": "token",
                  "nodeType": "VariableDeclaration",
                  "scope": 6337,
                  "src": "278:13:29",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 6331,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "278:7:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "277:15:29"
            },
            "payable": false,
            "returnParameters": {
              "id": 6336,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 6335,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 6337,
                  "src": "316:4:29",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 6334,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "316:4:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "315:6:29"
            },
            "scope": 6343,
            "src": "249:73:29",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "id": 6342,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "getRecoveryVault",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 6338,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "352:2:29"
            },
            "payable": false,
            "returnParameters": {
              "id": 6341,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 6340,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 6342,
                  "src": "378:7:29",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 6339,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "378:7:29",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "377:9:29"
            },
            "scope": 6343,
            "src": "327:60:29",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "external"
          }
        ],
        "scope": 6344,
        "src": "71:318:29"
      }
    ],
    "src": "44:346:29"
  },
  "compiler": {
    "name": "solc",
    "version": "0.4.24+commit.e67f0147.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "3.2.0",
  "updatedAt": "2020-06-07T23:27:00.572Z",
  "devdoc": {
    "methods": {}
  },
  "userdoc": {
    "methods": {}
  }
}