Skip to content

Commit 95a1497

Browse files
authored
Merge pull request #1461 from xchainjs/update/cosmjs34
update to CosmJs 0.34
2 parents b1c99c8 + 680d294 commit 95a1497

File tree

7 files changed

+241
-192
lines changed

7 files changed

+241
-192
lines changed

.changeset/bright-pandas-float.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
'@xchainjs/xchain-cosmos-sdk': patch
3+
'@xchainjs/xchain-mayachain': patch
4+
'@xchainjs/xchain-thorchain': patch
5+
'@xchainjs/xchain-cosmos': patch
6+
'@xchainjs/xchain-kujira': patch
7+
---
8+
9+
update to CosmJs 0.34.0, migrate off elliptic to noble cryptography

packages/xchain-cosmos-sdk/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@
3737
},
3838
"dependencies": {
3939
"@bitcoin-js/tiny-secp256k1-asmjs": "^2.2.3",
40-
"@cosmjs/crypto": "0.33.1",
41-
"@cosmjs/encoding": "0.33.1",
42-
"@cosmjs/proto-signing": "0.33.1",
43-
"@cosmjs/stargate": "0.33.1",
40+
"@cosmjs/crypto": "0.34.0",
41+
"@cosmjs/encoding": "0.34.0",
42+
"@cosmjs/proto-signing": "0.34.0",
43+
"@cosmjs/stargate": "0.34.0",
4444
"@scure/base": "1.1.5",
4545
"@scure/bip32": "^1.7.0",
4646
"@xchainjs/xchain-client": "workspace:*",

packages/xchain-cosmos/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@
3333
},
3434
"dependencies": {
3535
"@bitcoin-js/tiny-secp256k1-asmjs": "^2.2.3",
36-
"@cosmjs/amino": "0.33.1",
37-
"@cosmjs/encoding": "0.33.1",
38-
"@cosmjs/ledger-amino": "0.33.1",
39-
"@cosmjs/proto-signing": "0.33.1",
40-
"@cosmjs/stargate": "0.33.1",
41-
"@ledgerhq/hw-app-cosmos": "^6.32.0",
36+
"@cosmjs/amino": "0.34.0",
37+
"@cosmjs/encoding": "0.34.0",
38+
"@cosmjs/ledger-amino": "0.34.0",
39+
"@cosmjs/proto-signing": "0.34.0",
40+
"@cosmjs/stargate": "0.34.0",
41+
"@ledgerhq/hw-app-cosmos": "6.32.0",
4242
"@ledgerhq/hw-transport": "^6.31.6",
4343
"@scure/base": "^1.2.6",
4444
"@scure/bip32": "^1.7.0",

packages/xchain-kujira/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@
3333
},
3434
"dependencies": {
3535
"@bitcoin-js/tiny-secp256k1-asmjs": "^2.2.3",
36-
"@cosmjs/amino": "0.33.1",
37-
"@cosmjs/encoding": "0.33.1",
38-
"@cosmjs/proto-signing": "0.33.1",
39-
"@cosmjs/stargate": "0.33.1",
36+
"@cosmjs/amino": "0.34.0",
37+
"@cosmjs/encoding": "0.34.0",
38+
"@cosmjs/proto-signing": "0.34.0",
39+
"@cosmjs/stargate": "0.34.0",
4040
"@scure/base": "^1.2.6",
4141
"@scure/bip32": "^1.7.0",
4242
"@xchainjs/xchain-client": "workspace:*",

packages/xchain-mayachain/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@
3535
},
3636
"dependencies": {
3737
"@bitcoin-js/tiny-secp256k1-asmjs": "^2.2.3",
38-
"@cosmjs/amino": "0.33.1",
39-
"@cosmjs/crypto": "0.33.1",
40-
"@cosmjs/encoding": "0.33.1",
41-
"@cosmjs/proto-signing": "0.33.1",
42-
"@cosmjs/stargate": "0.33.1",
38+
"@cosmjs/amino": "0.34.0",
39+
"@cosmjs/crypto": "0.34.0",
40+
"@cosmjs/encoding": "0.34.0",
41+
"@cosmjs/proto-signing": "0.34.0",
42+
"@cosmjs/stargate": "0.34.0",
4343
"@scure/base": "^1.2.6",
4444
"@scure/bip32": "^1.7.0",
4545
"@xchainjs/xchain-client": "workspace:*",

packages/xchain-thorchain/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@
3535
},
3636
"dependencies": {
3737
"@bitcoin-js/tiny-secp256k1-asmjs": "^2.2.3",
38-
"@cosmjs/amino": "0.33.1",
39-
"@cosmjs/crypto": "0.33.1",
40-
"@cosmjs/encoding": "0.33.1",
41-
"@cosmjs/math": "0.33.1",
42-
"@cosmjs/proto-signing": "0.33.1",
43-
"@cosmjs/stargate": "0.33.1",
38+
"@cosmjs/amino": "0.34.0",
39+
"@cosmjs/crypto": "0.34.0",
40+
"@cosmjs/encoding": "0.34.0",
41+
"@cosmjs/math": "0.34.0",
42+
"@cosmjs/proto-signing": "0.34.0",
43+
"@cosmjs/stargate": "0.34.0",
4444
"@ledgerhq/hw-transport": "^6.31.6",
4545
"@scure/base": "^1.2.6",
4646
"@scure/bip32": "^1.7.0",

0 commit comments

Comments
 (0)