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
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
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.