feat(escrow): add Soroban escrow deploy script and docs\n\nCloses #126#136
Merged
SudiptaPaul-31 merged 1 commit intoJun 25, 2026
Merged
Conversation
|
@emteebug12-jpg 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! 🚀 |
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.
Adds a helper script to build the escrow Soroban contract WASM and a deployment guide for deploying to the Stellar Testnet. Enables end-to-end wiring for the frontend/backend to call the on-chain escrow contract.
Changes:
Added: contracts/deploy_escrow_testnet.sh — build helper and optional auto-deploy.
Added: docs/soroban-escrow-deployment.md — prerequisites, CLI examples, and integration notes.
Updated: README.md — link to deployment doc.
Context: Contract implementation exists at lib.rs. JS stub to replace: deploy.ts.
How to test:
Run the build helper locally (requires rust, wasm32 target, and soroban CLI):
Notes / Next steps:
The current JS stub at deploy.ts should be replaced with a TypeScript deployer that uploads WASM and invokes initialize via @stellar/stellar-sdk or Soroban RPC.
The branch is feature/escrow-deploy-126; this PR moves the deliverables off main so they can be reviewed.
Recommend reviewers: contracts/Soroban maintainers and a backend owner familiar with Stellar integration.
Closes #126