Readonly
accountAccount address associated with the account
Readonly
publicPublic key associated with the account
Readonly
signerAn array of indices where for signer[i], signerIndicies[i] is the index of the corresponding public key in publicKey.publicKeys. Used to derive the right public key to use for verification.
Readonly
signersThe signers used to sign messages. These signers should correspond to public keys in the MultiEd25519Account. The number of signers should be equal to this.publicKey.threshold.
Readonly
signingSigning scheme used to sign transactions
Verify the given message and signature with the public key.
MultiEd25519 signatures do not depend on chain state, so this function is equivalent to the synchronous verifySignature method.
The arguments for verifying the signature.
The configuration object for connecting to the Aptos network
Raw message data in HexInput format.
Optional
options?: { throwErrorWithReason?: boolean }Signed message signature.
A boolean indicating whether the signature is valid.
Sign the given message using the account's Ed25519 private keys.
in HexInput format
MultiEd25519Signature
Sign the given transaction using the available signing capabilities.
the transaction to be signed
Signature
Sign a transaction using the account's Ed25519 private keys.
the raw transaction
the AccountAuthenticator containing the signature of the transaction, together with the account's public key
Sign a message using the account's Ed25519 private key.
the signing message, as binary input
the AccountAuthenticator containing the signature, together with the account's public key
Verify the given message and signature with the public key.
Signer implementation for the Multi-Ed25519 authentication scheme.
Note: This authentication scheme is a legacy authentication scheme. Prefer using MultiKeyAccounts as a MultiKeyAccount can support any type of signer, not just Ed25519. Generating a signer instance does not create the account on-chain.