Abstract
Abstract
typeAbstract
signStatic
verifyAbstract
connectAbstract
isAbstract
getAbstract
getFind cells of this signer
Optional
withData: null | booleanOptional
order: "asc" | "desc"Optional
limit: numberA async generator that yields all matches cells
Find transactions of this signer
Optional
groupByTransaction: null | falseOptional
order: "asc" | "desc"Optional
limit: numberA async generator that yields all matches transactions
Find transactions of this signer
Optional
order: "asc" | "desc"Optional
limit: numberA async generator that yields all matches transactions
Find transactions of this signer
Optional
groupByTransaction: null | booleanOptional
order: "asc" | "desc"Optional
limit: numberA async generator that yields all matches transactions
Signs a message and returns signature only. This method is not implemented and should be overridden by subclasses.
The message to sign, as a string or BytesLike object.
A promise that resolves to the signature as a string.
Sends a transaction after signing it.
The transaction to send, represented as a TransactionLike object.
A promise that resolves to the transaction hash as a Hex string.
Signs a transaction.
The transaction to sign, represented as a TransactionLike object.
A promise that resolves to the signed Transaction object.
prepare a transaction before signing. This method is not implemented and should be overridden by subclasses.
The transaction to prepare, represented as a TransactionLike object.
A promise that resolves to the prepared Transaction object.
Signs a transaction without preparing information for it. This method is not implemented and should be overridden by subclasses.
The transaction to sign, represented as a TransactionLike object.
A promise that resolves to the signed Transaction object.
An abstract class representing a generic signer. This class provides methods to connect, get addresses, and sign transactions.