Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fetchai/cosmpy
A Python client library for interacting with blockchains based on the Cosmos-SDK
https://github.com/fetchai/cosmpy
blockchain cryptocurrency python
Last synced: about 1 month ago
JSON representation
A Python client library for interacting with blockchains based on the Cosmos-SDK
- Host: GitHub
- URL: https://github.com/fetchai/cosmpy
- Owner: fetchai
- License: apache-2.0
- Created: 2021-06-21T10:46:18.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-06-28T09:06:25.000Z (6 months ago)
- Last Synced: 2024-11-01T09:39:16.318Z (about 1 month ago)
- Topics: blockchain, cryptocurrency, python
- Language: Python
- Homepage:
- Size: 2.86 MB
- Stars: 131
- Watchers: 21
- Forks: 73
- Open Issues: 41
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
- Authors: AUTHORS.md
Awesome Lists containing this project
- awesome-ccamel - fetchai/cosmpy - A Python client library for interacting with blockchains based on the Cosmos-SDK (Python)
- awesome-cosmos - cosmpy - A Python client library for interacting with blockchains based on the Cosmos SDK. (Client Libraries / Python)
README
# CosmPy
[![Official Website](https://img.shields.io/badge/Official%20Website-fetch.ai-blue?style=flat&logo=world&logoColor=white)](https://fetch.ai)
[![Twitter Follow](https://img.shields.io/twitter/follow/fetch_ai?style=social)](https://twitter.com/fetch_ai)A python library for interacting with cosmos based blockchain networks
## To Install
```bash
pip3 install cosmpy
```## Getting Started
Below is a simple example for querying an account's balances:
```python
from cosmpy.aerial.client import LedgerClient, NetworkConfig# connect to Fetch.ai network using default parameters
ledger_client = LedgerClient(NetworkConfig.fetchai_mainnet())alice: str = 'fetch12q5gw9l9d0yyq2th77x6pjsesczpsly8h5089x'
balances = ledger_client.query_bank_all_balances(alice)# show all coin balances
for coin in balances:
print(f'{coin.amount}{coin.denom}')
```## Documentation
The full documentation can be found [here](https://fetch.ai/docs/guides/fetch-network/cosmpy/install).
## Examples
Under the `examples` directory, you can find examples of basic ledger interactions using `cosmpy`, such as transferring tokens, staking, deploying and interacting with a smart contract, and performing atomic swaps.
## Contributing
All contributions are very welcome! Remember, contribution is not only PRs and code, but any help with docs or helping other developers solve their issues are very appreciated!
Read below to learn how you can take part in the CosmPy project.
### Code of Conduct
Please be sure to read and follow our [Code of Conduct][coc]. By participating, you are expected to uphold this code.
### Contribution Guidelines
Read our [contribution guidelines][contributing] to learn about our issue and pull request submission processes, coding rules, and more.
### Development Guidelines
Read our [development guidelines][developing] to learn about the development processes and workflows.
### Issues, Questions and Discussions
We use [GitHub Issues][issues] for tracking requests and bugs, and [GitHub Discussions][discussion] for general questions and discussion.
[contributing]: https://github.com/fetchai/cosmpy/blob/main/CONTRIBUTING.md
[developing]: https://github.com/fetchai/cosmpy/blob/main/DEVELOPING.md
[coc]: https://github.com/fetchai/cosmpy/blob/main/CODE_OF_CONDUCT.md
[discussion]: https://github.com/fetchai/cosmpy/discussions
[issues]: https://github.com/fetchai/cosmpy/issues
[license]: https://github.com/fetchai/cosmpy/blob/main/LICENSE