solana/geyser-plugin-interface
mergify[bot] 845faca447
v2.0: geyser: add num_partitions to block info (backport of #2158) (#2178)
geyser: add num_partitions to block info (#2158)

* geyser: add num_partitions to block info

* fix comment

(cherry picked from commit d8791a633f)

Co-authored-by: Kirill Fomichev <fanatid@ya.ru>
Co-authored-by: Tyera <tyera@anza.xyz>
2024-07-23 10:09:23 -06:00
..
src v2.0: geyser: add num_partitions to block info (backport of #2158) (#2178) 2024-07-23 10:09:23 -06:00
Cargo.toml [anza migration] rename crates (#10) 2024-03-03 12:31:24 +08:00
README.md [docs] updated readme and fix links (#34565) 2024-01-03 09:06:06 -05:00

README.md

Solana

Solana Geyser Plugin Interface

This crate enables a plugin to be added into the Solana Validator runtime to take actions at the time of account updates or block and transaction processing; for example, saving the account state to an external database. The plugin must implement the GeyserPlugin trait. Please see the details of the geyser_plugin_interface.rs for the interface definition.

The plugin should produce a cdylib dynamic library, which must expose a C function _create_plugin() that instantiates the implementation of the interface.

The https://github.com/solana-labs/solana-accountsdb-plugin-postgres repository provides an example of how to create a plugin which saves the accounts data into an external PostgreSQL database.

More information about Solana is available in the Solana documentation.

Still have questions? Ask us on Stack Exchange