AptosAnySignatures enum

Enum representing different types of signatures supported by Aptos.

Inheritance
Available extensions

Values

ed25519 → const AptosAnySignatures

Ed25519 signature type.

const AptosAnySignatures(value: 0)
secp256k1 → const AptosAnySignatures

Secp256k1 signature type.

const AptosAnySignatures(value: 1)
keyless → const AptosAnySignatures

Keyless signature type.

const AptosAnySignatures(value: 2)

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
toSupportedKeyAlgorithm AptosKeyAlgorithm?
no setter
value int
Integer value associated with each signature type.
final

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

fromName(String? name) AptosAnySignatures
Retrieves the signature type based on its name.

Constants

values → const List<AptosAnySignatures>
A constant List of the values in this enum, in order of their declaration.