Set up your project
Set up the environment and prepare a personalised client object
Install dependencies
First things first, set up a new TypeScript project with a src/index.ts
file and install the @solana/kit
library. Additionally, to keep this tutorial focused on the Kit library, we'll use tsx
to compile and run our TypeScript code.
Add some scripts
Let's also create a start
script that runs tsx src/index.ts
and a validator
script to start a local Solana validator. Your package.json
should look something like this:
From now on, we just need to make sure a Solana validator is running using the validator
script before we can run our start
script.
Create a client object
To simplify our development, we'll create a small Client
type specific to our application. Meaning it will include all the necessary objects and functions we need to interact with Solana.
The first two things we need are the RPC and RPC Subscriptions objects which allow us to send requests to the network and listen for network events respectively. We'll need both of them to fetch accounts and send transactions.
Let's create a new src/client.ts
file and add the following Client
type:
Then, let's create a helper function to create a new cached Client
object that we can use throughout our application:
We'll add more to this Client
type as we progress through the tutorial but for now, this is all we need to get started.
Run the tutorial
Finally, let's go back to our src/index.ts
file and add an asynchronous tutorial
function that we will run immediately to start our tutorial.
For now, let's just use our Client
object to fetch the balance of a specific account.
We can do this by creating an Address
type via the address
helper and fetching the balance via the getBalance
method of the rpc
object.
You should now see something like this when you run the start
script:
In the next article, we'll learn how to generate a wallet that can spend lamports and sign transactions.