An abstract class representing a generic signer. This class provides methods to connect, get addresses, and sign transactions.

Hierarchy (view full)

Constructors

Properties

Accessors

Methods

  • Gets the internal address associated with the signer.

    Returns Promise<string>

    A promise that resolves to a string representing the internal address.

  • Gets the identity for verifying signature, usually it's address

    Returns Promise<string>

    A promise that resolves to a string representing the identity

  • Returns Promise<string>

  • Returns Promise<`0x${string}`>

  • Connects to the signer.

    Returns Promise<void>

    A promise that resolves when the connection is complete.

  • Register a listener to be called when this signer is replaced.

    Parameters

    • listener: (() => void)
        • (): void
        • Returns void

    Returns (() => void)

    A function for unregister

      • (): void
      • Returns void

  • Check if the signer is connected.

    Returns Promise<boolean>

    A promise that resolves the connection status.

  • Signs a message and returns signature only. This method is not implemented and should be overridden by subclasses.

    Parameters

    Returns Promise<string>

    A promise that resolves to the signature as a string.

    Will throw an error if not implemented.

  • Signs a transaction without preparing information for it. This method is not implemented and should be overridden by subclasses.

    Parameters

    Returns Promise<Transaction>

    A promise that resolves to the signed Transaction object.

    Will throw an error if not implemented.

  • prepare a transaction before signing. This method is not implemented and should be overridden by subclasses.

    Parameters

    Returns Promise<Transaction>

    A promise that resolves to the prepared Transaction object.

    Will throw an error if not implemented.