-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
web-wallet: Update Wallet service to use
dusk-wallet-js
0.4.4
Updated tests Fix Dashboard tests Refactor Bugfixes Update CopyField to have a disabled property Refactor Fix tests Fixes Address review comments Move CopyField to lib/components Add Error handling to the NetworkSyncPrgress Add interpolation to the ProgressBar Updates
- Loading branch information
1 parent
8879b48
commit e5e7481
Showing
53 changed files
with
12,347 additions
and
273 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Ignore locally served libs | ||
|
||
/lib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,5 +14,6 @@ | |
"./node_modules/@testing-library/jest-dom/types/vitest.d.ts", | ||
"lamb-types" | ||
] | ||
} | ||
}, | ||
"exclude": ["./lib"] | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { Wallet } from "./wallet.js"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"name": "@dusk-network/dusk-wallet-js", | ||
"version": "0.0.0", | ||
"main": "index.js", | ||
"exports": { | ||
".": "./wallet.js" | ||
}, | ||
"files": [ | ||
"dusk_wallet_core.js", | ||
"wallet.js", | ||
"index.js" | ||
] | ||
} |
Oops, something went wrong.