Reduce qualified type and event names - #2674
Open
leighmcculloch wants to merge 24 commits into
Open
leighmcculloch wants to merge 24 commits into
leighmcculloch wants to merge 24 commits into
Conversation
This was referenced Aug 7, 2026
leighmcculloch
force-pushed
the
patch-xdr-and-spec-crates
branch
from
September 3, 2026 15:19
65c31be to
69c41b9
Compare
This was referenced Sep 5, 2026
leighmcculloch
force-pushed
the
patch-xdr-and-spec-crates
branch
from
September 8, 2026 07:25
5fb4d08 to
7f6dacd
Compare
leighmcculloch
force-pushed
the
patch-xdr-and-spec-crates
branch
2 times, most recently
from
September 8, 2026 21:44
6a79b08 to
8710d3f
Compare
leighmcculloch
added this pull request to stack #2726
September 16, 2026 11:30
This was referenced Sep 22, 2026
leighmcculloch
force-pushed
the
patch-xdr-and-spec-crates
branch
from
September 23, 2026 07:01
727af47 to
22f59e5
Compare
leighmcculloch
removed this pull request from stack #2726
September 23, 2026 08:20
leighmcculloch
changed the base branch from
main
to
pass-cli-version-to-sdk
September 23, 2026 08:20
leighmcculloch
added this pull request to stack #2750
September 23, 2026 08:21
Contributor
There was a problem hiding this comment.
Copilot review overview
🟡 Changes recommended
Address unresolved reference handling, warning sanitization, image-path behavior, collision messaging, and integration coverage.
Get a fresh assessment by requesting another Copilot review.
Review effort: Lite
Findings: 3
Comment on lines
+608
to
+609
| String::from_utf8_lossy(&rename.from), | ||
| String::from_utf8_lossy(&rename.to), |
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.


Note
Part of a stack of PRs listed here:
What
Reduce the fully qualified UDT type names that stellar/rs-soroban-sdk#1970 emits (e.g.
my_contract::inner::State) down to short names during the build process.Why
The soroban-sdk will be emitting fully qualified user-defined type names as an intermediary step so that the stellar-cli can reduce the spec to only those types needed by the exported interface of a contract, and so that types will be guaranteed to have unique names. The long names are not good for most tooling though which is already accustomed to the short simple names. The cli can make this change in the soroban-sdk a no-op for the rest of the ecosystem by converting the names to unique simple names during the build step.