Create a new LogicSigAccount. By default this will create an escrow
LogicSig account. Call sign or signMultisig on the newly created
LogicSigAccount to make it a delegated account.
The compiled TEAL program which contains the logic for this LogicSig.
Optional args: null | Uint8Array[]An optional array of arguments for the program.
Optional sigkeyStatic Readonly encodingGet the address of this LogicSigAccount.
If the LogicSig is delegated to another account, this will return the address of that account.
If the LogicSig is not delegated to another account, this will return an escrow address that is the hash of the LogicSig's program code.
The secret key of the delegating account.
Use signWithSigner instead
Turns this LogicSigAccount into a delegated LogicSig. This type of LogicSig
has the authority to sign transactions on behalf of another account, called
the delegating account. If the delegating account is a multisig account,
use signMultisig instead.
The multisig delegating account
The secret key of one of the members of the delegating
multisig account. Use appendToMultisig to add additional signatures
from other members.
Use signMultisigWithSigner instead
Turns this LogicSigAccount into a delegated LogicSig. This type of LogicSig has the authority to sign transactions on behalf of another account, called the delegating account. Use this function if the delegating account is a multisig account.
Turns this LogicSigAccount into a delegated LogicSig, signed by the given
signer. If the delegating account is a multisig account, use
signMultisigWithSigner instead.
The signer of the delegating account.
true if and only if the LogicSig program and signatures are valid.
This function does not perform full verification and should not be fully trusted on its own. For example, it does not evaluate programs and does not have the ability to validate PQ signatures.
Verifies this LogicSig's program and signatures.
Static fromDecode a msgpack object into a LogicSigAccount.
The encoded LogicSigAccount.
Static fromGenerated using TypeDoc
Represents an account that can sign with a LogicSig program.