interface TransactionSelection {
    contractAddress?: string[];
    from?: string[];
    kind?: number[];
    sighash?: string[];
    status?: number;
    to?: string[];
}

Properties

contractAddress?: string[]
from?: string[]

Address the transaction should originate from. If transaction.from matches any of these, the transaction will be returned. Keep in mind that this has an and relationship with to filter, so each transaction should match both of them. Empty means match all.

kind?: number[]

If transaction.type matches any of these values, the transaction will be returned

sighash?: string[]

If first 4 bytes of transaction input matches any of these, transaction will be returned. Empty means match all.

status?: number

If tx.status matches this it will be returned.

to?: string[]

Address the transaction should go to. If transaction.to matches any of these, the transaction will be returned. Keep in mind that this has an and relationship with from filter, so each transaction should match both of them. Empty means match all.