Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
2033ba8
feat: add new Web Crypto implementation util
andiradulescu Feb 5, 2026
5a2f801
feat: add new v2 vault storage
andiradulescu Feb 5, 2026
5014715
feat: add storage migration util
andiradulescu Feb 5, 2026
c0a7422
feat: update storage/index.js with v2 operations
andiradulescu Feb 5, 2026
f1d9314
feat: simplify v2 storage by removing cached address
andiradulescu Feb 5, 2026
abe2caa
feat: interim UI changes to support v2 storage
andiradulescu Feb 5, 2026
77dbb71
feat: update storage utils with default first wallet name and separat…
andiradulescu Feb 5, 2026
8564c39
feat: update store with multi wallet storage
andiradulescu Feb 5, 2026
224175e
feat: add multi-wallet dropdown components
andiradulescu Feb 5, 2026
454b4ca
feat: update modals for multi-wallet
andiradulescu Feb 5, 2026
b6be088
feat: update header for multi-wallet
andiradulescu Feb 5, 2026
8a01022
chore: remove wallet unlock expiry
andiradulescu Feb 5, 2026
8598cb6
test: add vitest unit tests for v2 storage
andiradulescu Feb 5, 2026
14f9439
test: add github workflow for tests
andiradulescu Feb 5, 2026
8dc2e57
fix: use storage migration functions in unlock modal
andiradulescu Feb 5, 2026
97167bf
Merge pull request #282 from edge/feature/multi-wallet
andiradulescu Feb 5, 2026
3f6b6ee
chore: bump version to 1.23.0
andiradulescu Feb 5, 2026
a79863f
fix: npm audit
andiradulescu Feb 6, 2026
846e0f2
chore: bump to node:20 in Dockerfile
andiradulescu Feb 6, 2026
5deba97
chore: update test scripts
andiradulescu Feb 6, 2026
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
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Tests

on:
push:
branches:
- develop
- master
pull_request:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 24
cache: npm
- run: npm ci
- run: npm test
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#
# 1. Build the Vue app
#
FROM node:16 AS build
FROM node:20 AS build

COPY *.config.js ./
COPY package*.json ./
Expand Down Expand Up @@ -33,7 +33,7 @@ RUN npm run build
#
# 2. Copy the files over and run it
#
FROM node:16
FROM node:20

WORKDIR /edge/wallet

Expand Down
Loading