feat(mwa-v2): add core type declarations and update .gitignore#3
Open
Zurcusa wants to merge 4 commits into
Open
feat(mwa-v2): add core type declarations and update .gitignore#3Zurcusa wants to merge 4 commits into
Zurcusa wants to merge 4 commits into
Conversation
This was referenced May 7, 2026
74f57aa to
314f641
Compare
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.
Problem
The MWA v2 protocol introduces per-account metadata, structured authorization caching, typed error codes, discriminated-union result types, and Sign-In With Solana (SIWS) payloads — none of which have type representations in the SDK today. The
.gitignoreis also missing Unity-generated file patterns.Solution
Add 21 new C# files (+ Unity
.metafiles) declaring the v2 API surface. Update.gitignorewith Unity-generated files, IDE exclusions, and sub-project patterns.Domain types:
AccountInfo,AuthorizationRecord,LogVerbosity,SendOptions,MobileWalletAdapterErrorCode,SignInPayload,SignInResultInterfaces:
IAuthorizationCache(addresses #272),IMobileWalletAdapterSession,ITransactionPayloadResult types (abstract class hierarchies):
DeauthorizeResult— FullyRevoked / LocalOnly / FailedReconnectResult— SilentSuccess / FreshAuthorized / NoCachedSession / FailedSignAndSendTxResult— Success / UserDenied / InvalidPayloads / NotSubmitted / TooManyPayloads / ChainNotSupported / WalletUnreachableExceptions:
InvalidAuthorizationException,JsonRpcException,TransportException,OperationInFlightException,CacheSchemaVersionMismatchException,ChainMismatchExceptionOther:
LegacyTransactionPayload,AuthorizationHelpers(stub bodies filled in PR #4)Other changes
.gitignorewith Unity-generated patterns and IDE exclusionsDeploy Notes
No new dependencies. All types are in the
Solana.Unity.SolanaMobileStacknamespace. Nothing references these types yet — the build stays green because this is purely additive.Testing Matrix
Tested on Pixel 7 emulator and Solana Seeker (real device).
Wallets Tested
Functionality Coverage