Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ uv run python -m examples.<example_filename_without_py_extension>
Running `transfer_coin.py` example:

```bash
bash uv run python -m examples.transfer_coin
uv run python -m examples.transfer_coin
```