Skip to content
This repository has been archived by the owner on Nov 26, 2024. It is now read-only.

Commit

Permalink
Add useful dev libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
urani-engineering-helper authored Mar 27, 2024
1 parent fce8bd3 commit 1b9ae1c
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions chapters/02_dev_env.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,6 @@ solana config set --url https://api.mainnet-beta.solana.com
<br>



---

### Demo 1: Hello World
Expand All @@ -203,7 +202,7 @@ solana config set --url https://api.mainnet-beta.solana.com

----

### Useful Commands
### Useful `solana-cli` Commands

<br>

Expand Down Expand Up @@ -245,6 +244,23 @@ solana program deploy <PROGRAM_FILEPATH>

<br>


---

### Useful Solana Dev Libraries

<br>

* [@solana/web3.js](https://solana-labs.github.io/solana-web3.js/): a library with many basic Solana tools to interact, send transactions, and read from the blockchain.

* [@solana/spl-token](https://www.npmjs.com/package/@solana/spl-token): a library that contains many of the js/ts bindings needed to interact with SPL tokens. You can use this library to mint new tokens, transfer tokens, etc.

* [wallet-adapter](https://github.com/anza-xyz/wallet-adapter): a collection of libraries to help bootstrap wallet collections within Solana (such as Phantom, Solflare, and more).


<br>


---

### References
Expand Down

0 comments on commit 1b9ae1c

Please sign in to comment.