Module cubist_proxy::pipeline

source ·
Expand description

pipeline: take an Offchain and execute on it

Functions

Handle either HTTPS or WebSocket connection for Avalanche EVM chains
Ignore the future that comes out of a call to f(), instead returning Ready<()>.
A very simple dumper pipeline that quits after 6 messages
A very simple echo pipeline
Intercepts Ethereum requests, answers all account and sign requests, and forwards the rest to the endpoint specified by uri.
Intercepts Ethereum requests as in the case of eth, except that it operates on a Pair. This is useful when you have a pipeline that needs to process the Offchain before applying the eth functionality to it. See the ava pipeline for an example.
A very simple passthru pipeline. This is a full-fledged pipeline that takes an Offchain and handles it entirely.
A passthru pipeline that operates on a Pair. This is used in the case that you have a pipeline that first does some processing on an Offchain and only then applies the pass functionality to it. See the ava pipeline for an example of the use of this functionality.