MultiSignerInterface class abstract

An interface for a multi-signer, allowing signing of data and returning the result.

the multi-signer interface provides a uniform interface for accessing signer address and signing messages in the Ethereum context. This allows for flexibility in creating different implementations of multi-signers while adhering to a common interface. interfaces include: Credential, Passkey and HD Wallet

Implementers

Constructors

MultiSignerInterface()

Properties

hashCode int
The hash code for this object.
read-onlyinherited
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited

Methods

getAddress({int index = 0, dynamic bytes}) String
Returns the Hex address associated with the signer.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
personalSign(Uint8List hash, {int? index, String? id}) Future<Uint8List>
Signs the provided hash using a multi-signature process.
signToEc(Uint8List hash, {int? index, String? id}) Future<MsgSignature>
Signs the provided hash and returns the result as a MsgSignature.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited