The signature of the transaction signed by the signer.
The public key of the signer.
Static toSerializes an array of Approvals into a Uint8Array typed byte array.
This is used to store or transmit the approvals associated with a deploy.
A Uint8Array typed byte array that can be deserialized back into an array of Approval objects.
const approvals = [new Approval(publicKey, signature)];
const serializedApprovals = Approval.toBytes(approvals);
An array of Approval objects that represent signatures from accounts that have approved the deploy.
Generated using TypeDoc
Represents an approval for a transaction with a signer and signature.