Skip to contents

Executes an existing transaction filter on a given transaction, without performing a blockchain operation.

Usage

mc_run_tx_filter(conn, filter, tx)

Arguments

conn

A connection object created by mc_connect.

filter

Character string. Filter name or transaction ID.

tx

Character string. Transaction ID or hex representation.

Value

The output of the filter (e.g., boolean, transformed transaction).

Examples

if (FALSE) { # \dontrun{
result <- mc_run_tx_filter(conn, "myfilter", "txid...")
} # }