From c4dc2fe20faba654a732fe022178aa570e0a9266 Mon Sep 17 00:00:00 2001 From: bragaz Date: Sat, 5 Sep 2026 13:37:06 +0200 Subject: [PATCH 1/3] chore: ignore the prtriage/ scratch mirror --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index fd739791..4d4208bc 100644 --- a/.gitignore +++ b/.gitignore @@ -44,3 +44,6 @@ data/teachings.json __pycache__/ *.py[cod] .pytest_cache/ + +# Untracked scratch mirror (breaks tsc if left unignored) +prtriage/ From 5711ad99a6fbf2f0b1d6fa6c8ca519401d655f3b Mon Sep 17 00:00:00 2001 From: bragaz Date: Sat, 5 Sep 2026 13:37:06 +0200 Subject: [PATCH 2/3] chore(assets): replace the Igra raster wordmark with a vector mark The network icon embedded a 200x200 PNG of the gold wordmark inside a 17.8 KB SVG. It is now the arrow mark as vector paths in the same 65x64 black disc, 1.3 KB. Used only by lib/layer2.ts; the Names cards use the separate igra-lockup.png and are unaffected. --- assets/images/network-logos/igra.svg | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/assets/images/network-logos/igra.svg b/assets/images/network-logos/igra.svg index b77bbc6f..d68df956 100644 --- a/assets/images/network-logos/igra.svg +++ b/assets/images/network-logos/igra.svg @@ -1,10 +1,8 @@ - - - - - - - - - + + + + + + + From c445b6b945de183de1d1cf4cd5a985fd126a21a1 Mon Sep 17 00:00:00 2001 From: bragaz Date: Sat, 5 Sep 2026 13:37:06 +0200 Subject: [PATCH 3/3] fix(send): name the accepted recipient forms in the L1 send validation error Both send forms resolve only .kas names (KNS). "Invalid address or KNS domain" now reads "Invalid Kaspa address or .kas domain". --- components/send/kas-send/DetailsStep.tsx | 2 +- components/send/krc20-send/DetailsStep.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/send/kas-send/DetailsStep.tsx b/components/send/kas-send/DetailsStep.tsx index d9c0ccc2..10a4ade2 100644 --- a/components/send/kas-send/DetailsStep.tsx +++ b/components/send/kas-send/DetailsStep.tsx @@ -97,7 +97,7 @@ export function DetailsStep({ }; const addressValidator = async (value: string | undefined) => { - const genericErrorMessage = "Invalid address or KNS domain"; + const genericErrorMessage = "Invalid Kaspa address or .kas domain"; if (!value) return undefined; const domainInfo = value.endsWith(".kas") diff --git a/components/send/krc20-send/DetailsStep.tsx b/components/send/krc20-send/DetailsStep.tsx index ef9b10b1..619bd458 100644 --- a/components/send/krc20-send/DetailsStep.tsx +++ b/components/send/krc20-send/DetailsStep.tsx @@ -120,7 +120,7 @@ export const DetailsStep = () => { }; const addressValidator = async (value: string | undefined) => { - const genericErrorMessage = "Invalid address or KNS domain"; + const genericErrorMessage = "Invalid Kaspa address or .kas domain"; if (!value) return undefined; if (value === account?.address) {