-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #145 from Concordium/enable-signing-of-binary-mess…
…ages Enable the tests in the wallet-test-bench for signing of binary messages in the mobile wallets
- Loading branch information
Showing
13 changed files
with
622 additions
and
661 deletions.
There are no files selected for viewing
Submodule concordium-dapp-libraries
updated
49 files
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,32 @@ | ||
module.exports = { | ||
root: true, | ||
env: { browser: true, es2020: true }, | ||
extends: [ | ||
// React plugins | ||
"plugin:react/recommended", | ||
"plugin:react/jsx-runtime", | ||
"plugin:react-hooks/recommended", | ||
"plugin:jsx-a11y/recommended", | ||
// Other plugins: | ||
"eslint:recommended", | ||
"plugin:@typescript-eslint/recommended", | ||
"prettier", | ||
], | ||
parser: "@typescript-eslint/parser", | ||
plugins: ["react", "@typescript-eslint"], | ||
parserOptions: { | ||
ecmaVersion: "latest", | ||
ecmaFeatures: { jsx: true }, | ||
sourceType: "module", | ||
project: ["./tsconfig.json", "./tsconfig.node.json"], | ||
tsconfigRootDir: __dirname, | ||
}, | ||
settings: { | ||
react: { | ||
version: "detect", | ||
}, | ||
}, | ||
rules: { | ||
"@typescript-eslint/no-unused-vars": "warn", | ||
}, | ||
}; |
This file was deleted.
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
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 |
---|---|---|
@@ -1,19 +1,19 @@ | ||
{ | ||
"name": "test-bench-for-wallets", | ||
"packageManager": "[email protected]", | ||
"version": "1.5.3", | ||
"version": "1.5.4", | ||
"license": "Apache-2.0", | ||
"type": "module", | ||
"engines": { | ||
"node": ">=16.x" | ||
}, | ||
"dependencies": { | ||
"@concordium/browser-wallet-api-helpers": "^2.4.0", | ||
"@concordium/browser-wallet-api-helpers": "^3.0.0", | ||
"@concordium/react-components": "../../deps/concordium-dapp-libraries/packages/react-components", | ||
"@concordium/wallet-connectors": "../../deps/concordium-dapp-libraries/packages/wallet-connectors", | ||
"@concordium/web-sdk": "^6.0.0", | ||
"@concordium/web-sdk": "^7.0.0", | ||
"@walletconnect/types": "^2.1.4", | ||
"eslint": "^8.37.0", | ||
"json-bigint": "^1.0.0", | ||
"moment": "^2.29.4", | ||
"react": "^18.1.0", | ||
"react-dom": "^18.1.0", | ||
|
@@ -22,9 +22,10 @@ | |
"resolutions": { | ||
"@concordium/wallet-connectors": "../../deps/concordium-dapp-libraries/packages/wallet-connectors", | ||
"@concordium/react-components": "../../deps/concordium-dapp-libraries/packages/react-components", | ||
"@concordium/web-sdk": "^6.0.0" | ||
"@concordium/web-sdk": "^7.0.0" | ||
}, | ||
"devDependencies": { | ||
"@types/json-bigint": "^1.0.4", | ||
"@types/react": "^18.0.9", | ||
"@types/react-dom": "^18.0.5", | ||
"@typescript-eslint/eslint-plugin": "^6.0.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
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.