Contract ID - CBBMIXVDQJB6TV36UKTQVBE2QT5DGR4OKJ7WZW6AQOEUVH5NAWXKZGAV
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
rustup target add wasm32-unknown-unknown
cargo install --locked soroban-cli
soroban contract build
soroban network add
--global testnet
--rpc-url https://soroban-testnet.stellar.org:443
--network-passphrase "Test SDF Network"
soroban contract deploy
--wasm target/wasm32-unknown-unknown/release/hello_world.wasm
--source alice
--network testnet
Here we created Simple token on Soroban stellar testnet on which ew can interact it with contract ID Whole smart contract is created using Rust and Soroban SDKs We can Mint tokens and Burn as well. Also we can Freeze and Unfreeze the token for certain user