algokit_transact_ffiFunction decode_signed_transactions
Source pub fn decode_signed_transactions(
encoded_signed_transactions: Vec<Vec<u8>>,
) -> Result<Vec<SignedTransaction>, AlgoKitTransactError>
Expand description
Decodes a collection of MsgPack bytes into a signed transaction collection.
§Parameters
encoded_signed_transactions
- A collection of MsgPack encoded bytes, each representing a signed transaction.
§Returns
A collection of decoded signed transactions or an error if decoding fails.