feat: adds a wallet select to picking wallet + uv (#37)

* Adds a wallet select to picking wallet

* added uv

* uv uv uv

---------

Co-authored-by: dni  <office@dnilabs.com>
This commit is contained in:
Arc 2026-05-05 22:53:59 +01:00 committed by GitHub
commit 81184a0a53
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 2364 additions and 3699 deletions

View file

@ -1,5 +1,3 @@
from typing import Optional
from fastapi import Query
from pydantic import BaseModel
@ -9,7 +7,7 @@ class Target(BaseModel):
wallet: str
source: str
percent: float
alias: Optional[str] = None
alias: str | None = None
class TargetPut(BaseModel):