{
  "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"
    }
  ],
  "metadata": "",
  "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": [
        6315
      ]
    },
    "id": 6316,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 6295,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "44:24:28"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": null,
        "fullyImplemented": false,
        "id": 6315,
        "linearizedBaseContracts": [
          6315
        ],
        "name": "IForwarder",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "id": 6300,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "isForwarder",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 6296,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "118:2:28"
            },
            "payable": false,
            "returnParameters": {
              "id": 6299,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 6298,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 6300,
                  "src": "144:4:28",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 6297,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "144:4:28",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "143:6:28"
            },
            "scope": 6315,
            "src": "98:52:28",
            "stateMutability": "pure",
            "superFunction": null,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "id": 6309,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "canForward",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 6305,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 6302,
                  "name": "sender",
                  "nodeType": "VariableDeclaration",
                  "scope": 6309,
                  "src": "273:14:28",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 6301,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "273:7:28",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 6304,
                  "name": "evmCallScript",
                  "nodeType": "VariableDeclaration",
                  "scope": 6309,
                  "src": "289:19:28",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes_memory_ptr",
                    "typeString": "bytes"
                  },
                  "typeName": {
                    "id": 6303,
                    "name": "bytes",
                    "nodeType": "ElementaryTypeName",
                    "src": "289:5:28",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes_storage_ptr",
                      "typeString": "bytes"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "272:37:28"
            },
            "payable": false,
            "returnParameters": {
              "id": 6308,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 6307,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 6309,
                  "src": "331:4:28",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 6306,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "331:4:28",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "330:6:28"
            },
            "scope": 6315,
            "src": "253:84:28",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 6314,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "forward",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 6312,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 6311,
                  "name": "evmCallScript",
                  "nodeType": "VariableDeclaration",
                  "scope": 6314,
                  "src": "457:19:28",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes_memory_ptr",
                    "typeString": "bytes"
                  },
                  "typeName": {
                    "id": 6310,
                    "name": "bytes",
                    "nodeType": "ElementaryTypeName",
                    "src": "457:5:28",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes_storage_ptr",
                      "typeString": "bytes"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "456:21:28"
            },
            "payable": false,
            "returnParameters": {
              "id": 6313,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "484:0:28"
            },
            "scope": 6315,
            "src": "440:45:28",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 6316,
        "src": "71:416:28"
      }
    ],
    "src": "44:444:28"
  },
  "legacyAST": {
    "absolutePath": "@aragon/os/contracts/common/IForwarder.sol",
    "exportedSymbols": {
      "IForwarder": [
        6315
      ]
    },
    "id": 6316,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 6295,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "44:24:28"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "interface",
        "documentation": null,
        "fullyImplemented": false,
        "id": 6315,
        "linearizedBaseContracts": [
          6315
        ],
        "name": "IForwarder",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": null,
            "id": 6300,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "isForwarder",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 6296,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "118:2:28"
            },
            "payable": false,
            "returnParameters": {
              "id": 6299,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 6298,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 6300,
                  "src": "144:4:28",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 6297,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "144:4:28",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "143:6:28"
            },
            "scope": 6315,
            "src": "98:52:28",
            "stateMutability": "pure",
            "superFunction": null,
            "visibility": "external"
          },
          {
            "body": null,
            "documentation": null,
            "id": 6309,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": true,
            "modifiers": [],
            "name": "canForward",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 6305,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 6302,
                  "name": "sender",
                  "nodeType": "VariableDeclaration",
                  "scope": 6309,
                  "src": "273:14:28",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 6301,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "273:7:28",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 6304,
                  "name": "evmCallScript",
                  "nodeType": "VariableDeclaration",
                  "scope": 6309,
                  "src": "289:19:28",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes_memory_ptr",
                    "typeString": "bytes"
                  },
                  "typeName": {
                    "id": 6303,
                    "name": "bytes",
                    "nodeType": "ElementaryTypeName",
                    "src": "289:5:28",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes_storage_ptr",
                      "typeString": "bytes"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "272:37:28"
            },
            "payable": false,
            "returnParameters": {
              "id": 6308,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 6307,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 6309,
                  "src": "331:4:28",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 6306,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "331:4:28",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "330:6:28"
            },
            "scope": 6315,
            "src": "253:84:28",
            "stateMutability": "view",
            "superFunction": null,
            "visibility": "public"
          },
          {
            "body": null,
            "documentation": null,
            "id": 6314,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "forward",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 6312,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 6311,
                  "name": "evmCallScript",
                  "nodeType": "VariableDeclaration",
                  "scope": 6314,
                  "src": "457:19:28",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bytes_memory_ptr",
                    "typeString": "bytes"
                  },
                  "typeName": {
                    "id": 6310,
                    "name": "bytes",
                    "nodeType": "ElementaryTypeName",
                    "src": "457:5:28",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bytes_storage_ptr",
                      "typeString": "bytes"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "456:21:28"
            },
            "payable": false,
            "returnParameters": {
              "id": 6313,
              "nodeType": "ParameterList",
              "parameters": [],
              "src": "484:0:28"
            },
            "scope": 6315,
            "src": "440:45:28",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 6316,
        "src": "71:416:28"
      }
    ],
    "src": "44:444:28"
  },
  "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": {}
  }
}