@provablehq/aleo-wallet-adapter-core
v1.1.1
Published
Core wallet adapter logic and utilities
Downloads
40
Readme
@provablehq/aleo-wallet-adapter-core
Replaces
@provablehq/aleo-wallet-adaptor-core(deprecated). Update dependencies and imports using the migration guide.
Foundation utilities and base classes for implementing Aleo-compatible wallet adapters.
When to use it
- Author a first-party or partner wallet adapter that plugs into the Aleo wallet ecosystem.
- Share common adapter behaviour (events, feature checks, network switching) across multiple wallet implementations.
- Build higher-level tooling (React hooks, UI kits) on a consistent adapter contract.
Installation
pnpm add @provablehq/aleo-wallet-adapter-coreUsage
import { BaseAleoWalletAdapter } from '@provablehq/aleo-wallet-adapter-core';
class MyWalletAdapter extends BaseAleoWalletAdapter {
// extend the base adapter with wallet-specific logic
}Related packages
@provablehq/aleo-wallet-adapter-react– React provider and hooks built on this core.@provablehq/aleo-wallet-adapter-react-ui– Pre-built React components for any adapter that extends the core.@provablehq/aleo-wallet-standard– Shared feature definitions and event interfaces consumed by the base adapter.
Live demo: https://aleo-dev-toolkit-react-app.vercel.app/
