An open API service indexing awesome lists of open source software.

https://github.com/pyramation/gnojs


https://github.com/pyramation/gnojs

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# gnojs

```sh
npm install gnojs
```

Now you can import packages from the `gno` repo's protobuffers directly into TS/JS:

```js
import { abci, bank, std, tm, vm } from './proto';
```

## for developers building `gnojs`

Copy the files from the repo into `./proto`

```sh
git clone git@github.com:gnolang/gno.git
cd ./gno
export PATH="$PATH:$(go env GOPATH)/bin"
make genproto
cp -LR ./proto /path/to/gnojs/proto
code /path/to/gnojs/proto
```

Then run build and generate:

```sh
yarn proto:gen
```