Typed Python client for the exfer-walletd JSON-RPC API
Project description
exfer-walletd (Python SDK)
Typed Python client for the exfer-walletd
JSON-RPC API.
pip install exfer-walletd
from exfer_walletd import Client
with Client("http://127.0.0.1:7448", token="...") as c:
assert c.healthz() # True
addr = c.generate_address() # str
bal = c.get_balance(addr) # int (exfers)
tx = c.transfer(
from_="<your-managed-address>",
to="<recipient-address>",
amount=30_000_000, # exfers; 1 EXFER = 100_000_000 exfers
)
print(tx["tx_id"])
What this is
- A thin, typed wrapper over walletd's JSON-RPC. One method per RPC method.
- Both sync (
Client) and async (AsyncClient) — same surface, shared wire layer so they can't drift. - Single-value endpoints return bare
str/int. Multi-field endpoints returnTypedDicts. Nopydanticdependency.
Async
from exfer_walletd import AsyncClient
async with AsyncClient("http://127.0.0.1:7448", token) as c:
assert await c.healthz()
addr = await c.generate_address()
print(await c.get_balance(addr))
What this isn't
- Not a chain client. This SDK talks to walletd, which talks to a node. It never holds keys, never signs transactions, never derives addresses. If you want client-side signing, run walletd.
- Not a high-level wallet abstraction. Methods map 1:1 to the wire grammar; build helpers on top as your application needs them.
Token discovery
# 1. Explicit
Client("http://127.0.0.1:7448", "your-token")
# 2. From env vars (deployed backends): WALLETD_URL + WALLETD_AUTH_TOKEN
Client.from_env()
# 3. From a local walletd datadir (dev / colocated)
Client.from_datadir() # reads ~/.exfer-walletd/token
If walletd is configured with split scopes
(WALLETD_AUTH_TOKEN_READ + WALLETD_AUTH_TOKEN_SPEND), construct one
Client per scope. A read-only token calling transfer raises
AuthenticationError.
Errors
Every documented walletd error code maps to a typed exception, all
rooted at ExferError:
from exfer_walletd import (
ExferError, # blanket catch
AuthenticationError, # -32001
WalletNotFoundError, # -32010
UpstreamError, # -32020 — walletd's upstream node is unreachable
TxAuthError, # -32030 — UTXO authentication failed
InsufficientBalanceError, # -32031 — wallet can't cover amount+fee
InvalidParamsError, # -32602
TransportError, # walletd itself unreachable / non-JSON body
)
str(e) is the [-32xxx] message form, so plain
log.error(f"{e}") is enough for production.
InsufficientBalanceError.in_flight_reserved is True when the
shortfall comes from UTXOs reserved by other pending transfers from the
same walletd — retry after they confirm.
TLS
When walletd is started with --tls (v0.5.0+), point the SDK at the
https:// URL and supply the fingerprint walletd printed on first
run:
with Client.from_datadir(url="https://<walletd-host>:7448") as c:
c.ping() # auto-reads cert.fingerprint alongside token
The SDK pins the leaf cert by SHA-256, bypassing the CA chain
entirely. Mismatches raise FingerprintMismatchError.
Docs
Full docs site: https://exfer-stack.github.io/exfer-py/.
Status
0.6.0 — alpha. Tested against exfer-walletd >= 0.5.0 (TLS support).
MIT licensed.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file exfer_walletd-0.8.0.tar.gz.
File metadata
- Download URL: exfer_walletd-0.8.0.tar.gz
- Upload date:
- Size: 38.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b019e61501c259c8e92149aa8bb86da9d7f4d1d5e805f5e64078e38b82f23d23
|
|
| MD5 |
d2cc4d0346229226b52cf61e80940db6
|
|
| BLAKE2b-256 |
e37e09b38f9f27ab707d824bc55bcaac8e3ebf76cfea2bcf8bf18e54078b6492
|
File details
Details for the file exfer_walletd-0.8.0-py3-none-any.whl.
File metadata
- Download URL: exfer_walletd-0.8.0-py3-none-any.whl
- Upload date:
- Size: 26.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.2 {"installer":{"name":"uv","version":"0.10.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03e8a092ff1685b8375eead2dee6fc8d51ba0112076a8c9e6fd214de1114ab69
|
|
| MD5 |
db17dcd4c71e4b657fea7de07feee973
|
|
| BLAKE2b-256 |
9baa78ffb5f0b1439c55d32351114755cb40e7561591885a033b70913dfa8bbd
|