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

#3 in #geyser

Download history 2261/week @ 2024-09-01 1290/week @ 2024-09-08 796/week @ 2024-09-15 898/week @ 2024-09-22 1513/week @ 2024-09-29 1010/week @ 2024-10-06 937/week @ 2024-10-13 675/week @ 2024-10-20 707/week @ 2024-10-27 745/week @ 2024-11-03 538/week @ 2024-11-10 683/week @ 2024-11-17 645/week @ 2024-11-24 776/week @ 2024-12-01 1180/week @ 2024-12-08 472/week @ 2024-12-15

3,129 downloads per month
Used in 24 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

~33–48MB
~845K SLoC