{
    "Function": "constructor",
    "File": "contracts/FeeSplitter.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/security/ReentrancyGuard.sol",
        "node_modules/@openzeppelin/contracts/access/Ownable.sol",
        "node_modules/@openzeppelin/contracts/utils/Context.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "require(bool,string)",
        "setRoyaltiesWeight",
        "setShareholders"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "constructor(\n        address[] memory _accounts,\n        uint96[] memory _weights,\n        uint256 _royaltiesWeight,\n        address _weth\n    ) {\n        require(_weth != address(0), \"FS: INVALID_ADDRESS\");\n        // Initial shareholders addresses and weights\n        setShareholders(_accounts, _weights);\n        setRoyaltiesWeight(_royaltiesWeight);\n        weth = _weth;\n    }"
}