GetCapabilitiesResult class

Get Capabilities Result

Constructors

GetCapabilitiesResult({required bool supportsCloneAuthorization, required bool supportsSignAndSendTransactions, required int? maxTransactionsPerRequest, required int? maxMessagesPerRequest})
The result of a successful get_capabilities request.
const
GetCapabilitiesResult.fromJson(Map<String, dynamic> json)
Creates an instance of this class from the constructor parameters defined in the json object.
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
maxMessagesPerRequest int?
If present, the max number of transaction payloads which can be signed by a single sign_messages request. If absent, the implementation doesn’t publish a specific limit for this parameter.
final
maxTransactionsPerRequest int?
If present, the max number of transaction payloads which can be signed by a single sign_transactions or sign_and_send_transactions request. If absent, the implementation doesn’t publish a specific limit for this parameter.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
supportsCloneAuthorization bool
True if the clone_authorization method is supported, otherwise false.
final
supportsSignAndSendTransactions bool
True if the sign_and_send_transactions method is supported, otherwise false.
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.
toString() String
A string representation of this object.
inherited

Operators

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