algokit_transact_ffi

Function decode_signed_transactions

Source
pub fn decode_signed_transactions(
    encoded_signed_txs: Vec<Vec<u8>>,
) -> Result<Vec<SignedTransaction>, AlgoKitTransactError>
Expand description

Decodes a collection of MsgPack bytes into a signed transaction collection.

§Parameters

  • encoded_signed_txs - A collection of MsgPack encoded bytes, each representing a signed transaction.

§Returns

A collection of decoded signed transactions or an error if decoding fails.