{
    "Function": "slitherConstructorConstantVariables",
    "File": "contracts/basket/contracts/facets/ERC20/LibERC20Storage.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "keccak256(bytes)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "library LibERC20Storage {\n    bytes32 constant ERC_20_STORAGE_POSITION =\n        keccak256(\n            // Compatible with pie-smart-pools\n            \"PCToken.storage.location\"\n        );\n\n    struct ERC20Storage {\n        string name;\n        string symbol;\n        uint256 totalSupply;\n        mapping(address => uint256) balances;\n        mapping(address => mapping(address => uint256)) allowances;\n    }\n\n    function erc20Storage() internal pure returns (ERC20Storage storage es) {\n        bytes32 position = ERC_20_STORAGE_POSITION;\n        assembly {\n            es.slot := position\n        }\n    }\n}"
}