Skip to content

Commit

Permalink
v1.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gagliardetto committed Sep 1, 2022
1 parent 0d06702 commit aeb2621
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Solana SDK library for Go

[![GoDoc](https://pkg.go.dev/badge/github.com/gagliardetto/solana-go?status.svg)](https://pkg.go.dev/github.com/gagliardetto/solana-go@v1.5.0?tab=doc)
[![GoDoc](https://pkg.go.dev/badge/github.com/gagliardetto/solana-go?status.svg)](https://pkg.go.dev/github.com/gagliardetto/solana-go@v1.6.0?tab=doc)
[![GitHub tag (latest SemVer pre-release)](https://img.shields.io/github/v/tag/gagliardetto/solana-go?include_prereleases&label=release-tag)](https://github.com/gagliardetto/solana-go/releases)
[![Build Status](https://github.com/gagliardetto/solana-go/workflows/tests/badge.svg?branch=main)](https://github.com/gagliardetto/solana-go/actions?query=branch%3Amain)
[![TODOs](https://badgen.net/https/api.tickgit.com/badgen/github.com/gagliardetto/solana-go/main)](https://www.tickgit.com/browse?repo=github.com/gagliardetto/solana-go&branch=main)
Expand Down Expand Up @@ -82,12 +82,11 @@ Thanks!

## Current development status

There is currently **no stable release**. The SDK is actively developed and latest is `v1.5.0` which is an `alpha` release.
There is currently **no stable release**. The SDK is actively developed and latest is `v1.6.0` which is an `alpha` release.

The RPC and WS client implementation is based on [this RPC spec](https://github.com/solana-labs/solana/blob/c2435363f39723cef59b91322f3b6a815008af29/docs/src/developing/clients/jsonrpc-api.md).

Note
----
## Note

- solana-go is in active development, so all APIs are subject to change.
- This code is unaudited. Use at your own risk.
Expand All @@ -100,7 +99,7 @@ Note

```bash
$ cd my-project
$ go get github.com/gagliardetto/solana-go@v1.5.0
$ go get github.com/gagliardetto/solana-go@v1.6.0
```

## Pretty-Print transactions/instructions
Expand Down Expand Up @@ -281,7 +280,7 @@ func decodeSystemTransfer(tx *solana.Transaction) {
}
}

```
```

## Borsh encoding/decoding

Expand Down Expand Up @@ -407,7 +406,6 @@ func main() {
}
```


The data will **AUTOMATICALLY get decoded** and returned (**the right decoder will be used**) when you call the `resp.Value.Data.GetBinary()` method.

## Timeouts and Custom HTTP Clients
Expand Down Expand Up @@ -1599,7 +1597,6 @@ func main() {
}
```


#### [index](#contents) > [RPC](#rpc-methods) > GetFeeForMessage

```go
Expand Down Expand Up @@ -2804,7 +2801,6 @@ func main() {
}
```


### Websocket Subscriptions

#### [index](#contents) > [WS Subscriptions](#websocket-subscriptions) > AccountSubscribe
Expand Down

0 comments on commit aeb2621

Please sign in to comment.