> ## Documentation Index
> Fetch the complete documentation index at: https://docs.peaq.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# Wallet Basics

Create an SDK instance and access your address and balance. Secrets can be provided explicitly if needed.

```python theme={"theme":{"light":"github-light-default","dark":"github-dark"}}
from peaq_robot import PeaqRobot

# Default instance
sdk = PeaqRobot()
print(sdk.address)

# Optional: provide secrets explicitly
PeaqRobot(mnemonic="...")
PeaqRobot(private_key="0x...")
```

Tip: The examples repo uses a local keystore via `examples/.env`:

```ini theme={"theme":{"light":"github-light-default","dark":"github-dark"}}
PEAQ_ROBOT_KEYSTORE=.data/wallet.json
PEAQ_ROBOT_FUND_MNEMONIC="<agung testnet mnemonic>"
```
