{
  "contractName": "IForwarder",
  "abi": [
    {
      "constant": true,
      "inputs": [],
      "name": "isForwarder",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "pure",
      "type": "function"
    },
    {
      "constant": true,
      "inputs": [
        {
          "name": "sender",
          "type": "address"
        },
        {
          "name": "evmCallScript",
          "type": "bytes"
        }
      ],
      "name": "canForward",
      "outputs": [
        {
          "name": "",
          "type": "bool"
        }
      ],
      "payable": false,
      "stateMutability": "view",
      "type": "function"
    },
    {
      "constant": false,
      "inputs": [
        {
          "name": "evmCallScript",
          "type": "bytes"
        }
      ],
      "name": "forward",
      "outputs": [],
      "payable": false,
      "stateMutability": "nonpayable",
      "type": "function"
    }
  ],
  "bytecode": "0x",
  "deployedBytecode": "0x",
  "sourceMap": "",
  "deployedSourceMap": "",
  "source": "/*\n * SPDX-License-Identitifer:    MIT\n */\n\npragma solidity ^0.4.24;\n\n\ninterface IForwarder {\n    function isForwarder() external pure returns (bool);\n\n    // TODO: this should be external\n    // See https://github.com/ethereum/solidity/issues/4832\n    function canForward(address sender, bytes evmCallScript) public view returns (bool);\n\n    // TODO: this should be external\n    // See https://github.com/ethereum/solidity/issues/4832\n    function forward(bytes evmCallScript) public;\n}\n",
  "sourcePath": "@aragon/os/contracts/common/IForwarder.sol",
  "ast": {
    "absolutePath": "@aragon/os/contracts/common/IForwarder.sol",
    "exportedSymbols": {
      "IForwarder": [
        8643
      ]
    },
    "id": 8644,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 8623,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "44:24:24"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": null,
        "fullyImplemented": false,
        "id": 8643,
        "linearizedBaseContracts": [
          8643
        ],
        "name": "IForwarder",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "id": 8628,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "isForwarder",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8624,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "118:2:24"
            },
            "payable": false,
            "returnParameters": {
              "id": 8627,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8626,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 8628,
                  "src": "144:4:24",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 8625,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "144:4:24",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "143:6:24"
            },
            "scope": 8643,
            "src": "98:52:24",
            "stateMutability": "pure",
            "superFunction": null,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "id": 8637,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "canForward",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8633,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8630,
                  "name": "sender",
                  "nodeType": "VariableDeclaration",
                  "scope": 8637,
                  "src": "273:14:24",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8629,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "273:7:24",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8632,
                  "name": "evmCallScript",
                  "nodeType": "VariableDeclaration",
                  "scope": 8637,
                  "src": "289:19:24",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes_memory_ptr",
                    "typeString": "bytes"
                  },
                  "typeName": {
                    "id": 8631,
                    "name": "bytes",
                    "nodeType": "ElementaryTypeName",
                    "src": "289:5:24",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes_storage_ptr",
                      "typeString": "bytes"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "272:37:24"
            },
            "payable": false,
            "returnParameters": {
              "id": 8636,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8635,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 8637,
                  "src": "331:4:24",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 8634,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "331:4:24",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "330:6:24"
            },
            "scope": 8643,
            "src": "253:84:24",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 8642,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "forward",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8640,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8639,
                  "name": "evmCallScript",
                  "nodeType": "VariableDeclaration",
                  "scope": 8642,
                  "src": "457:19:24",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes_memory_ptr",
                    "typeString": "bytes"
                  },
                  "typeName": {
                    "id": 8638,
                    "name": "bytes",
                    "nodeType": "ElementaryTypeName",
                    "src": "457:5:24",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes_storage_ptr",
                      "typeString": "bytes"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "456:21:24"
            },
            "payable": false,
            "returnParameters": {
              "id": 8641,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "484:0:24"
            },
            "scope": 8643,
            "src": "440:45:24",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 8644,
        "src": "71:416:24"
      }
    ],
    "src": "44:444:24"
  },
  "legacyAST": {
    "absolutePath": "@aragon/os/contracts/common/IForwarder.sol",
    "exportedSymbols": {
      "IForwarder": [
        8643
      ]
    },
    "id": 8644,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 8623,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "44:24:24"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": null,
        "fullyImplemented": false,
        "id": 8643,
        "linearizedBaseContracts": [
          8643
        ],
        "name": "IForwarder",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "id": 8628,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "isForwarder",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8624,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "118:2:24"
            },
            "payable": false,
            "returnParameters": {
              "id": 8627,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8626,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 8628,
                  "src": "144:4:24",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 8625,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "144:4:24",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "143:6:24"
            },
            "scope": 8643,
            "src": "98:52:24",
            "stateMutability": "pure",
            "superFunction": null,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "id": 8637,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "canForward",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8633,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8630,
                  "name": "sender",
                  "nodeType": "VariableDeclaration",
                  "scope": 8637,
                  "src": "273:14:24",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 8629,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "273:7:24",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 8632,
                  "name": "evmCallScript",
                  "nodeType": "VariableDeclaration",
                  "scope": 8637,
                  "src": "289:19:24",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes_memory_ptr",
                    "typeString": "bytes"
                  },
                  "typeName": {
                    "id": 8631,
                    "name": "bytes",
                    "nodeType": "ElementaryTypeName",
                    "src": "289:5:24",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes_storage_ptr",
                      "typeString": "bytes"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "272:37:24"
            },
            "payable": false,
            "returnParameters": {
              "id": 8636,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8635,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 8637,
                  "src": "331:4:24",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 8634,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "331:4:24",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "330:6:24"
            },
            "scope": 8643,
            "src": "253:84:24",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 8642,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "forward",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 8640,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 8639,
                  "name": "evmCallScript",
                  "nodeType": "VariableDeclaration",
                  "scope": 8642,
                  "src": "457:19:24",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes_memory_ptr",
                    "typeString": "bytes"
                  },
                  "typeName": {
                    "id": 8638,
                    "name": "bytes",
                    "nodeType": "ElementaryTypeName",
                    "src": "457:5:24",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes_storage_ptr",
                      "typeString": "bytes"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "456:21:24"
            },
            "payable": false,
            "returnParameters": {
              "id": 8641,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "484:0:24"
            },
            "scope": 8643,
            "src": "440:45:24",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 8644,
        "src": "71:416:24"
      }
    ],
    "src": "44:444:24"
  },
  "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": {}
  }
}