{
    "Function": "file",
    "File": "src/token/ERC20.sol",
    "Parent Contracts": [
        "src/util/Context.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "auth",
        "revert(string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function file(bytes32 what, string memory data) external auth {\n        if (what == \"name\") name = data;\n        else if (what == \"symbol\") symbol = data;\n        else revert(\"ERC20/file-unrecognized-param\");\n        emit File(what, data);\n    }"
}