-
Notifications
You must be signed in to change notification settings - Fork 58
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
Resolves #1595 Update dusk-wallet-js to 0.5.1 Update @dusk-network/dusk-wallet-js to 0.5.2 Serve the Wallet-js locally Update wallet.js Update package-lock.json Update the sync indicator Sync progress enhancements Update wallet-js Bugfixes web-wallet: Show current block height on Wallet Creation web-wallet: Add option to sync from a custom block height Fixes Update NetworkSyncProgress.svelte Fix race condition Enahcements
- Loading branch information
1 parent
d1da92f
commit 1bb1a6c
Showing
33 changed files
with
11,480 additions
and
178 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
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.