Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# [4.24.0](https://github.com/qubic/wallet/compare/v4.23.1...v4.24.0) (2026-01-20)


### Features

* sort managing contracts by number of units in grouped assets ([51c0142](https://github.com/qubic/wallet/commit/51c0142d4c606e959b289b0df146e502a1134dd5))

## [4.23.1](https://github.com/qubic/wallet/compare/v4.23.0...v4.23.1) (2026-01-19)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qubic-wallet",
"version": "4.23.1",
"version": "4.24.0",
"main": "app.js",
"author": "qubic",
"description": "Qubic - Wallet - Send Qu's around the globe.",
Expand Down
5 changes: 5 additions & 0 deletions src/app/assets/assets.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -561,6 +561,11 @@ export class AssetsComponent implements OnInit, OnDestroy {
}
});

// Sort managing contracts by number of units (highest first)
grouped.forEach(group => {
group.managingContracts.sort((a, b) => b.asset.ownedAmount - a.asset.ownedAmount);
});

this.groupedAssets = Array.from(grouped.values()).sort((a, b) =>
a.assetName.localeCompare(b.assetName, undefined, { sensitivity: 'base' })
);
Expand Down
2 changes: 1 addition & 1 deletion src/environments/environment.prod.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const environment = {
version: '4.23.1',
version: '4.24.0',
production: true,
apiQliUrl: 'https://api.qubic.li',
apiUrl: 'https://rpc.qubic.org',
Expand Down
2 changes: 1 addition & 1 deletion src/environments/environment.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export const environment = {
version: '4.23.1',
version: '4.24.0',
production: false,
apiQliUrl: 'http://localhost:7003',
apiUrl: 'http://localhost:7004',
Expand Down