Skip to content

Commit 9cd3774

Browse files
authored
Merge pull request #1413 from crypto-com/dev
Internal Release v1.4.8
2 parents d38978f + 7390583 commit 9cd3774

File tree

4 files changed

+17
-18
lines changed

4 files changed

+17
-18
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
*Unreleased*
66

77
*Released*
8+
## [v1.4.8] - 2024-01-25
9+
### Additions
10+
- Security enhancement & package dependencies bump
11+
### Bug Fixes
12+
- Bridge Transfer failure from Cronos to Cronos POS Chain
813
## [v1.4.7] - 2024-01-16
914
### Additions
1015
- Security enhancement on DApp Browser

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chain-desktop-wallet",
3-
"version": "1.4.7",
3+
"version": "1.4.8",
44
"description": "Crypto.com DeFi Desktop Wallet App",
55
"repository": "github:crypto-com/chain-desktop-wallet",
66
"author": "Crypto.com <contact@crypto.com>",
@@ -187,7 +187,7 @@
187187
"mini-css-extract-plugin": "0.11.3",
188188
"mocha": "8.1.3",
189189
"moxios": "0.4.0",
190-
"nock": "13.1.1",
190+
"nock": "13.5.0",
191191
"optimize-css-assets-webpack-plugin": "5.0.4",
192192
"papaparse": "5.3.1",
193193
"pnp-webpack-plugin": "1.6.4",
@@ -213,7 +213,7 @@
213213
"stylelint-config-recommended-less": "^1.0.4",
214214
"stylelint-config-standard": "^26.0.0",
215215
"terser-webpack-plugin": "4.2.3",
216-
"vite": "2.9.16",
216+
"vite": "2.9.17",
217217
"wait-on": "5.2.1",
218218
"webpack": "4.44.2",
219219
"webpack-dev-server": "3.11.2",

src/service/bridge/BridgeService.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export class BridgeService {
121121
const gasLimit = loadedBridgeConfig.gasLimit || defaultBridgeConfig.gasLimit;
122122

123123
const contract = new web3.eth.Contract(bridgeContractABI, bridgeContractAddress);
124-
const encodedABI = contract.methods.send_cro_to_CRONOS_TENDERMINT(recipientAddress).encodeABI();
124+
const encodedABI = contract.methods.send_cro_to_crypto_org(recipientAddress).encodeABI();
125125

126126
const scaledBaseAmount = getBaseScaledAmount(bridgeTransferRequest.amount, originAsset);
127127

yarn.lock

+8-14
Original file line numberDiff line numberDiff line change
@@ -13002,11 +13002,6 @@ lodash.memoize@^4.1.2:
1300213002
resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz"
1300313003
integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=
1300413004

13005-
lodash.set@^4.3.2:
13006-
version "4.3.2"
13007-
resolved "https://registry.npmjs.org/lodash.set/-/lodash.set-4.3.2.tgz"
13008-
integrity sha1-2HV7HagH3eJIFrDWqEvqGnYjCyM=
13009-
1301013005
lodash.template@^4.5.0:
1301113006
version "4.5.0"
1301213007
resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz"
@@ -13816,14 +13811,13 @@ no-case@^3.0.4:
1381613811
lower-case "^2.0.2"
1381713812
tslib "^2.0.3"
1381813813

13819-
nock@13.1.1:
13820-
version "13.1.1"
13821-
resolved "https://registry.yarnpkg.com/nock/-/nock-13.1.1.tgz#3c830129d4560957f59b6f480a41ddbaf9cf57af"
13822-
integrity sha512-YKTR9MjfK3kS9/l4nuTxyYm30cgOExRHzkLNhL8nhEUyU4f8Za/dRxOqjhVT1vGs0svWo3dDnJTUX1qxYeWy5w==
13814+
nock@13.5.0:
13815+
version "13.5.0"
13816+
resolved "https://registry.yarnpkg.com/nock/-/nock-13.5.0.tgz#82cd33b0dba6095d3f5a28d0ff2edac970fa05ec"
13817+
integrity sha512-9hc1eCS2HtOz+sE9W7JQw/tXJktg0zoPSu48s/pYe73e25JW9ywiowbqnUSd7iZPeVawLcVpPZeZS312fwSY+g==
1382313818
dependencies:
1382413819
debug "^4.1.0"
1382513820
json-stringify-safe "^5.0.1"
13826-
lodash.set "^4.3.2"
1382713821
propagate "^2.0.0"
1382813822

1382913823
node-abi@^2.7.0:
@@ -19407,10 +19401,10 @@ verror@1.10.0, verror@^1.10.0:
1940719401
core-util-is "1.0.2"
1940819402
extsprintf "^1.2.0"
1940919403

19410-
vite@2.9.16:
19411-
version "2.9.16"
19412-
resolved "https://registry.yarnpkg.com/vite/-/vite-2.9.16.tgz#daf7ba50f5cc37a7bf51b118ba06bc36e97898e9"
19413-
integrity sha512-X+6q8KPyeuBvTQV8AVSnKDvXoBMnTx8zxh54sOwmmuOdxkjMmEJXH2UEchA+vTMps1xw9vL64uwJOWryULg7nA==
19404+
vite@2.9.17:
19405+
version "2.9.17"
19406+
resolved "https://registry.yarnpkg.com/vite/-/vite-2.9.17.tgz#6b770525e12fa2a2e3a0fa0d028d304f4f7dc7d4"
19407+
integrity sha512-XxcRzra6d7xrKXH66jZUgb+srThoPu+TLJc06GifUyKq9JmjHkc1Numc8ra0h56rju2jfVWw3B3fs5l3OFMvUw==
1941419408
dependencies:
1941519409
esbuild "^0.14.27"
1941619410
postcss "^8.4.13"

0 commit comments

Comments
 (0)