etherscan-api
    Preparing search index...

    Interface AdvancedFilter

    Advanced-filter fields (Beta) accepted by the transaction-list endpoints. Filter by sender and/or recipient instead of a single address. Provide from, to, or both; fromto_opr chooses whether both must match ('and') or either ('or').

    interface AdvancedFilter {
        from?: string;
        fromto_opr?: "and" | "or";
        to?: string;
    }
    Index

    Properties

    Properties

    from?: string

    Sender address to filter by.

    fromto_opr?: "and" | "or"

    Operator between from and to: 'and' (both match) or 'or' (either).

    to?: string

    Recipient address to filter by.