185 stable releases

1.18.26 Oct 12, 2024
1.18.23 Aug 31, 2024
1.18.20 Jul 25, 2024
1.18.9 Mar 29, 2024
1.10.5 Mar 28, 2022

#8 in #plugin-interface

Download history 853/week @ 2025-02-03 724/week @ 2025-02-10 519/week @ 2025-02-17 526/week @ 2025-02-24 640/week @ 2025-03-03 542/week @ 2025-03-10 458/week @ 2025-03-17 358/week @ 2025-03-24 400/week @ 2025-03-31 1116/week @ 2025-04-07 827/week @ 2025-04-14 536/week @ 2025-04-21 347/week @ 2025-04-28 299/week @ 2025-05-05 471/week @ 2025-05-12 242/week @ 2025-05-19

1,392 downloads per month
Used in 23 crates (13 directly)

Apache-2.0

18KB
228 lines

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

Dependencies

~34–50MB
~871K SLoC