> ## 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.

# Leap Wallet Integration

> A signer integration for Leap Wallet.

[Leap](https://leapwallet.io/) is a fork of [Keplr](https://keplr.app/) that is compatible with the
Keplr API. Thus, the `LeapSigner` is contained within the same `@apophis-sdk/keplr-signer` package.

## Usage

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

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

For more information see the [Keplr Signer](/projects/apophis-sdk/packages/cosmos-signers/keplr)
page.
