Giter Club home page Giter Club logo

solana-anchor-tutorial's Introduction

solana-anchor-tutorial

Setup and CLI usage

1. Prerequisites

  • mocha and @project-serum/anchor must be globally installed via npm i -g mocha @project-serum/anchor. Local installation doesn't work.
  • Run a local Solana node using solana-test-validator. Kill the validator and reuse the terminal for anchor commands.

2. Intializing project

  1. Create project using anchor init t1_basics
  2. Build project and generate IDL using anchor build
  3. Deploy using anchor deploy
  4. Add new program to workspace using anchor new program_name

3. Testing

A test script is automatically created in tests folder.

  • Run all tests using anchor test
  • Run specific test using anchor test tests/t2_accounts.js

Program structure

Solala basics

Data storage

Data is stored on Solana in two ways:

  1. Accounts:

    • They hold persistent arbitary data, similar to files in Linux.
    • Also contain metadata, which controls write access.
    • Accounts need to pay a rent otherwise they are purged. Paying tokens above an amount makes the account rent exempt.
    • Design pattern: Store user data on accounts. Try to keep programs stateless.

solana-anchor-tutorial's People

Contributors

secretshardul avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.