Commit graph

128 commits

Author SHA1 Message Date
Parth
c832b80a2f
feat(earn): show own offer status in local orderbook (#1420) 2026-08-10 22:04:39 +02:00
theborakompanioni
1535a8148e
chore(build): fix lint warnings in form validation test
Some checks are pending
Build / build (v26.5.0) (push) Waiting to run
CodeQL / Analyze (push) Waiting to run
Deploy Storybook / deploy (push) Waiting to run
2026-08-09 22:58:11 +02:00
Aman Yadav
8f9d8d5917
fix(validation): correctly handle zero block height in blockHeightField (#1414) 2026-08-09 20:57:31 +02:00
GuTS805
9fb32af42f
fix: pin toLocaleString() calls to en-US locale (#1400)
* fix: pin toLocaleString() calls to en-US locale
Several number formatting call sites relied on the host machine's default
locale instead of a fixed one, causing inconsistent digit grouping in the
UI and non-deterministic test failures on non-US locales.

* fix: address review feedback, adapt tests instead of hardcoding locale in components
2026-08-04 22:32:48 +05:30
Thebora Kompanioni
4a90f342ff
refactor: use specific address type in ambiguity check (#1404)
Some checks are pending
Build / build (v26.5.0) (push) Waiting to run
CodeQL / Analyze (push) Waiting to run
Deploy Storybook / deploy (push) Waiting to run
2026-08-03 01:03:04 +05:30
Ash
51a23b4c5a
fix(validation): distinguish testnet and regtest for bech32 addresses (#1395)
Some checks are pending
Build / build (v26.5.0) (push) Waiting to run
CodeQL / Analyze (push) Waiting to run
Deploy Storybook / deploy (push) Waiting to run
* fix(validation): distinguish testnet and regtest for bech32 addresses

Base58 addresses (p2pkh/p2sh) genuinely collapse between testnet and regtest
because they share version bytes, so bitcoin-address-validation always labels
them testnet - the interchangeable fallback is correct for those. Bech32
addresses, however, carry a distinct HRP (tb1 vs bcrt1) and are already
identified per-network, so gate the fallback on !bech32. This stops a bcrt1
(regtest) address passing on a testnet wallet, and vice versa.

Follow-up to #1355.

* docs(test): correct base58 address type in comment (P2PKH, not P2SH)

* test(validation): pin testnet/regtest separation for bech32m taproot addresses
2026-08-02 13:53:24 +05:30
theborakompanioni
6d7b0362e3
chore: send/sweep precondition alerts with non-frozen fb warning 2026-07-31 21:13:51 +02:00
theborakompanioni
7988595766
test: change mainnet test address placeholders 2026-07-31 13:27:57 +02:00
Thebora Kompanioni
bce1df33e9
chore(send): jars with frozen funds are selectable (#1370)
* chore(send): remove dev/prod distinction for minimum collaborators

this is already dynamically done by fetching the backend config value

* chore(send): jars with frozen funds are selectable

* ui(send): justify jars and increase space to precondition alert

* build: fix errors in test setups

* feat(send): open utxo selector on click on selected jar

* test: add tests for Jar and SelectableJar

* chore(ui): frozen balance with class 'invisible' instead of 'hidden'

* ui(receive): justify around jars

* chore(i18n): improve missing source jar utxos message
2026-07-30 11:35:19 +02:00
Thebora Kompanioni
6490a96714
fix(receive): save sourceJarIndex before async operation (#1369)
Some checks failed
Build / build (v26.5.0) (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
Deploy Storybook / deploy (push) Has been cancelled
* fix(receive): save sourceJarIndex before async operation

* chore: flag if address from parsed from bip21 uri

* chore: scan applied alert only when parsed from uri
2026-07-29 09:18:20 +02:00
Thebora Kompanioni
01a952ff63
refactor: improve balance summary calculation (#1350)
* chore: store bonded balance in BalanceSummary

* refactor: improve balance summary calculation
2026-07-27 14:48:12 +05:30
Ash
82cc4762ff
fix(sweep): validate destination addresses against wallet network (#1355)
Some checks are pending
Build / build (v26.5.0) (push) Waiting to run
CodeQL / Analyze (push) Waiting to run
Deploy Storybook / deploy (push) Waiting to run
2026-07-26 21:03:31 +02:00
Parth
5ae6a18e35
Rework the Fidelity Bond modals (create, renew, unlock) (#1345)
Some checks are pending
Build / build (v26.3.0) (push) Waiting to run
CodeQL / Analyze (push) Waiting to run
Deploy Storybook / deploy (push) Waiting to run
* fix: generate valid past lockdate options in developer mode

* fix: keep dialog scrollbar clear of step content

* feat: allow creating additional fidelity bonds in developer mode

* chore: align jars and improve bond wording

* chore(fb): use Item component in StepIntro

* chore(ui): update Card component

* chore(earn): always show action buttons for expired fidelity bonds

* chore: remove obsolete responsive test for Card component

---------

Co-authored-by: theborakompanioni <theborakompanioni+github@gmail.com>
2026-07-25 02:19:38 +02:00
theborakompanioni
0eecb9444f refactor: replace deprecated toThrowError with toThrow 2026-07-24 23:22:19 +02:00
theborakompanioni
a020635089 refactor: derive key only once in AccountXpubsDialog 2026-07-24 23:22:19 +02:00
theborakompanioni
1433698eb4 refactor: move uint8ArrayfromHex to utils 2026-07-24 23:22:19 +02:00
Thebora Kompanioni
b90d5b2843
chore(ui): use FieldError component consistently (#1348)
* chore: freeze/unfreeze alert warning or error depending on context

* chore(sweep): fieldset and errors in sweep form

* chore(form): use FieldError component consistently

* chore(cleanup): remove unnecessary mocks

* test(websocket): initial test for useJmWebsocket
2026-07-24 18:04:58 +02:00
Kishore B
51d843c03a
feat(ui): show backend-specific warnings in onboarding and footer info modals (#1341)
* feat(ui): joinmarket backend information in info modals

* chore(i18n): remove joinmarket-clientserver specific texts

* refactor: add constants JAM_REPO_URL, JAM_DOCS_URL, JAM_JMNG_REPO_URL

* chore(ui): add third splashscreen description line

Signed-off-by: kishore08-07 <kishorebsm8@gmail.com>
2026-07-24 15:25:17 +02:00
Thebora Kompanioni
64ecd7ad77
feat: plan scheduled sweep (#1339)
Some checks are pending
Build / build (v26.3.0) (push) Waiting to run
CodeQL / Analyze (push) Waiting to run
Deploy Storybook / deploy (push) Waiting to run
* refactor: add reason to scheduler error messages

* fix: dismiss schedule confirm dialog on error

* chore(i18n): distinct scheduler starting/stopping messages

* chore(sweep): remove redundant manual destination validation

* chore(sweep): initial sweep options

* chore(ui): add slider component

* chore(sweep): add rounding chance option

* feat(sweep): ability to add/remove destinations

* chore(sweep): use plan tumbler mutation

* refactor(sweep): use tumblerstartMutation

* refactor(sweep): externalize SweepForm

* feat(sweep): ability to set min/max number of collaborators

* chore(sweep): increase time_lambda_seconds in insecure test options

* chore(sweep): fix progress step of quick sweep

* chore(sweep): start refactor schedule entry

* chore(sweep): preserve raw data in ScheduleEntry

* feat(sweep): show destination addresses

* chore(sweep): scroll to top after start/stop

* chore(ui): add Item component

* fix: only abort single taker runs on send page

* chore(sweep): schedule entries with Item component

* chore(sweep): show wait time before next action

* chore(sweep): schedule entries in accordion

* chore(sweep): remove scheduler.progress_current_state_wait_before_next message

* chore(sweep): tab for completed entries

* refactor(sweep): align Schedule object structure

* chore(sweep): display error message on failed actions

* chore(sweep): display completed scheduled sweep

* chore(sweep): move stop button from child component to page

* feat(sweep): ability to review scheduled sweep plan

* chore(sweep): increase schedule polling from 3s to 10s

* chore(sweep): hourglass icon for waiting alerts

* chore(sweep): adapt buttons, labels and alert texts

* fix(sweep): default min confirmations between phases

* chore(sweep): improve time estimate on sweeps

* chore(sweep): show pending tasks in details

* feat(sweep): ability to configure mintxcount

* chore(storybook): add slider, sidebar and item stories

* test(sweep): verify add/remove sweep destination input

* test: load decorators from story meta config

* chore(sweep): add makeSessionIdleTimeoutSeconds to form values

* chore(sweep): reload schedule if not stale or terminated

* chore(sweep): more details in sections

* chore(sweep): reorder entry details

* chore(sweep): show transaction info in destination section

* chore(sweep): estimate duration with fixed runtime info of maker phases

* chore(regtest): setup dummy wallet fidelity bonds

* fix(sweep): maker idle timeout less than runtime duration

* chore(sweep): use taker_utxo_age as min confs in sweep preconditions

* chore(build): add task test:coverage

* chore(sweep): max number of destination addresses

* chore(sweep): maxNumberOfDestinations
2026-07-23 13:06:40 +02:00
Thebora Kompanioni
f9523729ae
chore(rescan): max rescan height is current blockheight (#1332)
Some checks failed
Build / build (v26.3.0) (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
Deploy Storybook / deploy (push) Has been cancelled
* chore(rescan): max rescan height is current blockheight

* chore: generalize block height form input

* feat(rescan): quickly set start block height

* chore(rescan): optionally render back button

* chore: use constant for initial blockheight value calculation
2026-07-21 18:29:48 +02:00
theborakompanioni
419cdf1db0 chore(i18n): adapt tag tooltips 2026-07-12 18:21:46 +02:00
theborakompanioni
f7a1af9993 chore(ui): improve tx tags colors 2026-07-12 18:21:46 +02:00
Parth
0ae4c1d65f
i18n rework and dialog UX fixes (#1330)
Some checks are pending
Build / build (v26.3.0) (push) Waiting to run
CodeQL / Analyze (push) Waiting to run
Deploy Storybook / deploy (push) Waiting to run
* fix(ui): place cancel below primary action in dialogs on mobile

* chore(i18n): remove unused translation keys

* fix(i18n): add missing keys referenced in code

* dev(i18n): translate hardcoded status alerts and toasts

* dev(i18n): translate hardcoded navigation and misc UI strings

* dev(i18n): translate post-login onboarding tour

* dev(i18n): translate hardcoded strings in create, import, and login flows

* chore(i18n): fix misspelled mnemonic key names

* chore(i18n): reuse global button labels instead of per-dialog duplicates

* fix(i18n): replace english-text-as-key t() calls with real keys

* dev(i18n): apply review feedback on key structure

* fix(i18n): restore locale translations for reused fee-config error key

* fix(lint): remove eslint-disable directives for rules dropped in dep upgrade

* fix(lint): scope eslint-disable to cover all this/http violations in test mocks

* dev(i18n): translate address-reuse safety toasts and remaining stragglers

* fix(test): update useUtxoSelectionDialog assertion to translated toast keys

* dev(i18n): address review — add _title postfix and pluralize auto-selection toasts
2026-07-11 16:54:52 +05:30
Kishore B
7cf31890b2
refactor: migrate API client to joinmarket-ng-api-ts (#1305)
* chore(deps): migrate to joinmarket-ng-api-ts

- Uninstall legacy  (v0.3.0).
- Install new  (v1.0.0).
- Update package.json  for  to apply to the new ng-api package.

Signed-off-by: kishore08-07 <kishorebsm8@gmail.com>

* refactor: update all api client imports to use joinmarket-ng-api-ts

Signed-off-by: kishore08-07 <kishorebsm8@gmail.com>

* refactor(types): replace ErrorMessage with unknown for ng-api compatibility

- Remove ErrorMessage type imports from @joinmarket-webui/joinmarket-ng-api-ts/jm across the codebase.
- Update error types in React Query hooks (useQuery, useMutation) and context states to use unknown instead of ErrorMessage.
- Update error handler callbacks (onError) to accept unknown type, adapting to the error type changes in the generated ng-api client.

Signed-off-by: kishore08-07 <kishorebsm8@gmail.com>

* fix(types): handle nullable fields from ng-api client

- Add nullish/undefined checks for sessionInfo.wallet_name in create, import, and login flows.
- Handle nullable progress field in rescanInfo by checking != null and defaulting to undefined.
- Fallback block_height to undefined if nullish in layout and session contexts.
- Default walletInfo.accounts to an empty array to prevent mapping errors if nullish.

Signed-off-by: kishore08-07 <kishorebsm8@gmail.com>

* fix(types): fix typescript errors from ng-api transition

Signed-off-by: kishore08-07 <kishorebsm8@gmail.com>

* fix(lint): resolve typescript-eslint errors in tests and providers

Signed-off-by: kishore08-07 <kishorebsm8@gmail.com>

* feat: redesign sweep to tumbler api with minimal adaptations

Signed-off-by: kishore08-07 <kishorebsm8@gmail.com>

* pin api-ts deps and validate rescan progress value

Signed-off-by: kishore08-07 <kishorebsm8@gmail.com>

* simplify active session check in import flows and harden report parsing

Signed-off-by: kishore08-07 <kishorebsm8@gmail.com>

* refactor: fastapi error parsing and SweepPage ux

Signed-off-by: kishore08-07 <kishorebsm8@gmail.com>

* fix: set VITE_JM_API_BASE_URL to empty for joinmarket-ng-api-ts
-Endpoints generated by the new client package already include the
'/api/v1' path prefix in their definitions.

Signed-off-by: kishore08-07 <kishorebsm8@gmail.com>

* refactor(ui): use session state as single source of truth for active wallets

- Use  as the sole condition to display the active session warning in wallet create/import flows, rather than relying on the presence of a .
- Update  to dynamically fall back to a localized placeholder ('another wallet') when  is missing.
- Add  fallback key to English translation file.

Signed-off-by: kishore08-07 <kishorebsm8@gmail.com>

* style: format create, import files

Signed-off-by: kishore08-07 <kishorebsm8@gmail.com>

* refactor(earn): support only ng backend format in yieldgen report hook

Signed-off-by: kishore08-07 <kishorebsm8@gmail.com>

* refactor: improve active wallet warning translations

Signed-off-by: kishore08-07 <kishorebsm8@gmail.com>

* fix(sweep): use includes instead of repeated equality checks for lint check

Signed-off-by: kishore08-07 <kishorebsm8@gmail.com>

* refactor(sweep): align phase completion check strictly with ng backend PhaseStatus

Signed-off-by: kishore08-07 <kishorebsm8@gmail.com>

---------

Signed-off-by: kishore08-07 <kishorebsm8@gmail.com>
2026-07-10 20:04:16 +05:30
Thebora Kompanioni
6a34868e2b
build(deps): update dependencies (#1322)
* build(deps): update dependencies

 @radix-ui/react-accordion      1.2.14  →  1.2.16
 @radix-ui/react-avatar          1.2.0  →   1.2.2
 @radix-ui/react-checkbox        1.3.5  →   1.3.7
 @radix-ui/react-dialog         1.1.17  →  1.1.19
 @radix-ui/react-dropdown-menu  2.1.18  →  2.1.20
 @radix-ui/react-label          2.1.10  →  2.1.11
 @radix-ui/react-popover        1.1.17  →  1.1.19
 @radix-ui/react-radio-group     1.4.1  →   1.4.3
 @radix-ui/react-select          2.3.1  →   2.3.3
 @radix-ui/react-separator      1.1.10  →  1.1.11
 @radix-ui/react-switch          1.3.1  →   1.3.3
 @radix-ui/react-tabs           1.1.15  →  1.1.17
 @radix-ui/react-tooltip        1.2.10  →  1.2.12
 @types/node                    26.0.1  →  26.1.1
 conventional-changelog          7.2.0  →   7.2.1
 lucide-react                   1.22.0  →  1.23.0
 msw                            2.14.6  →  2.15.0
 prettier                        3.9.3  →   3.9.4
 radix-ui                        1.6.0  →   1.6.2
 react-hook-form                7.80.0  →  7.81.0
 typescript-eslint              8.62.1  →  8.63.0
 vite                            8.1.0  →   8.1.3

* build(deps): update eslint-plugin-unicorn to v65.0.1
2026-07-08 23:07:57 +05:30
Thebora Kompanioni
147d815f3b
fix: correct rescan progress on Rescan page (#1313)
Some checks are pending
Build / build (v26.3.0) (push) Waiting to run
CodeQL / Analyze (push) Waiting to run
Deploy Storybook / deploy (push) Waiting to run
* dev(regtest): remove unnecessary env vars

* fix: correct rescan progress on Rescan page

* Revert "dev(regtest): remove unnecessary env vars"

This reverts commit f6ca1cbd4c.

* chore: progress in percentage as string
2026-07-08 00:37:23 +05:30
Parth
ff739fcc07
refactor(validation): share form field validators for source jar and bitcoin address (#1315)
* refactor(validation): add shared form field validators

* refactor(send): use shared source jar and destination address validators

* refactor(receive): use shared source jar validator and align amount bound

* refactor(earn): use shared source jar validator for fidelity bonds

* refactor(sweep): reuse shared bitcoin address predicates

* fix(validation): guard chained destination address tests and trim input
2026-07-06 23:44:21 +05:30
Thebora Kompanioni
d9bf64fb02
fix(login): wallet preselection (#1296)
Some checks failed
Build / build (v26.3.0) (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
Deploy Storybook / deploy (push) Has been cancelled
2026-06-24 19:12:48 +05:30
Wu Shuwen
3fc3ff3d58
fix: handle locale-specific decimal separators in BTC balance (#1290)
Some checks are pending
Build / build (v26.3.0) (push) Waiting to run
CodeQL / Analyze (push) Waiting to run
Deploy Storybook / deploy (push) Waiting to run
2026-06-23 15:39:32 +02:00
Kishore B
08890f6dda
chore(ui): tooltip for jm:autofrozen:reuse label (#1293) 2026-06-23 08:56:20 +02:00
Parth
6e3c905ddc
test: expand full-project coverage (#1276) 2026-06-22 01:02:45 +02:00
Dinar
51f3f02201
test: clean up fidelity bond utility test wording (#1279)
Some checks failed
Build / build (v24.11.1) (push) Has been cancelled
CodeQL / Analyze (push) Has been cancelled
Deploy Storybook / deploy (push) Has been cancelled
Co-authored-by: Dinar <dinarrrofficials@gmail.com>
2026-06-11 18:41:51 +02:00
Parth
9a7b7cb2de
test: add coverage for utilities and shared components (#1267) 2026-06-07 15:59:39 +02:00
Thebora Kompanioni
3cc63c535c
refactor: move functions and cleanup (#1255)
* refactor: move function 'clamp' to utils

* refactor: move function 'median' to utils

* refactor: move MAX_NUM_COLLABORATORS to constants
2026-06-06 23:53:01 +05:30
Thebora Kompanioni
a5d47c8be0
build(ci): report test coverage (#1241) 2026-05-08 17:07:56 +02:00
Thebora Kompanioni
454daa2839
chore(regtest): initial joinmarket-ng backend for regtest environment (#1240)
* chore(regtest): initial joinmarket-ng backend for regtest environment

Adds jmwalletd, directory servers, makers, and bitcoind to the regtest
docker-compose environment so jam can be developed against the jm-ng
backend end-to-end.

chore(regtest): wire docker compose env and vite dev proxy for jm-ng

Connects the local regtest containers into a single compose network,
adds tor and fund-wallet helpers, and points Vite's dev proxy at the
local jmwalletd instance.

fix(tags): recognize cj-change, used-empty, and flagged UTXO statuses

joinmarket-ng's WalletService emits four statuses jam's JmPlainTagValue
didn't cover: 'cj-change' (deanonymising change from our CJ),
'used-empty' (previously-used address with zero balance), and 'flagged'
(address shared in a CJ that later failed). They fell through to the
generic 'default' badge with no distinguishing styling.

Add them to JmPlainTagValue and the status->variant map. 'used-empty'
maps to the existing 'used' variant, 'flagged' to 'reused' (both signal
a used address the user should avoid reusing). Add a dedicated
'cj-change' badge variant (emerald) next to 'cj-out' so the
deanonymising change output is visually distinct from an equal-amount
CJ output.

fix(send): keep direct send available with maker

Only block collaborative sends while the maker service is running. Direct sends stay enabled and the form explains why the collaborative toggle is unavailable.

Changelog: Allow direct sends while the maker service is running

docs(dev): explain jm-ng backend workflow

fix(auth): only clear auth on invalid_token 401s

Previously every 401 response cleared the session and logged the user out. jm-ng returns 401 for service-state errors (e.g. POST /tumbler/stop when nothing is running), which should never drop the session. Inspect the WWW-Authenticate header and only clear auth when the server signals ``error="invalid_token"``.

Changelog: Non-auth 401 responses no longer log the user out.

fix(dev): proxy /jmws to the jm-ng HTTPS port

jm-ng serves WebSocket on the same port as the HTTPS API. The `jm-ng:dev` script used to override JMWALLETD_WEBSOCKET_PORT to 32283, but the regtest stack exposes that port without a matching listener, so vite proxied WebSocket upgrades into a dead port and the handshake returned empty. Default the env var to JMWALLETD_API_PORT and drop the override.

Changelog: Fix WebSocket proxying in the local jm-ng dev setup.

fix(dev): correct jm-ng websocket port and proxy targets

Update the README and developer docs to reflect that both ports must be
set when overriding for a custom jm-ng setup.

fix(dev): correct jm-ng websocket port (#1237)

chore(dev): distinct server configs for various backends

* chore(regtest): address jm-ng review comments

---------

Co-authored-by: m0wer <m0wer@sgn.space>
Co-authored-by: Parth Bandwal <143504541+parrth20@users.noreply.github.com>
2026-05-05 13:52:41 +02:00
Parth
f522eae074
fix(earn): try prevent "no confirmed coins" on earn page (#1239)
fix(earn): handle unavailable confirmed balance
2026-05-04 23:55:56 +05:30
Thebora Kompanioni
3cf02afd16
chore: valid number must be finite (#1234)
* chore: valid number must be finite

* chore: add util function isValidInteger

* chore: use isValidNumber and isValidInteger
2026-05-02 00:54:35 +05:30
theborakompanioni
8fbb4894cd test(fees): verify toJamFeeConfigValues 2026-04-30 14:00:47 +02:00
theborakompanioni
6a54006a30 refactor(fee-dialog): provide factors as string without number conversion 2026-04-30 14:00:47 +02:00
theborakompanioni
40435ee217 fix: correctly apply feeFactor for jam fee settings 2026-04-30 14:00:47 +02:00
theborakompanioni
b383911abb refactor(fees): type-safe fee values conversion 2026-04-30 14:00:47 +02:00
Thebora Kompanioni
79915db774
build(deps): update dependencies and fix eslint violations (#1230)
* build(deps): update dependencies

 @tailwindcss/vite               4.2.2  →    4.2.4
 @tanstack/eslint-plugin-query  5.99.0  →  5.100.1
 @tanstack/react-query          5.99.0  →  5.100.1
 prettier-plugin-tailwindcss     0.7.2  →    0.7.3
 react-i18next                  17.0.2  →   17.0.4
 react-router-dom               7.14.1  →   7.14.2
 tailwindcss                     4.2.2  →    4.2.4
 typescript                      6.0.2  →    6.0.3
 @scure/bip32                    2.0.1  →    2.2.0
 @scure/bip39                    2.0.1  →    2.2.0
 eslint-plugin-react-hooks       7.0.1  →    7.1.1
 lucide-react                    1.8.0  →    1.9.0
 react-hook-form                7.72.1  →   7.73.1
 typescript-eslint              8.58.2  →   8.59.0

* chore(build): fix violations after eslint plugin updates

* chore: check window availability in useIsMobile

* build(deps): update dependencies

 @tanstack/eslint-plugin-query  5.100.1  →  5.100.6
 @tanstack/react-query          5.100.1  →  5.100.6
 prettier-plugin-tailwindcss      0.7.3  →    0.7.4
 react-i18next                   17.0.4  →   17.0.6
 typescript-eslint               8.59.0  →   8.59.1

* build(deps): update dependencies

 jsdom                        29.0.2  →  29.1.0
 lucide-react                  1.9.0  →  1.13.0
 prettier-plugin-tailwindcss   0.7.4  →   0.8.0
 react-hook-form              7.73.1  →  7.74.0

* build(ci): check format

* chore(ci): run pipeline for master and devel
2026-04-29 10:07:37 +02:00
theborakompanioni
efa22b92e5
chore: clear auth and query cache only if authenticated
e.g. does not clear wallet query on invalid login attempts
2026-04-27 12:01:47 +02:00
Ashish Kumar Dash
7f640a2b87
fix: align api client path encoding (#1209) 2026-04-17 00:39:11 +02:00
Parth
7339e85825
refactor: use react-hook-form for fee dialog forms (#1205) 2026-04-16 23:01:42 +02:00
Thebora Kompanioni
ad46a163b8
chore: fix features path and rename jam api lib file (#1210) 2026-04-16 16:47:34 +05:30
kunal yadav
4f06140647
fix: clear auth on 401 API responses (#1152) 2026-04-12 23:18:09 +02:00
Ashish Kumar Dash
8136205f26
fix(test): BTC and sats formatting across locales (#1202) 2026-04-12 22:53:44 +02:00
Thebora Kompanioni
eedc54c55d
chore(import): prepare rescan by splitting import flow steps (#1168)
* chore(ui): update alert component

* chore(import): add dev badge to dummy button

* chore(import): show bip-39 compat warning only on unsuccessful submit

* chore(import): display alert when rescan is active

* refactor: rename CreateStepDetailsInput to CreateStepWalletDetails

* chore(import): split import flow steps

* build(deps): update dependencies

 @chromatic-com/storybook    5.0.1  →     5.0.2
 @eslint/js                 9.39.2  →    9.39.4
 @storybook/addon-a11y     10.2.17  →   10.2.19
 @storybook/addon-docs     10.2.17  →   10.2.19
 @storybook/addon-vitest   10.2.17  →   10.2.19
 @storybook/react-vite     10.2.17  →   10.2.19
 @tailwindcss/vite           4.2.1  →     4.2.2
 @types/node               24.10.1  →  24.10.15
 eslint                     9.39.2  →    9.39.4
 eslint-plugin-compat        6.2.0  →     6.2.1
 eslint-plugin-storybook   10.2.17  →   10.2.19
 lint-staged                16.3.3  →    16.3.4
 react-i18next              16.5.6  →    16.5.8
 storybook                 10.2.17  →   10.2.19
 tailwindcss                 4.2.1  →     4.2.2
 typescript-eslint          8.57.0  →    8.57.1
 zustand                    5.0.11  →    5.0.12

* build(deps): update dependencies

 @storybook/addon-a11y    10.2.19  →  10.3.1
 @storybook/addon-docs    10.2.19  →  10.3.1
 @storybook/addon-vitest  10.2.19  →  10.3.1
 @storybook/react-vite    10.2.19  →  10.3.1
 @tanstack/react-query    5.90.21  →  5.94.5
 eslint-plugin-storybook  10.2.19  →  10.3.1
 globals                   17.3.0  →  17.4.0
 jsdom                     28.1.0  →  29.0.1
 lint-staged               16.3.4  →  16.4.0
 react-hook-form           7.71.2  →  7.72.0
 react-i18next             16.5.8  →  16.6.1
 storybook                10.2.19  →  10.3.1

* refactor: seed phrase -> mnemonic phrase

* chore(import): add blockheight and gaplimit params

* chore(import): rescan chain after import

* chore(import): auto reload balance after rescan
2026-04-09 20:31:04 +02:00