{
    "Function": "_initializeEIP712",
    "File": "contracts/lib/EIP712Base.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/proxy/utils/Initializable.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "initializer",
        "getChainId",
        "_setDomainSeperator"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _initializeEIP712(string memory name, string memory version)\n        internal\n        initializer\n    {\n        cachedChainId = getChainId();\n        cachedName = name;\n        cachedVersion = version;\n        _setDomainSeperator(name, version);\n    }"
}