-
Notifications
You must be signed in to change notification settings - Fork 2
Introduce Unified Wallet Interface and Providers #49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Conversation
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
Wiz Scan Summary
To detect these findings earlier in the dev lifecycle, try using Wiz Code VS Code Extension. |
✅ Deploy Preview for verbs-ui ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
its-everdred
approved these changes
Aug 28, 2025
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.

Overview
This pull request introduces a comprehensive wallet architecture for the Verbs SDK, focusing on modularity and extensibility. The following key components have been added:
New Files and Classes
PrivyWallet: Implements an embedded wallet using the Privy service, providing signing capabilities and integration with lending markets.DefaultSmartWallet: An ERC-4337 compatible smart wallet leveraging Coinbase Smart Account, supporting multi-owner configurations and gasless transactions.WalletNamespace: Provides a unified interface for wallet operations, facilitating access to both embedded and smart wallet functionalities.WalletProvider: Combines embedded and smart wallet functionalities, supporting pluggable providers for flexible wallet management.EmbeddedWallet(Base Class): Abstract class defining the standard interface for embedded wallets.SmartWallet(Base Class): Abstract class defining the standard interface for smart wallets.EmbeddedWalletProvider(Base Class): Abstract class for creating and retrieving embedded wallets.SmartWalletProvider(Base Class): Abstract class for creating and managing smart wallets.Key Features
Purpose
These additions aim to enhance the Verbs SDK by providing a robust and flexible wallet infrastructure, enabling seamless integration with different wallet providers and supporting advanced blockchain operations.