SuiSecp256k1AccountPublicKey class

Represents a Sui account public key using the Secp256k1 signing scheme.

Inheritance

Constructors

SuiSecp256k1AccountPublicKey.new(SuiSecp256k1PublicKey publicKey)
Creates a Secp256k1 account public key.
const
SuiSecp256k1AccountPublicKey.fromStruct(Map<String, dynamic> json)
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
publicKey SuiSecp256k1PublicKey
Secp256k1 public key
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
scheme SuiSigningScheme
finalinherited
serializableType BcsSerializableType
Specifies that this class represents a variant type.
no setterinherited
variantName String
Returns the name of the signing scheme variant.
no setterinherited

Methods

createLayout({String? property}) → Layout<Map<String, dynamic>>
Creates the layout for the Secp256k1 public key.
override
createVariantLayout({String? property}) → Layout<Map<String, dynamic>>
Creates a layout structure specifically for variants.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toAddress() SuiAddress
Converts the Secp256k1 public key to a Sui address.
override
toBcs({String? property}) List<int>
Serializes the object to BCS format (List of bytes).
inherited
toBcsBase64() String
Converts the BCS-encoded bytes to a Base64 string.
inherited
toBcsHex() String
Converts the BCS-encoded bytes to a hexadecimal string.
inherited
toJson() Map<String, dynamic>
Converts the variant structure to a JSON-compatible Map.
inherited
toLayoutStruct() Map<String, dynamic>
Converts the Secp256k1 public key to a layout struct.
override
toString() String
A string representation of this object.
inherited
toVariantBcs({String? property}) List<int>
Serializes the variant into BCS format (List of bytes).
inherited
toVariantBcsBase64() String
Converts the serialized variant into a Base64 string.
inherited
toVariantBcsHex() String
Converts the serialized variant into a hexadecimal string.
inherited
toVariantLayoutStruct() Map<String, dynamic>
Converts the variant to a layout-friendly structure with the variant name as the key.
inherited
verify({required List<int> message, required List<int> signature}) bool
Verifies the given signature against the provided message.
override
verifyPrsonalMessage({required List<int> message, required List<int> signature}) bool
verify personal message. the signature must be a valid sui signature.
override

Operators

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

Static Methods

layout({String? property}) → Layout<Map<String, dynamic>>
Defines the layout for the Secp256k1 public key structure.
override