Skip to content

Commit 289feac

Browse files
authored
chore: update readme (#419)
1 parent 69d6179 commit 289feac

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

README.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Program Examples
22

3-
## Onchain program examples for :anchor: Anchor :crab: Native Rust, [TS] TypeScript and :snake: Python
3+
## Onchain program examples for :anchor: Anchor :crab: Native Rust, and [TS] TypeScript.
44

55
[![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) [![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)
66

@@ -13,8 +13,6 @@ Each folder includes examples for one or more of the following:
1313

1414
- `anchor` - Written using [Anchor](https://www.anchor-lang.com/), the most popular framework for Solana Development, which uses Rust. Use `anchor build && anchor deploy` to build & deploy the program. Run `anchor run test` to test it.
1515
- `native` - Written using Solana's native Rust crates and vanilla Rust. Use `cicd.sh` to build & deploy the program. Run `yarn run test` to test it.
16-
- `poseidon` - Written using [Poseidon](https://turbin3.github.io/poseidon), which converts your TypeScript code to Anchor Rust.
17-
- `seahorse` - Written using the [Seahorse framework](https://seahorse-lang.org/), which converts your Python code to Anchor Rust. Use `seahorse build && anchor deploy` to build & deploy the program. Run `anchor run test` to test it.
1816

1917
**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.
2018

@@ -27,7 +25,7 @@ Each folder includes examples for one or more of the following:
2725

2826
[Hello World on Solana! A minimal program that logs a greeting.](./basics/hello-solana/README.md)
2927

30-
[anchor](./basics/hello-solana/anchor) [native](./basics/hello-solana/native) [seahorse](./basics/hello-solana/seahorse)
28+
[anchor](./basics/hello-solana/anchor) [native](./basics/hello-solana/native)
3129

3230
### Account-data
3331

@@ -39,13 +37,13 @@ Store and retrieve data using Solana accounts.
3937

4038
[Use a PDA to store global state, making a counter that increments when called.](./basics/counter/README.md)
4139

42-
[anchor](./basics/counter/anchor) [native](./basics/counter/native) [seahorse](./basics/counter/seahorse)
40+
[anchor](./basics/counter/anchor) [native](./basics/counter/native)
4341

4442
### Saving per-user state - Favorites
4543

4644
Save and update per-user state on the blockchain, ensuring users can only update their own information.
4745

48-
[anchor](./basics/favorites/anchor)
46+
[anchor](./basics/favorites/anchor) [native](./basics/favorites/native)
4947

5048
### Checking Instruction Accounts
5149

@@ -111,7 +109,7 @@ How to store state that changes size in Solana.
111109

112110
[Send SOL between two accounts.](./basics/transfer-sol/README.md)
113111

114-
[anchor](./basics/transfer-sol/anchor) [native](./basics/transfer-sol/native) [seahorse](./basics/transfer-sol/seahorse)
112+
[anchor](./basics/transfer-sol/anchor) [native](./basics/transfer-sol/native)
115113

116114
</details>
117115
<details>
@@ -139,13 +137,13 @@ How to store state that changes size in Solana.
139137

140138
[Transfer tokens between accounts](./tokens/transfer-tokens/README.md)
141139

142-
[anchor](./tokens/transfer-tokens/anchor) [native](./tokens/transfer-tokens/native) [seahorse](./tokens/transfer-tokens/seahorse)
140+
[anchor](./tokens/transfer-tokens/anchor) [native](./tokens/transfer-tokens/native)
143141

144142
### Allowing users to swap digital assets - Escrow
145143

146144
Allow two users to swap digital assets with each other, each getting 100% of what the other has offered due to the power of decentralization!
147145

148-
[anchor](./tokens/escrow/anchor)
146+
[anchor](./tokens/escrow/anchor) [native](./tokens/escrow/native)
149147

150148
### Minting a token from inside a program with a PDA as the mint authority
151149

@@ -276,7 +274,7 @@ Work with Metaplex compressed NFTs.
276274

277275
Use a data source for offchain data (called an Oracle) to perform activities onchain.
278276

279-
[anchor](./oracles/pyth/anchor) [seahorse](./oracles/pyth/seahorse)
277+
[anchor](./oracles/pyth/anchor)
280278

281279
</details>
282280

0 commit comments

Comments
 (0)