plugeth-utils/docs/types.rst

34 lines
1.4 KiB
ReStructuredText
Raw Normal View History

.. _types:
======================
Basic Types of Plugins
======================
2021-10-15 20:27:20 +00:00
While PluGeth has been designed to be versatile and customizable, when learning the project it can be helpful to think of plugins as being of four different archetypes.
RPC Methods
-----------
These plugins provide new json rpc methods to access several objects containing real time and historic data.
Subcommand
------------
2023-06-02 14:20:24 +00:00
A subcommand redefines the total behavior of Geth and could stand on its own. In contrast with the other plugin types which, in general, are meant to capture and manipulate information, a subcommand is meant to change the overall behavior of Geth. It may do this in order to capture information but the primary fuctionality is a modulation of geth behaviour.
Tracers
-------
2022-02-14 18:02:35 +00:00
Tracers are used to collect information about a transaction or block during EVM execution. They can be written to refine the results of a ``debug`` trace or written to delver custom data using various other objects available from the PluGeth APIs.
Subscriptions
-------------
2021-10-15 20:27:20 +00:00
Subscriptions provide real time notification of data from the EVM as it processes transactions.
2021-10-15 20:27:20 +00:00
.. NOTE:: Plugins are not limited to a singular functionality and can be customized to operate as hybrids of the above. See `blockupdates`_ as an example.
2021-10-15 20:27:20 +00:00
.. _blockupdates: https://github.com/openrelayxyz/plugeth-plugins/tree/master/packages/blockupdates