Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bandprotocol/bandchain
BandChain - Decentralized Data Delivery Network
https://github.com/bandprotocol/bandchain
band blockchain cosmos monorepo oracle
Last synced: 12 days ago
JSON representation
BandChain - Decentralized Data Delivery Network
- Host: GitHub
- URL: https://github.com/bandprotocol/bandchain
- Owner: bandprotocol
- License: apache-2.0
- Archived: true
- Created: 2019-12-06T10:13:16.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-07-07T15:23:54.000Z (over 2 years ago)
- Last Synced: 2024-10-06T12:47:18.228Z (about 1 month ago)
- Topics: band, blockchain, cosmos, monorepo, oracle
- Language: Reason
- Homepage: https://bandprotocol.com
- Size: 107 MB
- Stars: 224
- Watchers: 19
- Forks: 51
- Open Issues: 189
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
- awesome-list - bandchain - Decentralized Data Delivery Network | bandprotocol | 204 | (Reason)
README
# BandChain - Decentralized Data Delivery Network
This repository is a [monorepo] containing the reference implementation of BandChain and its various supporting tools. See below for the breakdown and explanation of each module. README for each of the modules.
## Table of Contents
| Module | Description |
| ---------------------- | --------------------------------------------------------- |
| [`chain`](chain) | 🔗 BandChain blockchain reference implementation |
| [`bridges`](bridges) | 📡 Lite client bridges on other smart contract platforms |
| [`lambda`](lambda) | 👷♂️ AWS Lambda package for running data source executables |
| [`go-owasm`](go-owasm) | 🐀 Go library for executing oracle scripts with Wasmer |
| [`helpers`](helpers) | 🔪 Client-side utility libraries |
| [`obi`](obi) | 📦 Oracle binary encoding implementations |
| [`owasm`](owasm) | 🔮 WebAssembly library for writing oracle scripts |
| [`scan`](scan) | 🔍 Web interface to explore D3N network |## Running with Docker
There are 2 ways to run bandchain
#### Run on 4 validators
```
./chain/docker-config/generate-genesis.sh && docker-compose up multi-validator
```#### Run 1 validator (for development)
```
./chain/docker-config/single-validator/generate-genesis.sh && docker-compose up single-validator
```#### (Optional) Run Owasm Studio
```
docker-compose up owasm-studio
```#### Tear down
```
docker-compose down -v
```## Running a Validator Node
[📚 Guide to Becoming a Validator](https://medium.com/bandprotocol/bandchain-wenchang-testnet-2-how-to-join-as-a-validator-76bc4180ddd7)
## License & Contributing
All modules are licensed under the terms of the Apache 2.0 License unless otherwise specified in the LICENSE file at module's root.
We highly encourage participation from the community to help with D3N development. If you are interested in developing with D3N or have suggestion for protocol improvements, please open an issue, submit a pull request, or [drop as a line].
[monorepo]: https://en.wikipedia.org/wiki/Monorepo
[drop as a line]: mailto:[email protected]