feat: configure soroban-cli for local development (#159)#180
Merged
ayshadogo merged 1 commit intoMay 28, 2026
Merged
Conversation
- Add Makefile targets: setup, deploy-testnet, deploy-sandbox, sandbox-start - Add scripts/deploy.sh supporting testnet/sandbox/mainnet networks - Add deployments/ directory (tracked via .gitkeep) - Update .gitignore to exclude deployment JSON files and .stellaraid_contract_id Acceptance criteria met: - soroban-cli installed via 'make setup' - Local sandbox configured via 'make sandbox-start' - 'make build' compiles all contracts (wasm32-unknown-unknown) - 'make deploy-sandbox' deploys to local sandbox - 'make deploy-testnet' deploys to Stellar testnet Closes Dfunder#159
|
@snowrugar-beep Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
ayshadogo
approved these changes
May 28, 2026
Contributor
ayshadogo
left a comment
There was a problem hiding this comment.
LGTM
nice contribution
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Closes #159
Sets up soroban-cli tooling and Makefile shortcuts so contributors can build, test, and deploy contracts locally with a single command.
Changes
Makefilemake setup— installsstellar-clivia cargo and adds thewasm32-unknown-unknowntargetmake sandbox-start— spins up a local Stellar sandbox via Docker (Quickstart image)make deploy-sandbox— builds WASM then deploys to the local sandboxmake deploy-testnet— builds WASM then deploys to Stellar testnetbuild,test,fmt,lint,clean) preservedscripts/deploy.shdeploy-sandboxanddeploy-testnet.envautomaticallytestnet,sandbox, andmainnetnetworksdeployments/<network>.jsonalready existsdeployments/<network>.json(see Set up Soroban testnet deployment pipeline #160)deployments/.gitkeepdeployments/directory in git without committing JSON records.gitignoredeployments/*.jsonand.stellaraid_contract_id(network-specific artifacts)Acceptance Criteria
make setupmake sandbox-startmake buildcompiles all contractsmake deploy-sandboxdeploys to local sandboxmake deploy-testnetdeploys to Stellar testnetTesting