-
Notifications
You must be signed in to change notification settings - Fork 61
Open
13 / 1513 of 15 issues completedLabels
Description
🧩 Issue: Deploy All Contracts (Test Only)
🎯 Objective
Deploy all smart contracts under StarShopContracts/ to Stellar Testnet.
Each contract will have its own sub-issue for deployment tracking.
📐 Acceptance Criteria
Build Requirements
- Deployment must be done using Stellar CLI / Stellar SDK
- Each contract should be built with:
stellar contract build
Deployment Process
- Deployment should be executed on testnet:
stellar contract deploy \ --wasm target/wasm32-unknown-unknown/release/<contract_name>.wasm \ --source alice \ --network testnet
Documentation Requirements
- Each Pull Request must include the resulting
contractId(e.g.,CA...XYZ) in either:- A
DEPLOYMENTS.mdfile, or - The corresponding README of the contract
- A
Verification
- All contracts must be confirmed as compiled and deployed to testnet
- All deployments are test only (non-production)
⚠️ Important Notes
- Test Environment Only: All deployments are for testing purposes
- Network: Stellar Testnet only
- Source Account:
alice(testnet account) - Documentation: Contract IDs must be recorded for future reference
📝 Definition of Done
- All contracts in
StarShopContracts/successfully built - All contracts deployed to Stellar Testnet
- All contract IDs documented and accessible
- Deployment process verified and tested
- All sub-issues closed