feat: add testnet deploy and init script for escrow contract#549
Open
Dayz-tech-co wants to merge 2 commits into
Open
feat: add testnet deploy and init script for escrow contract#549Dayz-tech-co wants to merge 2 commits into
Dayz-tech-co wants to merge 2 commits into
Conversation
|
@Dayz-tech-co is attempting to deploy a commit to the 1nonly's projects Team on Vercel. A member of the Team first needs to authorize it. |
Rebuilt on top of upstream/master to resolve PR conflicts.
b98b54b to
1413056
Compare
|
@Dayz-tech-co 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! 🚀 |
Fixes the Coverage Check failure caused by a ReferenceError in apiResponse.fail.
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.
Closes #485
#539
This PR adds a secure, reviewable testnet deployment flow for the escrow/commitment core contract under the new contracts/ workspace scaffold.
What changed
Added contracts/scripts/deploy-testnet.sh
Builds from contracts/Cargo.toml using stellar contract build
Deploys the compiled WASM to Stellar testnet
Invokes initialize(admin, token, fee_recipient)
Upserts the deployed contract id into:
NEXT_PUBLIC_COMMITMENT_CORE_CONTRACT
COMMITMENT_CORE_CONTRACT
SOROBAN_COMMITMENT_CORE_CONTRACT
Reads all sensitive inputs from environment variables only
Supports DRY_RUN=1 for safe local verification
Added deployment scaffolding and docs
contracts/Cargo.toml
contracts/.gitignore
contracts/README.md
Added a zero-dependency smoke test
contracts/scripts/deploy-testnet.smoke.mjs
Verifies dry-run behavior, env-file updates, and missing-input guardrails
Updated repo docs/config notes
.env.example
docs/config.md
package.json with test:contracts:deploy
Why
Before this change, there was no scripted way to build, deploy, initialize, and wire the contract id into the frontend/backend env configuration. This PR makes that flow repeatable and safer for testnet deployments.
Validation
Ran:
npm run test:contracts:deploy
Output:
deploy-testnet.sh dry-run smoke test passed