Skip to content

Commit 1975db6

Browse files
committed
Minor README tweaks
1 parent f43b807 commit 1975db6

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,18 @@
11
# Solana Program Examples
22

3-
## Solana onchain program examples for ⚓ Anchor, 💫 Quasar, 🤥 Pinocchio, and 🦀 Native Rust.
3+
## Solana onchain program examples for ⚓ Anchor, 💫 Quasar, 🤥 Pinocchio, and 🦀 Rust.
44

55
[![Anchor](https://github.com/solana-developers/program-examples/actions/workflows/anchor.yml/badge.svg?event=schedule)](https://github.com/solana-developers/program-examples/actions/workflows/anchor.yml) [![Quasar](https://github.com/solana-developers/program-examples/actions/workflows/solana-quasar.yml/badge.svg?event=schedule)](https://github.com/solana-developers/program-examples/actions/workflows/solana-quasar.yml) [![Pinocchio](https://github.com/solana-developers/program-examples/actions/workflows/solana-pinocchio.yml/badge.svg?event=schedule)](https://github.com/solana-developers/program-examples/actions/workflows/solana-pinocchio.yml) [![Native](https://github.com/solana-developers/program-examples/actions/workflows/solana-native.yml/badge.svg?event=schedule)](https://github.com/solana-developers/program-examples/actions/workflows/solana-native.yml)
66

77
This repo contains Solana onchain programs (referred to as 'Smart Contracts' in other blockchains).
88

9-
> [!NOTE]
10-
> If you're new to Solana, you don't need to create your own programs to perform basic things like making accounts, creating tokens, sending tokens, or minting NFTs. These common tasks are handled with existing programs, for example the System Program (for making account or transferring SOL) or the token program (for creating tokens and NFTs). See the [Solana Developer site](https://solana.com/developers) to learn more.
11-
129
Each folder includes examples for one or more of the following:
1310

1411
- `anchor` - Written using [Anchor](https://www.anchor-lang.com/), the most popular framework for Solana development, which uses Rust.
1512
Use `anchor build` and `anchor deploy` to build and deploy the program.
1613
Tests should be executed using `pnpm test` as defined in the `Anchor.toml` scripts section.
1714

18-
- `quasar` - Written using [Quasar](https://github.com/blueshift-gg/quasar), a zero-copy, zero-allocation `no_std` framework for Solana programs with Anchor-compatible ergonomics.
15+
- `quasar` - Written using [Quasar](https://github.com/blueshift-gg/quasar), a newer more performant framework with Anchor-compatible ergonomics.
1916
Build and test commands are the same as native examples.
2017
Run `pnpm test` to execute tests.
2118

@@ -27,6 +24,8 @@ Each folder includes examples for one or more of the following:
2724
Build and test commands are defined via pnpm scripts and use `litesvm` for testing.
2825
Run `pnpm test` to execute tests.
2926

27+
> [!NOTE]
28+
> If you're new to Solana, you don't need to create your own programs to perform basic things like making accounts, creating tokens, sending tokens, or minting NFTs. These common tasks are handled with existing programs, for example the System Program (for making an account or transferring SOL) or the token program (for creating tokens and NFTs).
3029
3130
**If a given example is missing, please send us a PR to add it!** Our aim is to have every example available in every option. We'd also love to see more programs involving staking, wrapped tokens, oracles, compression and VRF. Follow the [contributing guidelines](./CONTRIBUTING.md) to keep things consistent.
3231

0 commit comments

Comments
 (0)