feat(examples): add multisig example to Rust and all bindings#988
Open
shaibuafeez wants to merge 6 commits intoiotaledger:developfrom
Open
feat(examples): add multisig example to Rust and all bindings#988shaibuafeez wants to merge 6 commits intoiotaledger:developfrom
shaibuafeez wants to merge 6 commits intoiotaledger:developfrom
Conversation
Thoralf-M
reviewed
Feb 25, 2026
c78f396 to
7f0d460
Compare
DaughterOfMars
approved these changes
Feb 27, 2026
Member
|
CI is failing and for Kotlin format run |
Member
|
Still need to format kotlin |
Contributor
Author
anytime 🫡 |
2 tasks
Member
thibault-martinez
left a comment
There was a problem hiding this comment.
We have merged C# since you opened the PR, would you mind adding an example for it? Otherwise we will do it.
Contributor
Author
I should help add for C# too? sure. |
Contributor
Author
|
Done |
Contributor
Author
Any time 🫡 |
Alex6323
reviewed
Mar 10, 2026
Comment on lines
+4
to
+11
| //! 2-of-3 Ed25519 multisig example. | ||
| //! | ||
| //! Derives 3 keypairs from a mnemonic at indices 0, 1, 2, creates a multisig | ||
| //! committee with threshold 2, funds the multisig address via faucet, builds | ||
| //! a `send_iota` transaction, signs with only 2 of the 3 keys, aggregates, | ||
| //! and executes. | ||
| //! | ||
| //! Requires a running localnet (`iota start --force-regenesis`). |
Contributor
There was a problem hiding this comment.
Any reason why we should not have this in the corresponding bindings examples as well? I guess users who are looking for examples for their particular langue don't necessarily also check the Rust example?
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
Test plan
cargo build --example multisig— compiles cleancargo clippy --example multisig— zero warningsgo vet+go build— cleangradlew build+gradlew example -Pexample=Multisig— compiles and runsswift build— compiles and links cleaniota start --force-regenesis)