diff --git a/README.md b/README.md index 5b277c8..2260951 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,6 @@ # Supra Python SDK +[![License](https://img.shields.io/badge/license-Apache-green.svg)](LICENSE) [![Discord chat](https://img.shields.io/discord/850682587273625661?style=flat-square)](https://discord.gg/supralabs) The `supra-python-sdk` provides a seamless interface for interacting with the Supra-L1 network. It offers comprehensive support for `move-vm` operations and transactions, enabling developers to both query on-chain data and submit `move-vm` based transactions with ease. @@ -8,13 +9,13 @@ The `supra-python-sdk` provides a seamless interface for interacting with the Su ## Installation -```sh +```bash python -m pip install supra-sdk ``` ## Usage -Check [examples](https://github.com/Entropy-Foundation/supra-python-sdk/blob/master/examples/README.md) section. +Check [examples](examples/README.md) section. ## Reference Docs diff --git a/examples/README.md b/examples/README.md index 098a79b..6c2413e 100644 --- a/examples/README.md +++ b/examples/README.md @@ -26,5 +26,5 @@ uv run python -m examples. Running `transfer_coin.py` example: ```bash -bash uv run python -m examples.transfer_coin +uv run python -m examples.transfer_coin ```