signLogicSigTransaction static method
Logic Signatures (or LogicSigs) authorize transactions associated with an Algorand Smart Contract. Logic signatures are added to transactions to authorize spends from a Contract Account or from a Delegated Account.
Implementation
static Future<String> signLogicSigTransaction({
required String logic,
required String address,
}) async {
final result = await MyAlgoPlatform.instance.signLogicSigTransaction(
logic: logic,
address: address,
);
return result;
}