Backend
Last updated
Was this helpful?
Last updated
Was this helpful?
Thanks to Turbin3's transpiler Poseiden, you can now write smart contracts in .
If you decide to go the rust way, it is recommended to start your journey with the Anchor framework.
Anchor can help you write safe programs because it includes lots of checks that you would have to implement manually.
Although very limited, you can still build abstract Solana programs.
is the primarily programming language used to develop Programs on Solana. refers to writing Solana programs without using frameworks like . This approach provides developers with direct control over their Solana programs. However, it requires more manual setup and boilerplate code compared to using the Anchor.
There are also various community driven efforts to enable writing on-chain programs using other languages, including Python via (that acts as a wrapper the Rust based )
You can also explore the for examples of on-chain programs.