ConfirmedSignatureInfo class

Confirmed Signature Info

Inheritance

Constructors

ConfirmedSignatureInfo.new({required String signature, required u64 slot, required Map<String, dynamic>? err, required String? memo, required i64 blockTime})
Confirmed signature info.
const
ConfirmedSignatureInfo.fromJson(Map<String, dynamic> json)
Creates an instance of this class from the constructor parameters defined in the json object.
factory

Properties

blockTime i64
The estimated production time, as a Unix timestamp (seconds since the Unix epoch) of when the transaction was processed - null if not available.
final
err Map<String, dynamic>?
An error if transaction failed, null if transaction succeeded.
final
hashCode int
The hash code for this object.
no setterinherited
memo String?
The memo associated with the transaction, null if no memo is present.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
signature String
The transaction signature as base-58 encoded string.
final
slot u64
The slot that contains the block with the transaction.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Serialises this class into a JSON object.
override
toString() String
A string representation of this object.
inherited

Operators

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

Static Methods

tryFromJson(Map<String, dynamic>? json) ConfirmedSignatureInfo?
Creates an instance of this class from the constructor parameters defined in the json object.
override