-
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.
Merge branch 'develop' into 639-improve-unlock-wallet-user-experience
# Conflicts: # package.json
- Loading branch information
Showing
283 changed files
with
24,413 additions
and
17,081 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
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 |
---|---|---|
|
@@ -30,3 +30,7 @@ secrets.*.js | |
|
||
# packed extension | ||
chrome.crx | ||
/test-results/ | ||
/playwright-report/ | ||
/blob-report/ | ||
/playwright/.cache/ |
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 +1 @@ | ||
v16 | ||
v16.20.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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
6 changes: 3 additions & 3 deletions
6
e2e/account_secret_key.pem → e2e-tests/account_secret_key.pem
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 @@ | ||
-----BEGIN PRIVATE KEY----- | ||
MC4CAQAwBQYDK2VwBCIEIHRZr1HEgKVbgchuatwA7dCWDWB7QZe+bpDb5dguIyLE | ||
-----END PRIVATE KEY----- | ||
-----BEGIN PRIVATE KEY----- | ||
MC4CAQAwBQYDK2VwBCIEIHRZr1HEgKVbgchuatwA7dCWDWB7QZe+bpDb5dguIyLE | ||
-----END PRIVATE KEY----- |
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,47 @@ | ||
import path from 'path'; | ||
|
||
export const vaultPassword = '3hQqzYn4C7Y8rEZTVEZb'; | ||
export const recoverSecretPhrase = | ||
'hold matrix spider subway bottom jazz charge fire lawn valley stay coil moral hospital dream cycle multiply december agree huge major tower devote old'; | ||
export const secretKeyPath = path.join(__dirname, './account_secret_key.pem'); | ||
|
||
export const ACCOUNT_NAMES = { | ||
defaultFirstAccountName: 'Account 1', | ||
defaultSecondAccountName: 'Account 2', | ||
createdAccountName: 'New account 1', | ||
importedAccountName: 'Imported account', | ||
renamedAccountName: 'Renamed account' | ||
}; | ||
|
||
export const PLAYGROUND_URL = 'https://casper-wallet-playground.make.services/'; | ||
|
||
export const IMPORTED_ACCOUNT = { | ||
accountName: ACCOUNT_NAMES.importedAccountName, | ||
publicKey: | ||
'0184f6d260f4ee6869ddb36affe15456de6ae045278fa2f467bb677561ce0dad55', | ||
truncatedPublicKey: '0184f...dad55' | ||
}; | ||
|
||
export const DEFAULT_FIRST_ACCOUNT = { | ||
accountName: ACCOUNT_NAMES.defaultFirstAccountName, | ||
publicKey: | ||
'0202b1943511b8c23b1b2b8ed7ddcedffcc7be70d9366a5005c7beab08a81b7ae633', | ||
truncatedPublicKey: '0202b...ae633' | ||
}; | ||
|
||
export const DEFAULT_SECOND_ACCOUNT = { | ||
accountName: ACCOUNT_NAMES.defaultSecondAccountName, | ||
publicKey: | ||
'0203b2e05f074452f5e69ba512310deceaca152ebd3394eadcec26c6e68e91aa7724', | ||
truncatedPublicKey: '0203b...a7724' | ||
}; | ||
|
||
export const VALIDATOR = { | ||
name: 'Validator', | ||
truncatedPublicKey: '0106c...ca2ca' | ||
}; | ||
|
||
export const NEW_VALIDATOR = { | ||
name: 'New validator', | ||
truncatedPublicKey: '017d9...2009e' | ||
}; |
Oops, something went wrong.