ReadonlyprivateReadonlypublicProtectedclient_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.
Signs a transaction without preparing information for it. This method is not implemented and should be overridden by subclasses.
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.
A promise that resolves to the prepared Transaction object.
StaticverifyFind cells of this signer
The filter for the search key.
OptionalwithData: null | booleanWhether to include cell data in the response.
Optionalorder: "asc" | "desc"The order of the returned cells, can be "asc" or "desc".
Optionallimit: numberThe maximum number of cells for every querying chunk.
A async generator that yields all matching cells
Find cells of this signer
OptionalwithData: null | booleanOptionalorder: "asc" | "desc"Optionallimit: numberA async generator that yields all matches cells
Find transactions of this signer
OptionalgroupByTransaction: null | falseOptionalorder: "asc" | "desc"Optionallimit: numberA async generator that yields all matches transactions
Find transactions of this signer
Optionalorder: "asc" | "desc"Optionallimit: numberA async generator that yields all matches transactions
Find transactions of this signer
OptionalgroupByTransaction: null | booleanOptionalorder: "asc" | "desc"Optionallimit: numberA async generator that yields all matches transactions
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.
An abstract class representing a generic signer. This class provides methods to connect, get addresses, and sign transactions.