-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release-candidate-0.81.0'
- Loading branch information
Showing
95 changed files
with
3,423 additions
and
2,862 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 |
---|---|---|
|
@@ -139,13 +139,13 @@ jobs: | |
asset_name: liquality-wallet-${{ steps.get_current_tag.outputs.tag }}.zip | ||
asset_content_type: application/zip | ||
|
||
# Run tests against Prod mainnet | ||
- name: Regression tests against Mainnet (PROD Agent) | ||
uses: beemi/[email protected] | ||
env: | ||
CI: 'true' | ||
DISPLAY: :99 | ||
SEED_WORDS: ${{ secrets.TEST_NET_SEED_WORDS }} | ||
TWENTY_FOUR_SEEDS: ${{ secrets.TWENTY_FOUR_SEEDS }} | ||
with: | ||
args: yarn test:mainnet:prodagent:release | ||
# # Run tests against Prod mainnet | ||
# - name: Regression tests against Mainnet (PROD Agent) | ||
# uses: beemi/[email protected] | ||
# env: | ||
# CI: 'true' | ||
# DISPLAY: :99 | ||
# SEED_WORDS: ${{ secrets.TEST_NET_SEED_WORDS }} | ||
# TWENTY_FOUR_SEEDS: ${{ secrets.TWENTY_FOUR_SEEDS }} | ||
# with: | ||
# args: yarn test:mainnet:prodagent:release |
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,6 +1,6 @@ | ||
{ | ||
"name": "liquality-wallet", | ||
"version": "0.77.0", | ||
"version": "0.81.0", | ||
"private": true, | ||
"author": "Liquality <[email protected]>", | ||
"scripts": { | ||
|
@@ -21,11 +21,12 @@ | |
"test-full-regression": "node_modules/mocha/bin/mocha" | ||
}, | ||
"dependencies": { | ||
"@liquality/cryptoassets": "1.16.2", | ||
"@liquality/cryptoassets": "2.1.0-next.2", | ||
"@liquality/error-parser": "2.0.1-next.2", | ||
"@liquality/ethereum-utils": "^1.13.12", | ||
"@liquality/terra-networks": "^1.13.12", | ||
"@liquality/types": "^1.13.12", | ||
"@liquality/wallet-core": "1.31.3", | ||
"@liquality/wallet-core": "3.0.0", | ||
"@terra-money/terra.js": "^3.1.6", | ||
"@testing-library/vue": "^5.8.2", | ||
"amplitude-js": "8.18.2", | ||
|
@@ -41,7 +42,6 @@ | |
"date-fns": "2.28.0", | ||
"ethers": "5.7.0", | ||
"extension-port-stream": "^2.0.1", | ||
"firebase": "^9.12.1", | ||
"human-standard-token-abi": "^2.0.0", | ||
"i18n-js": "^4.1.1", | ||
"lodash-es": "^4.17.15", | ||
|
@@ -69,18 +69,19 @@ | |
"vuex-persist": "3.1.3" | ||
}, | ||
"devDependencies": { | ||
"@testing-library/jest-dom": "5.16.2", | ||
"@testing-library/jest-dom": "5.16.5", | ||
"@vue/cli-plugin-babel": "4.5.15", | ||
"@vue/cli-plugin-eslint": "~4.5.0", | ||
"@vue/cli-plugin-router": "4.5.15", | ||
"@vue/cli-plugin-unit-jest": "^4.5.8", | ||
"@vue/cli-plugin-vuex": "4.5.15", | ||
"@vue/cli-service": "4.5.15", | ||
"@vue/eslint-config-prettier": "^6.0.0", | ||
"@vue/test-utils": "1.3.0", | ||
"@vue/test-utils": "1.3.3", | ||
"babel-eslint": "^10.1.0", | ||
"caniuse-lite": "^1.0.30001397", | ||
"chai-match": "^1.1.1", | ||
"copy-webpack-plugin": "6", | ||
"eslint": "^6.8.0", | ||
"eslint-plugin-import": "^2.23.4", | ||
"eslint-plugin-node": "^11.1.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<template> | ||
<div class="copy-container"> | ||
<button class="copy-btn" @click="copyError"> | ||
<CopyIcon class="icon" v-if="!errorCopied" /> | ||
<CheckIcon class="icon" v-if="errorCopied" /> | ||
{{ errorCopied ? $t('common.copied') : $t('common.copyError') }} | ||
</button> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import CopyIcon from '@/assets/icons/copy.svg' | ||
import CheckIcon from '@/assets/icons/check-primary.svg' | ||
import { liqualityErrorStringToJson } from '@liquality/error-parser' | ||
export default { | ||
props: ['translatedError', 'liqualityErrorString'], | ||
components: { | ||
CopyIcon, | ||
CheckIcon | ||
}, | ||
computed: { | ||
jsonError() { | ||
return { | ||
error: liqualityErrorStringToJson(this.liqualityErrorString), | ||
friendlyMessage: this.translatedError | ||
} | ||
} | ||
}, | ||
data() { | ||
return { | ||
errorCopied: false | ||
} | ||
}, | ||
methods: { | ||
async copyError() { | ||
await navigator.clipboard.writeText(JSON.stringify(this.jsonError)) | ||
this.errorCopied = true | ||
setTimeout(() => { | ||
this.errorCopied = false | ||
}, 4000) | ||
} | ||
} | ||
} | ||
</script> | ||
|
||
<style lang="scss" scoped> | ||
.copy-container { | ||
text-align: right; | ||
margin-left: auto; | ||
} | ||
.copy-btn { | ||
display: flex; | ||
align-items: center; | ||
color: #9d4dfa; | ||
background: transparent; | ||
border: none; | ||
cursor: pointer; | ||
.icon { | ||
width: 10px; | ||
height: 10px; | ||
font-size: 10px; | ||
line-height: 12px; | ||
margin-right: 5px; | ||
} | ||
} | ||
</style> |
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.