TransactionSpeed enum

Represents a relative gas price multiplier used when estimating or adjusting fees for a transaction.

These values do not correspond to specific gas prices; instead they provide a convenient qualitative scale (slow, normal, fast) that builders or clients may use to bias fee calculations.

For example, a higher value such as TransactionSpeed.fast may increase a max fee estimate, while TransactionSpeed.slow may decrease it.

Inheritance
Available extensions

Values

fast → const TransactionSpeed
const TransactionSpeed(75)
slow → const TransactionSpeed
const TransactionSpeed(25)
normal → const TransactionSpeed
const TransactionSpeed(50)

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
value int
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

Constants

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