{
    "Function": "transferTrancheTokensToEVM",
    "File": "src/PoolManager.sol",
    "Parent Contracts": [
        "src/util/Auth.sol"
    ],
    "High-Level Calls": [
        "GatewayLike",
        "TrancheTokenLike"
    ],
    "Internal Calls": [
        "require(bool,string)",
        "getTrancheToken"
    ],
    "Library Calls": [],
    "Low-Level Calls": [],
    "Code": "function transferTrancheTokensToEVM(\n        uint64 poolId,\n        bytes16 trancheId,\n        uint64 destinationChainId,\n        address destinationAddress,\n        uint128 amount\n    ) public {\n        TrancheTokenLike trancheToken = TrancheTokenLike(getTrancheToken(poolId, trancheId));\n        require(address(trancheToken) != address(0), \"PoolManager/unknown-token\");\n\n        trancheToken.burn(msg.sender, amount);\n        gateway.transferTrancheTokensToEVM(\n            poolId, trancheId, msg.sender, destinationChainId, destinationAddress, amount\n        );\n    }"
}