Signer class abstract

A transport-agnostic signer. Keypairs sign directly; composite signers (e.g. MultiSigSigner, ZkLoginSigner) override signWithIntent, through which every signing method funnels.

Implementers

Constructors

Signer()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

getKeyScheme() SignatureScheme
The signature scheme of this signer.
getPublicKey() PublicKey
The public key for this signer.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
signPersonalMessage(Uint8List bytes) SignatureWithBytes
Sign a personal message.
signTransaction(Uint8List bytes) SignatureWithBytes
Sign transaction bytes.
signWithIntent(Uint8List bytes, IntentScope intent) SignatureWithBytes
Sign bytes with the given intent; returns serialized signature and base64 bytes.
toString() String
A string representation of this object.
inherited
toSuiAddress() String
The Sui address associated with this signer.

Operators

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