Skip to content

Commit

Permalink
build: anychain-polkadot 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
shuimuliang committed Mar 5, 2024
1 parent 8332d04 commit e80260a
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ public blockchains including Bitcoin, Ethereum, Tron, Filecoin, etc.
| [`anychain-filecoin`] | Filecoin impl. | [![Crates.io](https://img.shields.io/crates/v/anychain-filecoin)][anychain-filecoin] | [![Documentation](https://shields.io/docsrs/anychain-filecoin)][anychain-filecoin-docs] |
| [`anychain-tron`] | Tron impl. | [![Crates.io](https://img.shields.io/crates/v/anychain-tron)][anychain-tron] | [![Documentation](https://shields.io/docsrs/anychain-tron)][anychain-tron-docs] |
| [`anychain-ripple`] | Ripple impl. | [![Crates.io](https://img.shields.io/crates/v/anychain-ripple)][anychain-ripple] | [![Documentation](https://shields.io/docsrs/anychain-ripple)][anychain-ripple-docs] |
| [`anychain-polkadot`] | Polkadot impl. | [![Crates.io](https://img.shields.io/crates/v/anychain-polkadot)][anychain-polkadot] | [![Documentation](https://shields.io/docsrs/anychain-polkadot)][anychain-polkadot-docs] |

## Supported Chains
- Bitcoin
Expand All @@ -56,6 +57,7 @@ public blockchains including Bitcoin, Ethereum, Tron, Filecoin, etc.
- Tron
- Ripple
- Arbitrum, Optimism, and Avalanche
- Polkadot
- Neo

## License
Expand All @@ -73,18 +75,21 @@ Feel free to join anychain sdk [Telegram](https://t.me/anychain_sdk) for discuss
[`anychain-filecoin`]: https://github.com/0xcregis/anychain/tree/main/anychain-filecoin
[`anychain-tron`]: https://github.com/0xcregis/anychain/tree/main/anychain-tron
[`anychain-ripple`]: https://github.com/0xcregis/anychain/tree/main/anychain-ripple
[`anychain-polkadot`]: https://github.com/0xcregis/anychain/tree/main/anychain-polkadot
[anychain-core]: https://crates.io/crates/anychain-core
[anychain-kms]: https://crates.io/crates/anychain-kms
[anychain-bitcoin]: https://crates.io/crates/anychain-bitcoin
[anychain-ethereum]: https://crates.io/crates/anychain-ethereum
[anychain-filecoin]: https://crates.io/crates/anychain-filecoin
[anychain-tron]: https://crates.io/crates/anychain-tron
[anychain-ripple]: https://crates.io/crates/anychain-ripple
[anychain-polkadot]: https://crates.io/crates/anychain-polkadot
[anychain-core-docs]: https://docs.rs/anychain-core
[anychain-kms-docs]: https://docs.rs/anychain-kms
[anychain-bitcoin-docs]: https://docs.rs/anychain-bitcoin
[anychain-ethereum-docs]: https://docs.rs/anychain-ethereum
[anychain-filecoin-docs]: https://docs.rs/anychain-filecoin
[anychain-tron-docs]: https://docs.rs/anychain-tron
[anychain-ripple-docs]: https://docs.rs/anychain-ripple
[anychain-polkadot-docs]: https://docs.rs/anychain-polkadot
[license]: https://github.com/0xcregis/anychain/blob/main/LICENSE
2 changes: 1 addition & 1 deletion anychain-polkadot/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "anychain-polkadot"
description = "A Rust library for Polkadot cryptocurrency wallets, enabling seamless transactions on the Polkadot blockchain"
version = "0.1.0"
version = "0.1.1"
keywords = ["polkadot", "blockchain", "cryptocurrency", "wallet", "transactions"]

# Workspace inherited keys
Expand Down
37 changes: 37 additions & 0 deletions anychain-polkadot/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# anychain-polkadot

anychain-polkadot is a Rust library for Polkadot cryptocurrency wallets. It enables seamless transactions on the Polkadot blockchain.

## Features

- Address generation and validation
- Transaction building, signing, and broadcasting
- Querying blockchain data (blocks, transactions, balances, etc.)

## Installation

Add the following to your `Cargo.toml` file:

```toml
[dependencies]
anychain-polkadot = "0.1.1"
```

Then run `cargo build` to download and compile the library.

## Usage

## Contributing

We welcome contributions from the community! If you'd like to contribute, please follow these steps:

1. Fork the repository
2. Create a new branch for your changes
3. Make your changes and commit them to your branch
4. Create a pull request and describe your changes

Please make sure to follow the Rust coding guidelines and add tests for any new features or bug fixes.

## License

anychain-polkadot is released under the MIT License. See the [LICENSE](LICENSE) file for more information.

0 comments on commit e80260a

Please sign in to comment.