Skip to content

Commit

Permalink
add Solana Anchor
Browse files Browse the repository at this point in the history
Anchor is a framework for quickly building secure Solana programs.

With Anchor you can build programs quickly because it writes various boilerplate for you such as (de)serialization of accounts and instruction data.

You can build secure programs more easily because Anchor handles certain security checks for you. On top of that, it allows you to succinctly define additional checks and keep them separate from your business logic.

Both of these aspects mean that instead of working on the tedious parts of raw Solana programs, you can spend more time working on what matters most, your product.
  • Loading branch information
perlish authored Sep 22, 2022
1 parent 5a2482c commit 905e1e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,8 @@
- [Orga](https://github.com/nomic-io/orga).
A high-performance state machine engine designed for
Tendermint-based blockchain applications.

- [Anchor](https://github.com/coral-xyz/anchor)
is a framework for Solana's Sealevel runtime providing several convenient developer tools for writing smart contracts.
## Cross-Chain
- [Comit](https://comit.network/) is an open protocol facilitating
trustless cross-blockchain applications.
Expand Down

0 comments on commit 905e1e9

Please sign in to comment.