Serializes a Serializable
value to its BCS representation.
This function is the TypeScript SDK equivalent of bcs::to_bytes
in Move.
the BCS representation of the Serializable instance as a byte buffer.
Converts the BCS-serialized bytes of a value into a Hex instance. This function provides a Hex representation of the BCS-serialized data for easier handling and manipulation.
A Hex instance with the BCS-serialized bytes loaded into its underlying Uint8Array.
Creates an instance of the class with the specified account authenticator.
The Ed25519PublicKey that will be used for authentication.
The Ed25519Signature that will be used for authentication.
Serializes the transaction authenticator by encoding the sender information.
The serializer instance used to perform the serialization.
Static
deserializeDeserializes a TransactionAuthenticator from the provided deserializer. This function helps in reconstructing the TransactionAuthenticator based on the variant index found in the serialized data.
The deserializer instance used to read the serialized data.
Static
loadLoads a TransactionAuthenticatorSingleSender instance from the provided deserializer. This function helps in deserializing the sender information to create a transaction authenticator.
The deserializer used to extract the sender data.
Returns the hex string representation of the Serializable
value with the 0x prefix.
the hex formatas a string prefixed by 0x
.
Returns the hex string representation of the Serializable
value without the 0x prefix.
the hex format as a string without 0x
prefix.
Represents a transaction authenticator using Ed25519 for a single signer transaction. This class encapsulates the client's public key and the Ed25519 signature of a raw transaction.
Param: public_key
The client's public key.
Param: signature
The Ed25519 signature of a raw transaction.
See
Creating a Signed Transaction for details about generating a signature.