Leap is a fork of Keplr that is compatible with the Keplr API. Thus, the LeapSigner is contained within the same @apophis-sdk/keplr-signer package.

Usage

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