{
  "contractName": "ISTProxy",
  "abi": [
    {
      "constant": false,
      "inputs": [
        {
          "name": "_name",
          "type": "string"
        },
        {
          "name": "_symbol",
          "type": "string"
        },
        {
          "name": "_decimals",
          "type": "uint8"
        },
        {
          "name": "_tokenDetails",
          "type": "string"
        },
        {
          "name": "_issuer",
          "type": "address"
        },
        {
          "name": "_divisible",
          "type": "bool"
        },
        {
          "name": "_polymathRegistry",
          "type": "address"
        }
      ],
      "name": "deployToken",
      "outputs": [
        {
          "name": "",
          "type": "address"
        }
      ],
      "payable": false,
      "stateMutability": "nonpayable",
      "type": "function"
    }
  ],
  "bytecode": "0x",
  "deployedBytecode": "0x",
  "sourceMap": "",
  "deployedSourceMap": "",
  "source": "pragma solidity ^0.4.24;\n\n/**\n * @title Interface for security token proxy deployment\n */\ncontract ISTProxy {\n\n    /**\n     * @notice deploys the token and adds default modules like permission manager and transfer manager.\n     * Future versions of the proxy can attach different modules or pass some other paramters.\n     */\n    function deployToken(string _name, string _symbol, uint8 _decimals, string _tokenDetails, address _issuer, bool _divisible, address _polymathRegistry)\n        public returns (address);\n}\n",
  "sourcePath": "/Users/satyamagrawal/Repositories/testing-package/polymath-core/contracts/interfaces/ISTProxy.sol",
  "ast": {
    "absolutePath": "/Users/satyamagrawal/Repositories/testing-package/polymath-core/contracts/interfaces/ISTProxy.sol",
    "exportedSymbols": {
      "ISTProxy": [
        10070
      ]
    },
    "id": 10071,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 10050,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "0:24:18"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "contract",
        "documentation": "@title Interface for security token proxy deployment",
        "fullyImplemented": false,
        "id": 10070,
        "linearizedBaseContracts": [
          10070
        ],
        "name": "ISTProxy",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": "@notice deploys the token and adds default modules like permission manager and transfer manager.\nFuture versions of the proxy can attach different modules or pass some other paramters.",
            "id": 10069,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "deployToken",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 10065,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10052,
                  "name": "_name",
                  "nodeType": "VariableDeclaration",
                  "scope": 10069,
                  "src": "351:12:18",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 10051,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "351:6:18",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10054,
                  "name": "_symbol",
                  "nodeType": "VariableDeclaration",
                  "scope": 10069,
                  "src": "365:14:18",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 10053,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "365:6:18",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10056,
                  "name": "_decimals",
                  "nodeType": "VariableDeclaration",
                  "scope": 10069,
                  "src": "381:15:18",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint8",
                    "typeString": "uint8"
                  },
                  "typeName": {
                    "id": 10055,
                    "name": "uint8",
                    "nodeType": "ElementaryTypeName",
                    "src": "381:5:18",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint8",
                      "typeString": "uint8"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10058,
                  "name": "_tokenDetails",
                  "nodeType": "VariableDeclaration",
                  "scope": 10069,
                  "src": "398:20:18",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 10057,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "398:6:18",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10060,
                  "name": "_issuer",
                  "nodeType": "VariableDeclaration",
                  "scope": 10069,
                  "src": "420:15:18",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10059,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "420:7:18",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10062,
                  "name": "_divisible",
                  "nodeType": "VariableDeclaration",
                  "scope": 10069,
                  "src": "437:15:18",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 10061,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "437:4:18",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10064,
                  "name": "_polymathRegistry",
                  "nodeType": "VariableDeclaration",
                  "scope": 10069,
                  "src": "454:25:18",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10063,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "454:7:18",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "350:130:18"
            },
            "payable": false,
            "returnParameters": {
              "id": 10068,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10067,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10069,
                  "src": "505:7:18",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10066,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "505:7:18",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "504:9:18"
            },
            "scope": 10070,
            "src": "330:184:18",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 10071,
        "src": "90:426:18"
      }
    ],
    "src": "0:517:18"
  },
  "legacyAST": {
    "absolutePath": "/Users/satyamagrawal/Repositories/testing-package/polymath-core/contracts/interfaces/ISTProxy.sol",
    "exportedSymbols": {
      "ISTProxy": [
        10070
      ]
    },
    "id": 10071,
    "nodeType": "SourceUnit",
    "nodes": [
      {
        "id": 10050,
        "literals": [
          "solidity",
          "^",
          "0.4",
          ".24"
        ],
        "nodeType": "PragmaDirective",
        "src": "0:24:18"
      },
      {
        "baseContracts": [],
        "contractDependencies": [],
        "contractKind": "contract",
        "documentation": "@title Interface for security token proxy deployment",
        "fullyImplemented": false,
        "id": 10070,
        "linearizedBaseContracts": [
          10070
        ],
        "name": "ISTProxy",
        "nodeType": "ContractDefinition",
        "nodes": [
          {
            "body": null,
            "documentation": "@notice deploys the token and adds default modules like permission manager and transfer manager.\nFuture versions of the proxy can attach different modules or pass some other paramters.",
            "id": 10069,
            "implemented": false,
            "isConstructor": false,
            "isDeclaredConst": false,
            "modifiers": [],
            "name": "deployToken",
            "nodeType": "FunctionDefinition",
            "parameters": {
              "id": 10065,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10052,
                  "name": "_name",
                  "nodeType": "VariableDeclaration",
                  "scope": 10069,
                  "src": "351:12:18",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 10051,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "351:6:18",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10054,
                  "name": "_symbol",
                  "nodeType": "VariableDeclaration",
                  "scope": 10069,
                  "src": "365:14:18",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 10053,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "365:6:18",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10056,
                  "name": "_decimals",
                  "nodeType": "VariableDeclaration",
                  "scope": 10069,
                  "src": "381:15:18",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_uint8",
                    "typeString": "uint8"
                  },
                  "typeName": {
                    "id": 10055,
                    "name": "uint8",
                    "nodeType": "ElementaryTypeName",
                    "src": "381:5:18",
                    "typeDescriptions": {
                      "typeIdentifier": "t_uint8",
                      "typeString": "uint8"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10058,
                  "name": "_tokenDetails",
                  "nodeType": "VariableDeclaration",
                  "scope": 10069,
                  "src": "398:20:18",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_string_memory_ptr",
                    "typeString": "string"
                  },
                  "typeName": {
                    "id": 10057,
                    "name": "string",
                    "nodeType": "ElementaryTypeName",
                    "src": "398:6:18",
                    "typeDescriptions": {
                      "typeIdentifier": "t_string_storage_ptr",
                      "typeString": "string"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10060,
                  "name": "_issuer",
                  "nodeType": "VariableDeclaration",
                  "scope": 10069,
                  "src": "420:15:18",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10059,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "420:7:18",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10062,
                  "name": "_divisible",
                  "nodeType": "VariableDeclaration",
                  "scope": 10069,
                  "src": "437:15:18",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_bool",
                    "typeString": "bool"
                  },
                  "typeName": {
                    "id": 10061,
                    "name": "bool",
                    "nodeType": "ElementaryTypeName",
                    "src": "437:4:18",
                    "typeDescriptions": {
                      "typeIdentifier": "t_bool",
                      "typeString": "bool"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                },
                {
                  "constant": false,
                  "id": 10064,
                  "name": "_polymathRegistry",
                  "nodeType": "VariableDeclaration",
                  "scope": 10069,
                  "src": "454:25:18",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10063,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "454:7:18",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "350:130:18"
            },
            "payable": false,
            "returnParameters": {
              "id": 10068,
              "nodeType": "ParameterList",
              "parameters": [
                {
                  "constant": false,
                  "id": 10067,
                  "name": "",
                  "nodeType": "VariableDeclaration",
                  "scope": 10069,
                  "src": "505:7:18",
                  "stateVariable": false,
                  "storageLocation": "default",
                  "typeDescriptions": {
                    "typeIdentifier": "t_address",
                    "typeString": "address"
                  },
                  "typeName": {
                    "id": 10066,
                    "name": "address",
                    "nodeType": "ElementaryTypeName",
                    "src": "505:7:18",
                    "typeDescriptions": {
                      "typeIdentifier": "t_address",
                      "typeString": "address"
                    }
                  },
                  "value": null,
                  "visibility": "internal"
                }
              ],
              "src": "504:9:18"
            },
            "scope": 10070,
            "src": "330:184:18",
            "stateMutability": "nonpayable",
            "superFunction": null,
            "visibility": "public"
          }
        ],
        "scope": 10071,
        "src": "90:426:18"
      }
    ],
    "src": "0:517:18"
  },
  "compiler": {
    "name": "solc",
    "version": "0.4.24+commit.e67f0147.Emscripten.clang"
  },
  "networks": {},
  "schemaVersion": "2.0.1",
  "updatedAt": "2018-08-21T09:48:12.402Z"
}