Tag v0.5.0 release
This commit is contained in:
parent
f48fa055d9
commit
a1834f3934
|
@ -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@v0.4.5?tab=doc)
|
||||
[![GoDoc](https://pkg.go.dev/badge/github.com/gagliardetto/solana-go?status.svg)](https://pkg.go.dev/github.com/gagliardetto/solana-go@v0.5.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)
|
||||
|
@ -49,6 +49,7 @@ More contracts to come.
|
|||
- [ ] Secp256k1
|
||||
- [ ] Clients for Solana Program Library (SPL)
|
||||
- [x] token
|
||||
- [x] associated-token-account
|
||||
- [ ] memo
|
||||
- [ ] name-service
|
||||
- [ ] ...
|
||||
|
@ -57,7 +58,7 @@ More contracts to come.
|
|||
|
||||
## Current development status
|
||||
|
||||
There is currently **no stable release**. The SDK is actively developed and latest is `v0.4.5` which is an `alpha` release.
|
||||
There is currently **no stable release**. The SDK is actively developed and latest is `v0.5.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/dff9c88193da142693cabebfcd3bf68fa8e8b873/docs/src/developing/clients/jsonrpc-api.md).
|
||||
|
||||
|
@ -71,9 +72,7 @@ The RPC and WS client implementation is based on [this RPC spec](https://github.
|
|||
|
||||
```bash
|
||||
$ cd my-project
|
||||
$ go get github.com/gagliardetto/solana-go@v0.4.5
|
||||
$ go get github.com/gagliardetto/binary@v0.4.1
|
||||
$ go get github.com/gagliardetto/gofuzz@v1.2.2
|
||||
$ go get github.com/gagliardetto/solana-go@v0.5.0
|
||||
```
|
||||
|
||||
## Examples
|
||||
|
|
2
go.sum
2
go.sum
|
@ -89,8 +89,6 @@ github.com/fatih/color v1.7.0 h1:DkWD4oS2D8LGGgTQ6IvwJJXSL5Vp2ffcQg58nFV38Ys=
|
|||
github.com/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=
|
||||
github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I=
|
||||
github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
|
||||
github.com/gagliardetto/binary v0.4.2 h1:qaSYx7XnwznQEo3qMghib64D+yJXap7XdcbgPYJEA/M=
|
||||
github.com/gagliardetto/binary v0.4.2/go.mod h1:peJR9PvwamL4YOh1nHWCPLry2VEfeeD1ADvewka7HnQ=
|
||||
github.com/gagliardetto/binary v0.4.3 h1:8PmltgzAKEyJaKayPuymhF5nkjf5OuRnKcXD8m2bPDM=
|
||||
github.com/gagliardetto/binary v0.4.3/go.mod h1:peJR9PvwamL4YOh1nHWCPLry2VEfeeD1ADvewka7HnQ=
|
||||
github.com/gagliardetto/gofuzz v1.2.2 h1:XL/8qDMzcgvR4+CyRQW9UGdwPRPMHVJfqQ/uMvSUuQw=
|
||||
|
|
Loading…
Reference in New Issue