-
Notifications
You must be signed in to change notification settings - Fork 0
Solana Development Resources
Andrei Montchik edited this page Apr 15, 2026
·
1 revision
- Solana Developer Resources
- Solana Cookbook
- Solana StackExchange
- Solana CLI Reference
- Solana RPC Infra and Providers
- Solana RPC methods
- Solana Runtime
- Native Solana Programs
- Stake-weighted Quality of Service a.k.a SWQoS
- SPL Tokens
- Install the Linux Dependencies:
sudo apt install -y \ build-essential \ pkg-config \ libudev-dev llvm libclang-dev \ protobuf-compiler libssl-dev - Configure and run Test Validator
- Obtain the localnet wallet pubkey:
solana-keygen pubkey ~/.config/solana/wallet.localnet.json. - Check the new pubkey balance:
solana balance <PUBKEY>. - If needed, airdrop SOL to the localnet wallet pubkey:
solana airdrop 10 <PUBKEY>. - Install and configure VSCode
- Create LUT:
--authority <AUTHORITY KEYPAIR> \ --payer <PAYER KEYPAIR> - Fund LUT with 0.01 SOL to cover the rent-exemption.
- Add Addresses to newly created LUT:
solana address-lookup-table extend <LUT ADDRESS> \ --addresses <ADDRESS1>,<ADDRESS2> \ --authority <AUTHORITY KEYPAIR> \ --payer <PAYER KEYPAIR>