Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.solanamobile.com/llms.txt

Use this file to discover all available pages before exploring further.

Interact with accounts and programs on the Solana network through the Solana JSON RPC API.

Install dependencies

yarn add \
  @solana/web3.js \
  react-native-get-random-values \
  react-native-url-polyfill \
  @craftzdog/react-native-buffer

Polyfills

Enable all of them in index.js
import 'react-native-get-random-values';
import 'react-native-url-polyfill/auto';
import {Buffer} from '@craftzdog/react-native-buffer';
global.Buffer = Buffer;
Last modified on February 10, 2026