From 3848bdbd614b027e04d7a8d97a271304adbaa744 Mon Sep 17 00:00:00 2001 From: Mike MacCana Date: Thu, 13 Jun 2024 10:18:09 -0400 Subject: [PATCH] Minor README tweaks Prioritise Anchor, deprioritize Seahorse, spell onchain correctly. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ad69f4ed3..59013468f 100644 --- a/README.md +++ b/README.md @@ -1,20 +1,20 @@ # Program Examples -### :crab: Rust. :snake: Python. :link: All on-chain. +### Onchain program examples for :anchor: Anchor :crab: Native Rust :snake: Python ## Navigating this Repo :file_folder: Each example contains four folders: -- `native` - Written using Solana's native Rust crates and vanilla Rust. - `anchor` - Written using Anchor's `anchor_lang` Rust crate and the associated Anchor framework to build & deploy. +- `native` - Written using Solana's native Rust crates and vanilla Rust. - `seahorse` - Written using the Python framework Seahorse, which converts your Python code to Anchor Rust. :wrench: How to build & run: - Before running anything in any folder make sure you pull in the dependencies with `yarn install`. -- `native` - Use `cicd.sh` to build & deploy the program. Run `yarn run test` to test it. - `anchor` - Use `anchor build && anchor deploy` to build & deploy the program. Run `anchor run test` to test it. +- `native` - Use `cicd.sh` to build & deploy the program. Run `yarn run test` to test it. - `seahorse` - Use `seahorse build && anchor deploy` to build & deploy the program. Run `anchor run test` to test it. ## Examples We'd Love to See!