{
    "Function": "setTokenOwner",
    "File": "contracts/SecondSwap_VestingDeployer.sol",
    "Parent Contracts": [
        "node_modules/@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"
    ],
    "High-Level Calls": [],
    "Internal Calls": [
        "onlyAdmin",
        "require(bool,string)"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function setTokenOwner(address token, address _owner) external onlyAdmin {\n        require(_tokenOwner[_owner] == address(0), \"SS_VestingDeployer: Existing token have owner\");\n        _tokenOwner[_owner] = token;\n    }"
}