Skip to content

Commit e6ee80c

Browse files
authored
Merge branch 'anoma:main' into main
2 parents 93a6fd1 + f85fb5e commit e6ee80c

59 files changed

Lines changed: 1018 additions & 735 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.release-please-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"apps/namadillo": "1.24.0",
3-
"apps/extension": "0.5.0",
2+
"apps/namadillo": "1.25.0",
3+
"apps/extension": "0.8.0",
44
"packages/sdk": "0.19.0",
55
"packages/types": "0.6.0"
66
}

apps/extension/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [0.8.0](https://github.com/anoma/namada-interface/compare/extension@v0.7.0...extension@v0.8.0) (2025-06-10)
4+
5+
6+
### Features
7+
8+
* Keychain - Increase session timeout from 5 to 30 minutes ([#2122](https://github.com/anoma/namada-interface/issues/2122)) ([243c013](https://github.com/anoma/namada-interface/commit/243c013356059cc7723b39ff2d60265b57b35cd1))
9+
10+
## [0.7.0](https://github.com/anoma/namada-interface/compare/extension@v0.6.0...extension@v0.7.0) (2025-06-07)
11+
12+
13+
### Features
14+
15+
* Mark Ledger accounts missing shielded account as outdated ([#2099](https://github.com/anoma/namada-interface/issues/2099)) ([ddb2f5c](https://github.com/anoma/namada-interface/commit/ddb2f5cb568a20a8dc94110ec81adf59d39e2f78))
16+
317
## [0.6.0](https://github.com/anoma/namada-interface/compare/extension@v0.5.0...extension@v0.6.0) (2025-04-18)
418

519

apps/extension/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@namada/extension",
3-
"version": "0.6.0",
3+
"version": "0.8.0",
44
"description": "Namada Keychain",
55
"repository": "https://github.com/anoma/namada-interface/",
66
"author": "Heliax Dev <info@heliax.dev>",

apps/extension/src/App/Accounts/ParentAccounts.tsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,20 @@ export const ParentAccounts = (): JSX.Element => {
5353
}
5454
});
5555

56+
// We check whether a Ledger parent has an associated shielded account
57+
allAccounts
58+
.filter(
59+
(account) => !account.parentId && account.type === AccountType.Ledger
60+
)
61+
.forEach(({ id }) => {
62+
const shieldedAccount = allAccounts.find(
63+
({ parentId }) => parentId === id
64+
);
65+
if (!shieldedAccount) {
66+
allParentAccounts[id]["outdated"] = true;
67+
}
68+
});
69+
5670
const accounts = Object.values(allParentAccounts);
5771

5872
useEffect(() => {

apps/extension/src/App/Accounts/UpdateRequired.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ export const UpdateRequired = (): JSX.Element => {
7171
</li>
7272
<li>Delete the marked account from 
the keychain</li>
7373
<li>
74-
Re-Import the account using your seed phrase / private key
74+
Re-Import the account using your seed phrase / private key /
75+
Ledger HW wallet
7576
</li>
7677
</ol>
7778
</Stack>

apps/extension/src/background/vault/service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ export class VaultService {
7878
if (!timestamp) {
7979
return true;
8080
}
81-
const timeout = 1_000 * 60 * 5; // 5 minutes
81+
const timeout = 1_000 * 60 * 30; // 30 minutes
8282
if (Date.now() - Number(timestamp) > timeout) {
8383
return true;
8484
} else {

apps/faucet/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"react": "^18.3.0",
2525
"react-dom": "^18.3.0",
2626
"react-router-dom": "^6.0.0",
27-
"styled-components": "^5.3.5"
27+
"styled-components": "^6.1.18"
2828
},
2929
"devDependencies": {
3030
"@babel/plugin-transform-modules-commonjs": "^7.20.11",
@@ -33,7 +33,7 @@
3333
"@types/node-forge": "^1.3.6",
3434
"@types/react": "^18.3.5",
3535
"@types/react-dom": "^18.3.0",
36-
"@types/styled-components": "^5.1.26",
36+
"@types/styled-components": "^5.1.34",
3737
"copy-webpack-plugin": "^12.0.2",
3838
"crypto-browserify": "^3.12.0",
3939
"css-loader": "^7.1.2",

apps/namadillo/CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,41 @@
11
# Changelog
22

3+
## [1.26.0](https://github.com/anoma/namada-interface/compare/namadillo@v1.25.0...namadillo@v1.26.0) (2025-06-13)
4+
5+
6+
### Features
7+
8+
* Add MASP calculator popup component on Claims card ([#2072](https://github.com/anoma/namada-interface/issues/2072)) ([197c6d9](https://github.com/anoma/namada-interface/commit/197c6d91f7c7aef40639a957c9736f33eef1733a))
9+
10+
11+
### Bug Fixes
12+
13+
* Automagically select first available asset when selecting a chain ([#2115](https://github.com/anoma/namada-interface/issues/2115)) ([b557ac7](https://github.com/anoma/namada-interface/commit/b557ac7edf063ac72b414189d09b415970ae2797))
14+
* Connect wallet larger click surface ([#2114](https://github.com/anoma/namada-interface/issues/2114)) ([cdb2a05](https://github.com/anoma/namada-interface/commit/cdb2a05f5ff408cd72a11753b0dad01a392a41aa))
15+
* Extend tables on Manage Tab ([#2121](https://github.com/anoma/namada-interface/issues/2121)) ([8231095](https://github.com/anoma/namada-interface/commit/823109576582334cb71ea9d7b76be6d659d33372))
16+
* Filtering out non-native assets for auto-select on Transfer ([#2125](https://github.com/anoma/namada-interface/issues/2125)) ([44577ef](https://github.com/anoma/namada-interface/commit/44577ef8f393f3bbe326fab3a75cdc2d0d04340a))
17+
* Fix super long tooltip ([#2078](https://github.com/anoma/namada-interface/issues/2078)) ([87c3155](https://github.com/anoma/namada-interface/commit/87c31557b2f062f71ab2742da42549e4fd62bd70))
18+
* Remove sidebar shield sync indicator ([#2116](https://github.com/anoma/namada-interface/issues/2116)) ([5b54d7d](https://github.com/anoma/namada-interface/commit/5b54d7d8480e5e5d5970f67b8bde5d05ba683c65))
19+
* Update total balance banner sync dot and transfer source masp sync info ([#2117](https://github.com/anoma/namada-interface/issues/2117)) ([e3273a2](https://github.com/anoma/namada-interface/commit/e3273a220720a3dccc33f7ac19b15b139131d95f))
20+
* Update txn amounts for shielding/unshielding transfers ([#2137](https://github.com/anoma/namada-interface/issues/2137)) ([3706a68](https://github.com/anoma/namada-interface/commit/3706a68650c26eb17fb9b8dfc2ceaf0ac441e39f))
21+
* Use tx wrapper hashes in history and notification toasts for ledger ([#2129](https://github.com/anoma/namada-interface/issues/2129)) ([7c67883](https://github.com/anoma/namada-interface/commit/7c67883caced436c690c3e6439c2123368efcb84))
22+
23+
## [1.25.0](https://github.com/anoma/namada-interface/compare/namadillo@v1.24.0...namadillo@v1.25.0) (2025-06-07)
24+
25+
26+
### Features
27+
28+
* Adding masp sync loading to TransferModule ([#2089](https://github.com/anoma/namada-interface/issues/2089)) ([099145c](https://github.com/anoma/namada-interface/commit/099145ce22d971d3009b58247c33767910603e36))
29+
* Creating new unclaimed rewards box ([#2110](https://github.com/anoma/namada-interface/issues/2110)) ([b9970ff](https://github.com/anoma/namada-interface/commit/b9970ff9f07e8de37b66560434b2303371670078))
30+
* Enable transfers between shielded and transparent addresses in the ([#2109](https://github.com/anoma/namada-interface/issues/2109)) ([dc466f7](https://github.com/anoma/namada-interface/commit/dc466f75f491916793270c0c1832b3589e8c27ce))
31+
* Review spacement around transfer modules ([#2111](https://github.com/anoma/namada-interface/issues/2111)) ([79ad4e8](https://github.com/anoma/namada-interface/commit/79ad4e8a69c1d71fe7fb7e48b3b5011266ee8d8c))
32+
33+
34+
### Bug Fixes
35+
36+
* Images on AssetsModalCard not appearing on Firefox ([#2100](https://github.com/anoma/namada-interface/issues/2100)) ([fd4b75f](https://github.com/anoma/namada-interface/commit/fd4b75f0d403701b689f72c7153f584bcf87a9ac))
37+
* Update history browser alert ([#2090](https://github.com/anoma/namada-interface/issues/2090)) ([1b3f4b9](https://github.com/anoma/namada-interface/commit/1b3f4b9cc12034ffdc20de9908d3bc1367fcb019))
38+
339
## [1.24.0](https://github.com/anoma/namada-interface/compare/namadillo@v1.23.0...namadillo@v1.24.0) (2025-06-06)
440

541

apps/namadillo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@namada/namadillo",
3-
"version": "1.24.0",
3+
"version": "1.26.0",
44
"description": "Namadillo",
55
"repository": "https://github.com/anoma/namada-interface/",
66
"author": "Heliax Dev <info@heliax.dev>",

apps/namadillo/src/App/AccountOverview/AssetsOverviewPanel.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ export const AssetsOverviewPanel = (): JSX.Element => {
2020
onChangeActiveTab={setCurrentTab}
2121
containerClassname="flex-1"
2222
className={clsx(
23-
"mt-2 transition-colors border-solid border border-transparent",
23+
"mt-2 transition-colors border-solid border border-transparent border-b-neutral-950",
2424
"duration-0",
25-
"[&[aria-selected='true']]:z-20 [&[aria-selected='true']]:!border-b-neutral-950",
25+
shieldedPanelSelected && "[&[aria-selected='false']]:border-b-yellow",
2626
shieldedPanelSelected &&
27-
"[&[aria-selected='true']]:text-yellow [&[aria-selected='true']]:border-yellow"
27+
"[&[aria-selected='true']]:text-yellow [&[aria-selected='true']]:border-x-yellow [&[aria-selected='true']]:border-t-yellow"
2828
)}
2929
tabs={[
3030
{

0 commit comments

Comments
 (0)