You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Disclaimer** This library is in a very early stage of development. Please don't use it in production.
4
-
5
3
This repo provides a library and examples to build CosmWasm smart contract to interact with BandChain.
6
4
7
5
---
8
6
9
7
## Table Of Contents
8
+
10
9
-[Project structure](#Project-Structure)
11
10
-[BandChain - Oracle Scripts & Data Sources](./docs/bandchain_oracle_scripts_&_data_sources.md)
12
11
-[How to request data from BandChain via IBC](./docs/how_to_request_data_from_bandchain_via_ibc.md)
@@ -16,25 +15,26 @@ This repo provides a library and examples to build CosmWasm smart contract to in
16
15
-[Setup relayer](./docs/setup_relayer.md)
17
16
18
17
---
18
+
19
19
## Project Structure
20
20
21
21
### Docs
22
22
23
23
All documents related to cw-band will be placed in this folder.
24
+
24
25
### Packages
25
26
26
27
This folder contains libraries for smart contracts to use. These libraries will help make the process of requesting data from BandChain easier.
27
28
28
-
-`cw-band`: This library will provide all the necessary data types that you will need to use when you want to request data from BandChain. You can look more into detail [here](./docs/packages_cw_band.md)
29
+
-`cw-band`: This library will provide all the necessary data types that you will need to use when you want to request data from BandChain. You can look more into detail [here](./docs/packages_cw_band.md)
29
30
30
31
### Contracts
31
32
32
33
We provide sample contracts that either implement or consume these packages to both provide examples, and provide a basis for code you can extend for more custom contacts.
33
34
34
-
-`Price feed`: A contract that can request data from BandChain by using cw-band package and allow other contracts to query the data. You can learn more detail in this [document](./docs/contracts_price_feed.md).
35
-
-[TODO]`Consumer`: A contract that queries price from price feed contract. You can learn more detail in this [document](./docs/contracts_consumer.md).
35
+
-`Price feed`: A contract that can request data from BandChain by using cw-band package and allow other contracts to query the data. You can learn more detail in this [document](./docs/contracts_price_feed.md).
36
+
-[TODO]`Consumer`: A contract that queries price from price feed contract. You can learn more detail in this [document](./docs/contracts_consumer.md).
36
37
37
38
### Scripts
38
39
39
40
We provide useful scripts such as building contract commands and contract deployment commands in this folder.
0 commit comments