Description
Our dummy token interfaces are great for local testing, but on Mainnet, we have to interact with the official Stellar Asset Contract (SAC).
We need to update our token client initializations to explicitly use the token::Client provided by the Soroban SDK.
This ensures that when we call .transfer(), it natively moves real XLM or real USDC on the Stellar ledger.
This is the final bridge between our custom sandbox math and real-world ledger value.
Requirements