AA Hyperwallet
Build network-agnostic, gasless smart wallet infrastructure that works seamlessly across EVM, Solana, and SUI blockchains.
What is AA Hyperwallet?
AA Hyperwallet is a visual builder for smart wallet authentication systems. Configure authentication methods, network settings, and branding options through an intuitive interface. Preview your configuration in real-time and export ready-to-use React components or JSON configurations.
Account Abstraction
Key Features
Multiple Authentication Methods
Email, SMS, Social logins, and Passkey support
External Wallet Integration
Connect MetaMask, Coinbase, WalletConnect, and Smart Wallets
Multi-Chain Support
Configure networks including Hyperion, Base, Mantle, and more
Code Generation
Export React components or JSON configuration files
Customizable Branding
Theme, colors, fonts, and logo customization
Session Management
Configure persistence, duration, and spending limits
Quick Start
Get started with AA Hyperwallet in three steps:
1. Install
npm install aa-hyperwallet2. Configure
import { SmartWalletAuth } from 'aa-hyperwallet';
function App() {
return (
<SmartWalletAuth
email={true}
social={true}
networks={['hyperion', 'base']}
/>
);
}