https://github.com/graphprotocol/proto-cosmos
Cosmos Protobuf definitions
https://github.com/graphprotocol/proto-cosmos
Last synced: 3 days ago
JSON representation
Cosmos Protobuf definitions
- Host: GitHub
- URL: https://github.com/graphprotocol/proto-cosmos
- Owner: graphprotocol
- License: apache-2.0
- Created: 2022-04-28T21:56:36.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-12-08T16:31:40.000Z (about 2 years ago)
- Last Synced: 2025-02-16T23:13:14.275Z (11 months ago)
- Language: Makefile
- Homepage:
- Size: 508 KB
- Stars: 0
- Watchers: 20
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cosmos Protobuf definitions
This repository contains Protobuf definitions for the Cosmos Firehose integration.
The GitHub workflow depends on `protoc` v21.6 and `protoc-gen-go` v1.28.1.
https://github.com/protocolbuffers/protobuf/releases/tag/v21.6
```bash
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.28.1
```
## Generating code
To generate Go bindings for the Protobuf definitions, execute:
```bash
make generate
```
## Protobuf formatting
```bash
make format
```