Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates the crowdfunding tutorial to use the latest MultiversX framework (v0.64.1), reorganizes the tutorial structure into multiple parts, and modernizes the testing approach from scenario-based to blackbox testing.
Changes:
- Updated crowdfunding tutorial structure from 2 parts to 3 parts with a final code reference page, moving files to a new
crowdfunding/subdirectory - Migrated from deprecated waltz library to custom markdown parser using pulldown-cmark for code extraction
- Replaced JSON scenario tests with modern blackbox tests supporting both EGLD and ESDT tokens
Reviewed changes
Copilot reviewed 24 out of 25 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| testing/rust-tutorial-ci.sh | Updated script to use proper path handling and changed directory from crowdfunding-esdt to crowdfunding |
| testing/extract-tutorial-code/src/parser.rs | New markdown parser implementation replacing waltz dependency |
| testing/extract-tutorial-code/src/extract_code.rs | Refactored to use custom parser and extract blackbox test files instead of JSON scenarios |
| testing/extract-tutorial-code/Cargo.toml | Updated to Rust edition 2024 and pulldown-cmark 0.13 |
| testing/crowdfunding/* | New crowdfunding contract files including proxy, config, and metadata |
| testing/crowdfunding-esdt/tests/crowdfunding_scenario_rs_test.rs | Removed old scenario-based tests |
| sidebars.js | Reorganized crowdfunding tutorial into a category with 4 parts |
| rust-toolchain.toml | Added Rust 1.92 toolchain specification |
| docusaurus.config.js | Added redirects for old crowdfunding tutorial URLs |
| docs/developers/tutorials/crowdfunding/* | New tutorial structure with parts 1-3 and final code reference |
| docs/developers/testing/sc-debugging.md | Updated reference from crowdfunding-esdt to crowdfunding |
| docs/developers/testing/rust/whitebox-legacy.md | Updated reference from crowdfunding-esdt to crowdfunding |
| docs/developers/overview.md | Updated tutorial links to new paths |
| docs/developers/developer-reference/sc-payments.md | Updated deprecation note from 0.64.0 to 0.64.1 |
| Cargo.toml | Added resolver 3 and updated crowdfunding directory exclusion |
| .github/workflows/rust-tutorial-ci.yml | Updated GitHub Actions versions and Rust toolchain to 1.92 |
Comments suppressed due to low confidence (2)
testing/crowdfunding/meta/Cargo.toml:4
- Rust edition '2024' does not exist. The valid Rust editions are 2015, 2018, and 2021. Change this to 'edition = "2021"'.
docs/developers/tutorials/crowdfunding/crowdfunding-p1.md:85 - Rust edition '2024' does not exist in the tutorial documentation. The valid Rust editions are 2015, 2018, and 2021. This should be 'edition = "2021"'.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
sergiuosvat
previously approved these changes
Jan 16, 2026
radumojic
previously approved these changes
Jan 16, 2026
The base branch was changed.
sergiuosvat
approved these changes
Jan 16, 2026
radumojic
approved these changes
Jan 16, 2026
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.
Description of the pull request (what is new / what has changed)
This PR updates the crowdfunding tutorial to use the latest MultiversX framework (v0.64.1), reorganizes the tutorial structure into multiple parts, and modernizes the testing approach from scenario-based to blackbox testing.
Changes:
Did you test the changes locally ?
Which category (categories) does this pull request belong to?