{
    "Function": "transferFrom",
    "File": "contracts/contracts/Velo.sol",
    "Parent Contracts": [],
    "High-Level Calls": [],
    "Internal Calls": [
        "_transfer"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function transferFrom(address _from, address _to, uint _value) external returns (bool) {\n        uint allowed_from = allowance[_from][msg.sender];\n        if (allowed_from != type(uint).max) {\n            allowance[_from][msg.sender] -= _value;\n        }\n        return _transfer(_from, _to, _value);\n    }"
}