macro_rules! parse_pending_transactions_v3 {
    ($res:ident, $txns:expr) => { ... };
}
Expand description

This macro iterates over each transaction, decodes the transaction key, and constructs a Transaction object with additional processing for address and token formats using from_address_v3_to_v2 and from_token_v3_to_v2.

Parameters:

  • $res: A mutable reference to a collection where the parsed transactions will be stored.
  • $txns: A collection of transaction data to be parsed.