Home
Softono
b

blocto

Professional software vendor delivering innovative solutions on the Softono platform. Specialized in both open-source and proprietary software development.

Total Products
1

Software by blocto

solana-go-sdk
Open Source

solana-go-sdk

<h1 align="center">Solana Go SDK</h1> <div align="center"> <img src="https://github.com/blocto/solana-go-sdk/actions/workflows/go.yml/badge.svg?branch=main"></img> <img src="https://goreportcard.com/badge/github.com/blocto/solana-go-sdk"></img> <img alt="GitHub go.mod Go version" src="https://img.shields.io/github/go-mod/go-version/blocto/solana-go-sdk"> <img alt="GitHub release (latest SemVer)" src="https://img.shields.io/github/v/release/blocto/solana-go-sdk?display_name=tag"> </div> # Guide ## Getting Started ### Installing ```sh go get -v github.com/blocto/solana-go-sdk ``` ### Example #### Hello World ```go package main import ( "context" "fmt" "log" "github.com/blocto/solana-go-sdk/client" "github.com/blocto/solana-go-sdk/rpc" ) func main() { c := client.NewClient(rpc.MainnetRPCEndpoint) // If you would like to customize the http client used to make the // requests you could do something like this // c := client.New(rpc.WithEndpoint(rpc.MainnetRPCEndpoint),rpc.WithHTTPClient(customHTTPClient)) resp, err := c.GetVersion(context.TODO()) if err != nil { log.Fatalf("failed to version info, err: %v", err) } fmt.Println("version", resp.SolanaCore) } ``` ## RPC All interfaces of rpc follow the [solana's json-rpc docs](https://docs.solana.com/developing/clients/jsonrpc-api). The implementation of client in this project separate into two parts, rpc and wrapped. The wrapped only returns main result value and the rpc returns whole rpc response. You can switch it by yourself for different situation. Take `getBalance` as example: ```go package main import ( "context" "fmt" "log" "github.com/blocto/solana-go-sdk/client" "github.com/blocto/solana-go-sdk/rpc" ) func main() { c := client.NewClient(rpc.DevnetRPCEndpoint) // get balance balance, err := c.GetBalance( context.TODO(), "RNfp4xTbBb4C3kcv2KqtAj8mu4YhMHxqm1Skg9uchZ7", ) if err != nil { log.Fatalf("failed to get balance, err: %v", err) } fmt.Printf("balance: %v\n", balance) // get balance with sepcific commitment balance, err = c.GetBalanceWithConfig( context.TODO(), "RNfp4xTbBb4C3kcv2KqtAj8mu4YhMHxqm1Skg9uchZ7", rpc.GetBalanceConfig{ Commitment: rpc.CommitmentProcessed, }, ) if err != nil { log.Fatalf("failed to get balance with cfg, err: %v", err) } fmt.Printf("balance: %v\n", balance) // for advanced usage. fetch full rpc response res, err := c.RpcClient.GetBalance( context.TODO(), "RNfp4xTbBb4C3kcv2KqtAj8mu4YhMHxqm1Skg9uchZ7", ) if err != nil { log.Fatalf("failed to get balance via rpc client, err: %v", err) } fmt.Printf("response: %+v\n", res) } ``` ## Programing model & Program There are some important tpyes in solana. - Program resides in the `program/` folder. - Pubkey (a basic identity of key) resides in the `common/` folder. - Insturciton (contain many pubkeys and program ID) - Message (contain many instructions) - Transaction (contain a message and many signatures) - Account (a pub/pri keypair ) reside in the `types/` folder. ### More Example for more examples, follow `examples/` folder

Crypto & Blockchain Code Editors & IDEs
482 Github Stars