An abstract class extending the Signer class for Bitcoin-like signing operations. This class provides methods to get Bitcoin account, public key, and internal address, as well as signing transactions.
Readonly
Gets the Bitcoin account associated with the signer.
A promise that resolves to a string representing the Bitcoin account.
Gets the Bitcoin public key associated with the signer.
A promise that resolves to a HexLike value representing the Bitcoin public key.
Ensure the BTC network is the same as CKB network.
Register a listener to be called when this signer is replaced.
A function for unregister
Connects to the signer.
A promise that resolves when the connection is complete.
Check if the signer is connected.
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.
A promise that resolves to the signature as a string.
Will throw an error if not implemented.
An abstract class extending the Signer class for Bitcoin-like signing operations. This class provides methods to get Bitcoin account, public key, and internal address, as well as signing transactions.