-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
82 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,36 @@ | ||
# Archway Bindings | ||
# arch3.rs | ||
|
||
CosmWasm bindings to interact with Archway's modules. | ||
[![Build Status][build-image]][build-link] | ||
[![Codacy Badge][codacy-image]][codacy-link] | ||
[![Apache 2.0 Licensed][license-image]][license-link] | ||
![MSRV][rustc-image] | ||
|
||
## Usage | ||
Rust SDK for Archway. | ||
|
||
Please refer to the [example contract](https://github.com/archway-network/archway-bindings/tree/main/contracts/increment) for a full usage example. | ||
## Packages | ||
|
||
| Package | Version | Docs | Description | | ||
|-------------------------------------------|:---------------------------------------------:|:-----------------------------------------------------:|:------------------------------------------------------| | ||
| [`archway-bindings`](./packages/bindings) | [![crates.io][bindings-image]][bindings-link] | [![docs.rs][bindings-docs-image]][bindings-docs-link] | CosmWasm bindings to interact with Archway's modules. | | ||
| [`archway-proto`](./packages/proto) | [![crates.io][proto-image]][proto-link] | [![docs.rs][proto-docs-image]][proto-docs-link] | Rust build of Archway's ProtoBuf definitions. | | ||
|
||
## License | ||
|
||
This project is licensed under the Apache-2.0 License - see the [LICENSE][license-link] file for details. | ||
|
||
[//]: # "badges" | ||
[build-image]: https://github.com/archway-network/arch3.rs/actions/workflows/check.yml/badge.svg | ||
[build-link]: https://github.com/archway-network/arch3.rs/actions/workflows/check.yml | ||
[codacy-image]: https://app.codacy.com/project/badge/Grade/6fedce8e3af541718dba59bde1f38375 | ||
[codacy-link]: https://app.codacy.com/gh/archway-network/arch3.rs/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade | ||
[license-image]: https://img.shields.io/github/license/archway-network/arch3.rs?label=License&logo=opensourceinitiative&logoColor=white | ||
[license-link]: https://github.com/archway-network/arch3.rs/blob/main/LICENSE | ||
[rustc-image]: https://img.shields.io/badge/rustc-1.70+-red.svg?logo=rust | ||
[bindings-image]: https://img.shields.io/crates/v/archway-bindings.svg | ||
[bindings-link]: https://crates.io/crates/archway-bindings | ||
[bindings-docs-image]: https://docs.rs/archway-bindings/badge.svg | ||
[bindings-docs-link]: https://docs.rs/archway-bindings/ | ||
[proto-image]: https://img.shields.io/crates/v/archway-proto.svg | ||
[proto-link]: https://crates.io/crates/archway-proto | ||
[proto-docs-image]: https://docs.rs/archway-proto/badge.svg | ||
[proto-docs-link]: https://docs.rs/archway-proto/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,33 @@ | ||
# Archway Bindings | ||
|
||
[![Crate][crate-image]][crate-link] | ||
[![Docs][docs-image]][docs-link] | ||
[![Apache 2.0 Licensed][license-image]][license-link] | ||
![MSRV][rustc-image] | ||
|
||
CosmWasm bindings to interact with Archway's modules. | ||
|
||
## Usage | ||
|
||
Please refer to the [example contract](https://github.com/archway-network/archway-bindings/tree/main/contracts/increment) for a full usage example. | ||
Please refer to the [example contract] for a full usage example. | ||
|
||
## Specs | ||
|
||
The bindings follow the [specs] defined by the Archway Protocol. | ||
|
||
## License | ||
|
||
This project is licensed under the Apache-2.0 License - see the [LICENSE][license-link] file for details. | ||
|
||
[//]: # "badges" | ||
[crate-image]: https://buildstats.info/crate/archway-bindings | ||
[crate-link]: https://crates.io/crates/archway-bindings | ||
[docs-image]: https://docs.rs/archway-bindings/badge.svg | ||
[docs-link]: https://docs.rs/archway-bindings/ | ||
[license-image]: https://img.shields.io/github/license/archway-network/arch3.rs?label=License&logo=opensourceinitiative&logoColor=white&color=informational | ||
[license-link]: https://github.com/archway-network/arch3.rs/blob/main/LICENSE | ||
[rustc-image]: https://img.shields.io/badge/rustc-1.70+-blue.svg?logo=rust&logoColor=white&color=informational | ||
|
||
[//]: # "general links" | ||
[example contract]: https://github.com/archway-network/arch3.rs/tree/main/contracts/increment | ||
[specs]: https://github.com/archway-network/archway/blob/main/x/rewards/spec/08_wasm_bindings.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters