Skip to content

O3Labs/neo-rpc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

neo-rpc

A JSON-RPC client for neo-cli.

Installation

go get github.com/o3labs/neo-rpc

Importing

import (
    "github.com/o3labs/neo-rpc/neorpc/neorpc"
)

Usage

client := neorpc.Client("https://us-east.o3node.org")
response, err := client.GetBlock(3623800)
if err != nil {
	log.Printf("err %v", err)
	return
}
log.Printf("%v", response)

About

NEO blockchain's neo-cli JSON-RPC client written in Go

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages