mirror of
https://github.com/Xahau/xahaud.git
synced 2026-04-29 15:37:46 +00:00
python exploration of the client-side (any json) and node-side (field-aware codec: OP_FIELD / OP_NAME / OP_VALUE / OP_TAG / OP_RAW). not wired into the c++ build; kept for design reference and size measurements.
21 lines
428 B
TOML
21 lines
428 B
TOML
[project]
|
|
name = "json-tx"
|
|
version = "0.0.1"
|
|
description = "Prototype: canonical packing of (tx_json_str, signature) using ripple-binary-codec output as an LZ dictionary"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"xrpl-py>=4.0.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/json_tx"]
|
|
|
|
[tool.uv]
|
|
dev-dependencies = [
|
|
"pytest>=8.0",
|
|
]
|