1.1 KiB
1.1 KiB
title
title |
---|
Rust API |
Solana's Rust crates are published to crates.io and can be found on docs.rs with the "solana-" prefix.
Some important crates:
-
solana-program
— Imported by programs running on Solana, compiled to BPF. This crate contains many fundamental data types and is re-exported fromsolana-sdk
, which cannot be imported from a Solana program. -
solana-sdk
— The basic off-chain SDK, it re-exportssolana-program
and adds more APIs on top of that. Most Solana programs that do not run on-chain will import this. -
solana-client
— For interacting with a Solana node via the JSON RPC API. -
solana-clap-utils
— Routines for setting up a CLI, usingclap
, as used by the main Solana CLI.