This repository contains the Rust/Soroban bounty contract under contracts/bounty.
- Network: Stellar Testnet
- Contract ID:
CDST3TZ2XMOKTKUWIZNVOFKBKSHEDAPCFRXFQTKU6COK6FICIUTO6COD - Deploy date (UTC):
2026-05-25 - Deployment transactions:
- WASM upload:
057144fc5bd581bb296abe4170dd1fd2c96d81368c222d5daba4fb2e1074cdc0 - Contract deploy:
2734e045e7081d9277ab3ee2fba5d57a1bfb6318eb36785896234e0c3667182e
- WASM upload:
Explorer links:
- https://stellar.expert/explorer/testnet/tx/057144fc5bd581bb296abe4170dd1fd2c96d81368c222d5daba4fb2e1074cdc0
- https://stellar.expert/explorer/testnet/tx/2734e045e7081d9277ab3ee2fba5d57a1bfb6318eb36785896234e0c3667182e
- https://lab.stellar.org/r/testnet/contract/CDST3TZ2XMOKTKUWIZNVOFKBKSHEDAPCFRXFQTKU6COK6FICIUTO6COD
- Install tooling:
brew install stellar-cli
rustup target add wasm32v1-none- Build and test contract:
cd contracts/bounty
cargo test
stellar contract build- Configure testnet and fund a deployer identity:
stellar network add testnet \
--rpc-url https://soroban-testnet.stellar.org \
--network-passphrase 'Test SDF Network ; September 2015'
stellar keys generate deployer --network testnet --fund
stellar keys address deployer- Deploy contract:
stellar contract deploy \
--wasm ../../target/wasm32v1-none/release/bounty.wasm \
--source deployer \
--network testnet