cic-go/README.md

28 lines
1005 B
Markdown
Raw Permalink Normal View History

2022-08-09 14:02:00 +02:00
> DEPRECATED: Use https://github.com/grassrootseconomics/cic-go-sdk
[![Go Reference](https://pkg.go.dev/badge/github.com/grassrootseconomics/cic_go.svg)](https://pkg.go.dev/github.com/grassrootseconomics/cic_go)
[![Go](https://github.com/grassrootseconomics/cic_go/actions/workflows/go.yml/badge.svg)](https://github.com/grassrootseconomics/cic_go/actions/workflows/go.yml)
[![Coverage Status](https://coveralls.io/repos/github/grassrootseconomics/cic_go/badge.svg?branch=sohail/cic_net_updates)](https://coveralls.io/github/grassrootseconomics/cic_go?branch=sohail/cic_net_updates)
2022-05-09 10:06:00 +02:00
# cic-go
2022-05-06 13:18:08 +02:00
Go modules to access various parts of the cic stack
## Implemented
2022-05-09 10:06:00 +02:00
- meta (web2 metadata store)
- net (cic smart contracts)
- batch balance query (`0xb9e215B789e9Ec6643Ba4ff7b98EA219F38c6fE5`)
2022-05-09 10:06:00 +02:00
## Installation
`go get -u github.com/grassrootseconomics/cic-go`
## Usage
```go
import (
cic_meta "github.com/grassrootseconomics/cic-go/meta"
cic_net "github.com/grassrootseconomics/cic-go/net"
)
2022-08-09 14:02:00 +02:00
```