Skip to main content

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.

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 forks (such as Leap).

Usage

import { Signer } from "@apophis-sdk/core";
import { KeplrSigner, LeapSigner } from "@apophis-sdk/keplr-signer";

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

Deriving from KeplrSigner

TODO