Send any fungible token from the contract to a recipient
The contract must already hold the chosen token (someone transferred it to the contract). Anyone can call this function to forward that token to a recipient. Works with XLM (pass the native asset address) or any custom Soroban fungible token.
token_address - The fungible token contract address (e.g. from soroban contract id asset --asset native --network <network> for XLM)recipient - The Stellar address to send the token toamount - The amount in the token's smallest units (e.g. stroops for XLM)Returns true on success
fn send_token(
env: soroban_sdk::Env,
token_address: soroban_sdk::Address,
recipient: soroban_sdk::Address,
amount: i128,
) -> bool