diff --git a/docs/pages/v2/filters.mdx b/docs/pages/v2/filters.mdx index bec90d3b..1104d09c 100644 --- a/docs/pages/v2/filters.mdx +++ b/docs/pages/v2/filters.mdx @@ -9,6 +9,7 @@ These are the existing filters that are included as part the main _Oura_ codebas - [ParseCbor](filters/parse_cbor.mdx): a filter that maps cbor transactions to a data structure. - [SplitBlock](filters/split_block.mdx): a filter that will decode the cbor block and extract all transactions in an event in the format CborTx. - [Deno](filters/deno.mdx): a filter that allows JS code to be implemented as a stage within the pipeline. +- [DSL](filters/dsl.mdx): a filter that can select which events to block and which to let pass. - [Legacy V1](filters/legacy_v1.mdx): a filter that transforms the block data to the Oura V1 data structure. New filters are being developed, information will be added in this documentation to reflect the updated list. Contributions and feature request are welcome in our [Github Repo](https://github.com/txpipe/oura). diff --git a/docs/pages/v2/filters/dsl.mdx b/docs/pages/v2/filters/dsl.mdx new file mode 100644 index 00000000..55f54973 --- /dev/null +++ b/docs/pages/v2/filters/dsl.mdx @@ -0,0 +1,3 @@ +# DSL filter + +soon