TWStarkExMessageSigner class abstract

StarkEx message signing and verification.

StarkEx and some other wallets support a message signing & verification format, to create a proof (a signature) that someone has access to the private keys of a specific address.

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

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

TWStarkExMessageSignerSignMessage(Pointer<Void> privateKey, Pointer<Utf8> message) Pointer<Utf8>
Sign a message.
TWStarkExMessageSignerVerifyMessage(Pointer<Void> pubKey, Pointer<Utf8> message, Pointer<Utf8> signature) bool
Verify signature for a message.