Skip to content
This repository was archived by the owner on Jan 16, 2026. It is now read-only.

v0.6.0

Latest

Choose a tag to compare

@alagiz alagiz released this 11 Oct 07:24
· 1 commit to main since this release

Akash Python SDK v0.6.0

Python SDK for Akash blockchain and decentralized cloud platform.

Breaking Changes

  • Renamed get_balances() to get_all_balances() for consistency with the underlying BankClient.get_all_balances() method.
    # Old (v0.5.0)
    balances = client.get_balances(address)
    
    # New (v0.6.0)
    balances = client.get_all_balances(address)

Features

Blockchain

  • Cosmos SDK modules: Auth, Authz, Bank, Distribution, Evidence, Feegrant, Governance, IBC, Inflation, Slashing, Staking
  • Transaction signing and broadcasting with mnemonic/private key support

Akash Network

  • Deployment lifecycle: create, update, close
  • Provider discovery and monitoring
  • Lease and bid management
  • Certificate management
  • Manifest validation and log streaming

Compatibility

  • Python 3.8-3.12

Installation

pip install akash

Requirements

Python 3.8+