-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* New tx sign * Release 1.13.0 version * Migrate to [email protected] version * Update casper js sdk and casper wallet core versions * Update PEM files parsing logic * Update secretKey validation * Configure proxy headers * Make createAsymmetricKeys sync and returned secretKey nullable * Make signing sync * Update Deploy.toJSON method * Use contractPackageHash for CEP-18 transfers * Fix keys issue and refactor * Update casper-js-sdk and @bringweb3/chrome-extension-kit * Add error handling for incorrect pem file * Update casper-wallet-core and remove @make-software/ces-js-parser * Update safari's bundled files * Fix signDeploy and signMessage naming and tests * Update casper-js-sdk and casper-wallet-core to latest versions
- Loading branch information
Showing
56 changed files
with
1,064 additions
and
1,102 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "Casper Wallet", | ||
"description": "Securely manage your CSPR tokens and interact with dapps with the self-custody wallet for the Casper blockchain.", | ||
"version": "1.12.0", | ||
"version": "1.14.0", | ||
"author": "MAKE LLC", | ||
"scripts": { | ||
"devtools:redux": "redux-devtools --hostname=localhost", | ||
|
@@ -52,7 +52,7 @@ | |
"styled-components": "^5" | ||
}, | ||
"dependencies": { | ||
"@bringweb3/chrome-extension-kit": "^1.2.4", | ||
"@bringweb3/chrome-extension-kit": "^1.2.11", | ||
"@formatjs/intl": "2.10.4", | ||
"@hookform/resolvers": "2.9.10", | ||
"@lapo/asn1js": "1.2.4", | ||
|
@@ -61,19 +61,17 @@ | |
"@ledgerhq/hw-transport-webhid": "^6.28.6", | ||
"@ledgerhq/hw-transport-webusb": "^6.28.6", | ||
"@lottiefiles/react-lottie-player": "3.5.3", | ||
"@make-software/ces-js-parser": "1.3.2", | ||
"@noble/ciphers": "^0.3.0", | ||
"@scure/bip32": "1.3.2", | ||
"@scure/bip39": "1.2.1", | ||
"@tanstack/react-query": "^5.52.3", | ||
"@types/argon2-browser": "1.18.1", | ||
"@types/webextension-polyfill": "0.9.2", | ||
"@zondax/ledger-casper": "^2.6.1", | ||
"@zondax/ledger-casper": "^2.6.3", | ||
"base64-loader": "1.0.0", | ||
"big.js": "^6.2.1", | ||
"casper-cep18-js-client": "1.0.2", | ||
"casper-js-sdk": "2.15.4", | ||
"casper-wallet-core": "git+ssh://[email protected]:make-software/casper-wallet-core.git#v0.9.7", | ||
"casper-js-sdk": "5.0.5-beta2", | ||
"casper-wallet-core": "git+ssh://[email protected]:make-software/casper-wallet-core.git#v1.0.0", | ||
"date-fns": "^2.30.0", | ||
"dotenv-webpack": "^8.1.0", | ||
"i18next": "^23.11.0", | ||
|
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
HASH=$(git rev-parse --short HEAD) | ||
|
||
npm run build:chrome && npm run build:firefox && cd ./build && zip -r casper-wallet-1.12.0#$HASH.zip ./* && npm run build:src | ||
npm run build:chrome && npm run build:firefox && cd ./build && zip -r casper-wallet-1.14.0#$HASH.zip ./* && npm run build:src |
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
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
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
Oops, something went wrong.