Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 1.05 KB

README.md

File metadata and controls

22 lines (18 loc) · 1.05 KB

Built on terra-python-sdk from the legends at Terra
Just took the API parts and modified to work with Akash blockchain.

This does not allow you to send any transactions to the chain, for that please use the official akash software.
Solely for block exploration purposes on a Python interface.
Recommended for interactive platforms like colab and jupyter

Very brief tutorial on Colab

Setup

git clone https://github.com/coranium/akash-python-api.git
cd akash-python-api
pip install terra_sdk

Quickstart

Get API_URL and CHAIN_ID from https://github.com/ovrclk/net

Initialise client using:
from lcd import LCDClient
akash = LCDClient(chain_id=CHAIN_ID, url=API_URL)

Most modules from terra-python-sdk should work. Refer to their docs.