carlocayos / nem2-sdk-go

Official Go SDK for ProximaX/NEM Catapult

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

nem2-sdk-go

nem2-sdk-go is a Golang client library for Catapult API

Usage

import "github.com/proximax-storage/nem2-sdk-go/sdk"

Create a Catapult network configuration

Using the Testnet network

conf, err := sdk.LoadTestnetConfig("http://localhost:3000")

Or using the Mainnet network

conf, err := sdk.LoadMainnetConfig("http://localhost:3000")

Construct a new Catapult client

client := sdk.NewClient(nil, conf)

Using the client to call a method from a Service API

// Get the chain height
chainHeight, resp, err := client.Blockchain.GetChainHeight(context.Background())

Context

A Context type is the first argument in any service method for specifying deadlines, cancelation signals, and other request-scoped values

// Get the chain height
chainHeight, resp, err := client.Blockchain.GetChainHeight(context.Background())

Wiki / Examples

Examples are in the examples folder

For more examples, go to our wiki

Core Contributors

Contribution

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) 2018 ProximaX Limited

About

Official Go SDK for ProximaX/NEM Catapult

License:Apache License 2.0


Languages

Language:Go 100.0%