Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
96f5721
add new app
pietrograndi83 Sep 30, 2025
708ff05
signin, orderbook
pietrograndi83 Sep 30, 2025
be3cbd8
Introduce Escrow webapp in iframe. RPC, signin, orderbook.
pietrograndi83 Sep 30, 2025
a757111
things working
pietrograndi83 Oct 2, 2025
115b50a
wip
pietrograndi83 Oct 10, 2025
8dcb744
rebase from master
pietrograndi83 Oct 10, 2025
906ef56
fix recent updates
pietrograndi83 Oct 14, 2025
cff3ad1
wip
pietrograndi83 Oct 14, 2025
5558ff4
Upgrage to ts-sdk 0.3.1-alpha.5
pietrograndi83 Oct 17, 2025
c2d419b
Address first review comments
pietrograndi83 Oct 17, 2025
25628d2
Add configurable BASE_URL for Escrow app
pietrograndi83 Oct 17, 2025
250eb5b
Fix latest comments and wrong lock file
pietrograndi83 Oct 17, 2025
001e228
Fix CodeRabbit issues
pietrograndi83 Oct 19, 2025
570a7e9
Remove unused state
pietrograndi83 Oct 19, 2025
13a66e9
Add test for Escrow RpcHandler
pietrograndi83 Oct 20, 2025
aa84fd7
Latest comments from CodeRabbit
pietrograndi83 Oct 20, 2025
b062d98
Fix fundAddress definition and test
pietrograndi83 Oct 20, 2025
f3203de
post-rebase updates
pietrograndi83 Nov 3, 2025
4704ef7
remove unnecessary changes, hide Escrow if not deep linked
pietrograndi83 Nov 17, 2025
ae096ab
Add getArkWalletBalance
pietrograndi83 Nov 19, 2025
921246f
Improve loading time
pietrograndi83 Nov 19, 2025
cd45cd2
simplify iframe interface
pietrograndi83 Nov 19, 2025
e0b03c4
Addres Coderabbit comments
pietrograndi83 Nov 19, 2025
a1e5e12
Fix useMemo error
pietrograndi83 Nov 20, 2025
91c1af1
temp for test
pietrograndi83 Nov 20, 2025
70849ed
collaborative exit with fees
bordalix Nov 10, 2025
97a1289
Fix showing password when server is unreachable (#234)
bordalix Nov 17, 2025
ae37855
Detect JavaScript/JIT capabilities and show informative error message…
Copilot Dec 3, 2025
f0fe926
add new app
pietrograndi83 Sep 30, 2025
efbab8d
Fund directly from Escrow app
pietrograndi83 Dec 3, 2025
953b659
Fix formatting
pietro909 Dec 8, 2025
75dac30
Remove spurious updates from initial POC
pietro909 Dec 8, 2025
ccde207
Use env vars for iFrame url
pietro909 Dec 9, 2025
27b5b11
Fund directly from Escrow app
pietro909 Dec 9, 2025
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
17 changes: 9 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,15 @@ Arkade Wallet is the entry-point to the Arkade ecosystem—a self-custodial Bitc
| `VITE_CHATWOOT_BASE_URL` | ChatWoot server base URL for customer support integration | `VITE_CHATWOOT_BASE_URL=https://app.chatwoot.com` |
| `VITE_PSA_MESSAGE` | Manage message to show in wallet index page | `VITE_PSA_MESSAGE=@arkade_os on TG for support` |
| `VITE_SENTRY_DSN` | Enable Sentry error tracking (only in production, not on localhost) | `VITE_SENTRY_DSN=your-sentry-dsn` |
| `CI` | Set to `true` for Continuous Integration environments | `CI=true` |
| `GENERATE_SOURCEMAP` | Disable source map generation during build | `GENERATE_SOURCEMAP=false` |
| `VITE_LENDASAT_IFRAME_URL` | Overwrite the default LendaSat URL | `VITE_LENDASAT_IFRAME_URL=http://localhost:5173` |
| `VITE_LENDASWAP_IFRAME_URL` | Overwrite the default LendaSwap URL | `VITE_LENDASWAP_IFRAME_URL=http://localhost:5174` |
| `VITE_UTXO_MAX_AMOUNT`. | Overwrite the server's utxoMaxAmount | `VITE_UTXO_MAX_AMOUNT=-1` |
| `VITE_UTXO_MIN_AMOUNT`. | Overwrite the server's utxoMinAmount | `VITE_UTXO_MIN_AMOUNT=330` |
| `VITE_VTXO_MAX_AMOUNT`. | Overwrite the server's vtxoMaxAmount | `VITE_VTXO_MAX_AMOUNT=-1` |
| `VITE_VTXO_MIN_AMOUNT`. | Overwrite the server's vtxoMinAmount | `VITE_VTXO_MIN_AMOUNT=330` |
| `CI` | Set to `true` for Continuous Integration environments | `CI=true` |
| `GENERATE_SOURCEMAP` | Disable source map generation during build | `GENERATE_SOURCEMAP=false` |
| `VITE_LENDASAT_IFRAME_URL` | Overwrite the default LendaSat URL | `VITE_LENDASAT_IFRAME_URL=http://localhost:5173` |
| `VITE_LENDASWAP_IFRAME_URL` | Overwrite the default LendaSwap URL | `VITE_LENDASWAP_IFRAME_URL=http://localhost:5174` |
| `VITE_UTXO_MAX_AMOUNT`. | Overwrite the server's utxoMaxAmount | `VITE_UTXO_MAX_AMOUNT=-1` |
| `VITE_UTXO_MIN_AMOUNT`. | Overwrite the server's utxoMinAmount | `VITE_UTXO_MIN_AMOUNT=330` |
| `VITE_VTXO_MAX_AMOUNT`. | Overwrite the server's vtxoMaxAmount | `VITE_VTXO_MAX_AMOUNT=-1` |
| `VITE_VTXO_MIN_AMOUNT`. | Overwrite the server's vtxoMinAmount | `VITE_VTXO_MIN_AMOUNT=330` |
| `VITE_ARK_ESCROW_URL` | Override the default Ark Escrow app URL for Ark Escrow | `VITE_ARK_ESCROW_URL=https://your-ark-escrow-app-url.com` |

## Getting Started

Expand Down
Loading