Create a PeaqRobot instance to access wallet, identity, and storage modules.
from peaq_robot import PeaqRobot

sdk = PeaqRobot()

# 2) Use keystore (recommended) or explicit mnemonic
# Keystore path can be set via env PEAQ_ROBOT_KEYSTORE

# 3) Choose network (testnet by default). To override:

sdk = PeaqRobot(network="agung", mnemonic="your 12/24 words ...")   # or "peaq" / custom wss URL
Quick check:
print(sdk.address)
print(sdk.balance)  # float
Properties:
  • sdk.address: SS58 address of the active keypair
  • sdk.balance: free balance in AGUNG units (float)
  • sdk.id: identity module
  • sdk.store: storage module