The ProximaX Sirius Chain Golang SDK works as a lightweight Golang library for interacting with the Sirius Blockchain. It provides a complete library set coverage, and supports synchronous and asynchronous requests.
All Sirius stuff starts from importing sdk:
import "github.com/proximax-storage/go-xpx-chain-sdk/sdk"
Then create a Sirius network configuration
For Testnet:
conf, err := sdk.NewConfig("http://localhost:3000",sdk.Testnet)
Or for Mainnet:
conf, err := sdk.NewConfig("http://localhost:3000",sdk.Mainnet)
Construct a new REST Sirius client
client := sdk.NewClient(nil, conf)
Use this client to get current blockchain height
chainHeight, err := client.Blockchain.GetChainHeight(context.Background())
A Context type is the first argument in any service method for specifying deadlines, cancelation signals, and other request-scoped values
For more examples, go to our wiki
If you want to refer to go docs in markdown, check out api docs.
This library is a fork of nem2-go-sdk which was also contributed by ProximaX Limited to NEM Foundation.
We'd love to get more people involved in the project. Please feel free to raise any issues or PR and we'll review your contribution.
Copyright (c) 2019 ProximaX Limited