{
    "Function": "getDomainSeperator",
    "File": "contracts/lib/EIP712Base.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts/proxy/utils/Initializable.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "getChainId",
        "keccak256(bytes)",
        "getChainId",
        "abi.encode()",
        "keccak256(bytes)",
        "keccak256(bytes)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function getDomainSeperator() public view returns (bytes32) {\n        if (getChainId() == cachedChainId) {\n            return domainSeperator;\n        } else {\n            return\n                keccak256(\n                    abi.encode(\n                        EIP712_DOMAIN_TYPEHASH,\n                        keccak256(bytes(cachedName)),\n                        keccak256(bytes(cachedVersion)),\n                        address(this),\n                        bytes32(getChainId())\n                    )\n                );\n        }\n    }"
}