Docs/AA Hyperwallet

AA Hyperwallet

Build network-agnostic, gasless smart wallet infrastructure that works seamlessly across EVM, Solana, and SUI blockchains.

Activev0.1.0

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

AA Hyperwallet leverages Account Abstraction (ERC-4337 and EIP-7702) to enable gasless transactions, social logins, and flexible authentication methods.

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

Terminal
npm install aa-hyperwallet

2. Configure

App.tsx
import { SmartWalletAuth } from 'aa-hyperwallet';

function App() {
  return (
    <SmartWalletAuth
      email={true}
      social={true}
      networks={['hyperion', 'base']}
    />
  );
}

Next Steps