> ## Documentation Index
> Fetch the complete documentation index at: https://docs.kiruse.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Keplr Wallet Integration

> A signer integration for Keplr Wallet.

This package exposes the `KeplrSigner`, and a derived class `LeapSigner`. `KeplrSigner` is a
specialization of the `Signer` class from `@apophis-sdk/core` designed to make it easier to
integrate new [Keplr](https://keplr.app) forks (such as [Leap](https://leapwallet.io)).

## Usage

```ts theme={null}
import { Signer } from "@apophis-sdk/core";
import { KeplrSigner, LeapSigner } from "@apophis-sdk/keplr-signer";

Signer.register(
  new KeplrSigner(),
  new LeapSigner(),
);
```

## Deriving from KeplrSigner

***TODO***
