{
    "Function": "_getChainId",
    "File": "contracts/contracts/visor/EIP712.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "chainid()"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function _getChainId() private view returns (uint256 chainId) {\n        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691\n        // solhint-disable-next-line no-inline-assembly\n        assembly {\n            chainId := chainid()\n        }\n    }"
}