Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
6106493
Add SideSwap integration: BTC \xe2\x86\x94 L-BTC pegs and asset swap …
samsonmow May 11, 2026
30917f2
Add SideShift.ai cross-chain swap integration (#33)
samsonmow May 11, 2026
6e334a6
Add Changelly USDt cross-chain swap integration (#34)
samsonmow May 11, 2026
3b0264b
Add Pix → DePix on-ramp (Eulen API) (#36)
samsonmow May 12, 2026
ec041fe
Add Lightning Address (LUD-16) support to lightning_send (#37)
samsonmow May 12, 2026
346eb16
Add AQUA ASCII banner to CLI --help and bump to 0.4.0 (#38)
andycreed0x May 12, 2026
e6e0391
Add agentic-aqua console script alias for uvx compatibility (#57)
andycreed0x May 14, 2026
2bbc0f0
#22 Use fallback BTC explorer when Esplora connection drops (#58)
andycreed0x May 18, 2026
5e3b4e7
Address issues in the develop branch (#45)
coelhogonzalo May 18, 2026
9f6bf76
fix: mock Liquid sync_wallet in unified balance tests (#46)
marinate305 May 18, 2026
1e55c9d
fix: cast AnyUrl to str in read_resource() to fix silent documentatio…
marinate305 May 18, 2026
ce36592
progresive disclosure (#59)
andycreed0x May 21, 2026
5a31a12
#54 Changelly fee deducted from received amount — inconsistent with A…
andycreed0x May 22, 2026
2af112d
#50 sideshift send: requires --liquid-asset-id manually for non-L-BTC…
andycreed0x May 22, 2026
03b3dad
#55 expose flexible_small_amount as --flexible flag in sideswap swap …
andycreed0x May 22, 2026
479d20f
Add ln-address support to lightning CLI
rocket-morgan May 22, 2026
e392262
Document develop as default PR target
rocket-morgan May 22, 2026
3cd4f3d
Add CI test workflow (#63)
andycreed0x May 22, 2026
5328436
tuna (#64)
andycreed0x May 22, 2026
09ea0d2
v1 mcp name flaged
andycreed0x May 22, 2026
1c9eef4
Pin Python 3.13 for uv installs (#71)
rocket-morgan May 25, 2026
67adcb4
Create CONFIG.md
andycreed0x May 25, 2026
0cd698a
Merge pull request #77 from jan3dev/feat/feature-flags
marinate305 May 25, 2026
03c0f31
#78 fix Pix/DePix smoke-test findings (nonce format, approved status,…
andycreed0x May 27, 2026
4535976
Filter SideShift and Changelly list endpoints to USDt allowlist (#80)
andycreed0x May 27, 2026
6c5d3e2
Add swap integrations and manual smoke test prompts (#81)
andycreed0x May 27, 2026
8fa448d
Fix lightning send test to neutralize AQUA_PASSWORD from .env (#85)
andycreed0x May 27, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Tests

on:
pull_request:
branches: [main, develop]

jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"

- name: Install dependencies
run: uv sync --all-extras

- name: Run tests
run: uv run pytest
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ venv/
ENV/
env/
.venv/
.github/worktree/

# IDE
.idea/
Expand Down
Loading
Loading