Official Go client library for ChainStream API.
go get github.com/chainstream-io/chainstream-go-sdk/v2package main
import (
"fmt"
chainstream "github.com/chainstream-io/chainstream-go-sdk/v2"
)
func main() {
client, err := chainstream.NewClient(chainstream.ClientOptions{
AccessToken: "your-access-token",
})
if err != nil {
panic(err)
}
// Use the client for API calls...
_ = client
}For detailed documentation, visit https://docs.chainstream.io
# Run tests
make test
# Lint
make lint
# Generate OpenAPI client
make clientMIT