Skip to content

Commit d13f472

Browse files
Merge pull request #6580 from BitGo/rel/latest
Rel/latest
2 parents d85dd65 + efcc509 commit d13f472

File tree

181 files changed

+1570
-658
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

181 files changed

+1570
-658
lines changed

Dockerfile

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,11 @@ COPY --from=builder /tmp/bitgo/modules/utxo-lib /var/modules/utxo-lib/
5151
COPY --from=builder /tmp/bitgo/modules/blake2b /var/modules/blake2b/
5252
COPY --from=builder /tmp/bitgo/modules/blake2b-wasm /var/modules/blake2b-wasm/
5353
COPY --from=builder /tmp/bitgo/modules/bitgo /var/modules/bitgo/
54-
COPY --from=builder /tmp/bitgo/modules/abstract-utxo /var/modules/abstract-utxo/
55-
COPY --from=builder /tmp/bitgo/modules/blockapis /var/modules/blockapis/
54+
COPY --from=builder /tmp/bitgo/modules/abstract-cosmos /var/modules/abstract-cosmos/
5655
COPY --from=builder /tmp/bitgo/modules/sdk-api /var/modules/sdk-api/
5756
COPY --from=builder /tmp/bitgo/modules/sdk-hmac /var/modules/sdk-hmac/
57+
COPY --from=builder /tmp/bitgo/modules/abstract-utxo /var/modules/abstract-utxo/
58+
COPY --from=builder /tmp/bitgo/modules/blockapis /var/modules/blockapis/
5859
COPY --from=builder /tmp/bitgo/modules/account-lib /var/modules/account-lib/
5960
COPY --from=builder /tmp/bitgo/modules/sdk-coin-ada /var/modules/sdk-coin-ada/
6061
COPY --from=builder /tmp/bitgo/modules/sdk-coin-algo /var/modules/sdk-coin-algo/
@@ -63,7 +64,6 @@ COPY --from=builder /tmp/bitgo/modules/abstract-eth /var/modules/abstract-eth/
6364
COPY --from=builder /tmp/bitgo/modules/sdk-coin-apt /var/modules/sdk-coin-apt/
6465
COPY --from=builder /tmp/bitgo/modules/sdk-coin-arbeth /var/modules/sdk-coin-arbeth/
6566
COPY --from=builder /tmp/bitgo/modules/sdk-coin-asi /var/modules/sdk-coin-asi/
66-
COPY --from=builder /tmp/bitgo/modules/abstract-cosmos /var/modules/abstract-cosmos/
6767
COPY --from=builder /tmp/bitgo/modules/sdk-coin-atom /var/modules/sdk-coin-atom/
6868
COPY --from=builder /tmp/bitgo/modules/sdk-coin-avaxc /var/modules/sdk-coin-avaxc/
6969
COPY --from=builder /tmp/bitgo/modules/sdk-coin-avaxp /var/modules/sdk-coin-avaxp/
@@ -75,6 +75,7 @@ COPY --from=builder /tmp/bitgo/modules/sdk-coin-bsc /var/modules/sdk-coin-bsc/
7575
COPY --from=builder /tmp/bitgo/modules/sdk-coin-celo /var/modules/sdk-coin-celo/
7676
COPY --from=builder /tmp/bitgo/modules/sdk-coin-coredao /var/modules/sdk-coin-coredao/
7777
COPY --from=builder /tmp/bitgo/modules/sdk-coin-coreum /var/modules/sdk-coin-coreum/
78+
COPY --from=builder /tmp/bitgo/modules/sdk-coin-cosmos /var/modules/sdk-coin-cosmos/
7879
COPY --from=builder /tmp/bitgo/modules/sdk-coin-cronos /var/modules/sdk-coin-cronos/
7980
COPY --from=builder /tmp/bitgo/modules/sdk-coin-cspr /var/modules/sdk-coin-cspr/
8081
COPY --from=builder /tmp/bitgo/modules/sdk-coin-dot /var/modules/sdk-coin-dot/
@@ -146,10 +147,11 @@ cd /var/modules/utxo-lib && yarn link && \
146147
cd /var/modules/blake2b && yarn link && \
147148
cd /var/modules/blake2b-wasm && yarn link && \
148149
cd /var/modules/bitgo && yarn link && \
149-
cd /var/modules/abstract-utxo && yarn link && \
150-
cd /var/modules/blockapis && yarn link && \
150+
cd /var/modules/abstract-cosmos && yarn link && \
151151
cd /var/modules/sdk-api && yarn link && \
152152
cd /var/modules/sdk-hmac && yarn link && \
153+
cd /var/modules/abstract-utxo && yarn link && \
154+
cd /var/modules/blockapis && yarn link && \
153155
cd /var/modules/account-lib && yarn link && \
154156
cd /var/modules/sdk-coin-ada && yarn link && \
155157
cd /var/modules/sdk-coin-algo && yarn link && \
@@ -158,7 +160,6 @@ cd /var/modules/abstract-eth && yarn link && \
158160
cd /var/modules/sdk-coin-apt && yarn link && \
159161
cd /var/modules/sdk-coin-arbeth && yarn link && \
160162
cd /var/modules/sdk-coin-asi && yarn link && \
161-
cd /var/modules/abstract-cosmos && yarn link && \
162163
cd /var/modules/sdk-coin-atom && yarn link && \
163164
cd /var/modules/sdk-coin-avaxc && yarn link && \
164165
cd /var/modules/sdk-coin-avaxp && yarn link && \
@@ -170,6 +171,7 @@ cd /var/modules/sdk-coin-bsc && yarn link && \
170171
cd /var/modules/sdk-coin-celo && yarn link && \
171172
cd /var/modules/sdk-coin-coredao && yarn link && \
172173
cd /var/modules/sdk-coin-coreum && yarn link && \
174+
cd /var/modules/sdk-coin-cosmos && yarn link && \
173175
cd /var/modules/sdk-coin-cronos && yarn link && \
174176
cd /var/modules/sdk-coin-cspr && yarn link && \
175177
cd /var/modules/sdk-coin-dot && yarn link && \
@@ -244,10 +246,11 @@ RUN cd /var/bitgo-express && \
244246
yarn link @bitgo/blake2b && \
245247
yarn link @bitgo/blake2b-wasm && \
246248
yarn link bitgo && \
247-
yarn link @bitgo/abstract-utxo && \
248-
yarn link @bitgo/blockapis && \
249+
yarn link @bitgo/abstract-cosmos && \
249250
yarn link @bitgo/sdk-api && \
250251
yarn link @bitgo/sdk-hmac && \
252+
yarn link @bitgo/abstract-utxo && \
253+
yarn link @bitgo/blockapis && \
251254
yarn link @bitgo/account-lib && \
252255
yarn link @bitgo/sdk-coin-ada && \
253256
yarn link @bitgo/sdk-coin-algo && \
@@ -256,7 +259,6 @@ RUN cd /var/bitgo-express && \
256259
yarn link @bitgo/sdk-coin-apt && \
257260
yarn link @bitgo/sdk-coin-arbeth && \
258261
yarn link @bitgo/sdk-coin-asi && \
259-
yarn link @bitgo/abstract-cosmos && \
260262
yarn link @bitgo/sdk-coin-atom && \
261263
yarn link @bitgo/sdk-coin-avaxc && \
262264
yarn link @bitgo/sdk-coin-avaxp && \
@@ -268,6 +270,7 @@ RUN cd /var/bitgo-express && \
268270
yarn link @bitgo/sdk-coin-celo && \
269271
yarn link @bitgo/sdk-coin-coredao && \
270272
yarn link @bitgo/sdk-coin-coreum && \
273+
yarn link @bitgo/sdk-coin-cosmos && \
271274
yarn link @bitgo/sdk-coin-cronos && \
272275
yarn link @bitgo/sdk-coin-cspr && \
273276
yarn link @bitgo/sdk-coin-dot && \
@@ -328,9 +331,9 @@ RUN cd /var/bitgo-express && \
328331
#LINK_END
329332

330333
#LABEL_START
331-
LABEL created="Fri, 25 Jul 2025 02:02:00 GMT"
332-
LABEL version=14.1.4
333-
LABEL git_hash=7578ac177e3fe562d62fc74b7f6a04176f447839
334+
LABEL created="Thu, 31 Jul 2025 00:41:32 GMT"
335+
LABEL version=14.1.6
336+
LABEL git_hash=c0b429b275907610130a63dd0783406b382e61e1
334337
#LABEL_END
335338

336339
USER node

modules/abstract-cosmos/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [11.11.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-31)
7+
8+
**Note:** Version bump only for package @bitgo/abstract-cosmos
9+
10+
# [11.11.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-30)
11+
12+
### Bug Fixes
13+
14+
- **abstract-cosmos:** move sdk-test to dev deps ([811286d](https://github.com/BitGo/BitGoJS/commit/811286db5e8394a5438e0fc3d5709f393d9cb64a))
15+
- **abstract-cosmos:** resolve dependency issues ([63c83eb](https://github.com/BitGo/BitGoJS/commit/63c83ebfe9b07bfa5ba3bd7ea1633a791da3bd8d))
16+
17+
### Features
18+
19+
- add cosmos token to coinFactory ([5245c50](https://github.com/BitGo/BitGoJS/commit/5245c50c637a8906c8f9be0d91e3aaae2d267e3b))
20+
- onboard YLDS token on testnet and mainnet ([8d762a4](https://github.com/BitGo/BitGoJS/commit/8d762a413e03a94e5bdaf27e7fc8e7b23beab594))
21+
- **root:** align package versions for cosmos ([865b287](https://github.com/BitGo/BitGoJS/commit/865b287431ae743c99faaa50318857dff54dfa8b))
22+
623
# [11.10.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-25)
724

825
### Features

modules/abstract-cosmos/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bitgo/abstract-cosmos",
3-
"version": "11.10.0",
3+
"version": "11.11.1",
44
"description": "BitGo SDK coin library for COSMOS base implementation",
55
"main": "./dist/src/index.js",
66
"types": "./dist/src/index.d.ts",
@@ -38,11 +38,11 @@
3838
]
3939
},
4040
"dependencies": {
41-
"@bitgo/sdk-core": "^35.9.0",
42-
"@bitgo/sdk-api": "^1.65.2",
41+
"@bitgo/sdk-api": "^1.65.4",
42+
"@bitgo/sdk-core": "^36.0.0",
4343
"@bitgo/sdk-lib-mpc": "^10.6.0",
4444
"@bitgo/secp256k1": "^1.4.0",
45-
"@bitgo/statics": "^55.3.0",
45+
"@bitgo/statics": "^57.0.0",
4646
"@cosmjs/amino": "^0.29.5",
4747
"@cosmjs/crypto": "^0.30.1",
4848
"@cosmjs/encoding": "^0.29.5",
@@ -55,7 +55,7 @@
5555
"superagent": "^9.0.1"
5656
},
5757
"devDependencies": {
58-
"@bitgo/sdk-test": "^8.0.98",
58+
"@bitgo/sdk-test": "^9.0.0",
5959
"@types/lodash": "^4.14.183"
6060
},
6161
"gitHead": "18e460ddf02de2dbf13c2aa243478188fb539f0c"

modules/abstract-eth/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,20 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [24.9.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-31)
7+
8+
**Note:** Version bump only for package @bitgo/abstract-eth
9+
10+
# [24.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-30)
11+
12+
### Bug Fixes
13+
14+
- updating recovery tx building for EIP-155 txs ([acd7712](https://github.com/BitGo/BitGoJS/commit/acd77123ba48f06a96ff4d3214343ac62e809006))
15+
16+
### Features
17+
18+
- **root:** enable passing apiKey for recovery on eth likes ([dc8d3c2](https://github.com/BitGo/BitGoJS/commit/dc8d3c201b5ab82b05e1db69f310a0860e21bf78))
19+
620
## [24.8.2](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-25)
721

822
**Note:** Version bump only for package @bitgo/abstract-eth

modules/abstract-eth/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bitgo/abstract-eth",
3-
"version": "24.8.2",
3+
"version": "24.9.1",
44
"description": "BitGo SDK coin library for ETH base implementation",
55
"main": "./dist/src/index.js",
66
"types": "./dist/src/index.d.ts",
@@ -40,13 +40,13 @@
4040
]
4141
},
4242
"dependencies": {
43-
"@bitgo/sdk-core": "^35.9.0",
43+
"@bitgo/sdk-core": "^36.0.0",
4444
"@bitgo/sdk-lib-mpc": "^10.6.0",
4545
"@bitgo/secp256k1": "^1.4.0",
46-
"@bitgo/statics": "^55.3.0",
46+
"@bitgo/statics": "^57.0.0",
4747
"@ethereumjs/common": "^2.6.5",
48-
"@ethereumjs/tx": "^3.3.0",
4948
"@ethereumjs/rlp": "^4.0.0",
49+
"@ethereumjs/tx": "^3.3.0",
5050
"@metamask/eth-sig-util": "^5.0.2",
5151
"bignumber.js": "^9.1.1",
5252
"bn.js": "^5.2.1",
@@ -60,8 +60,8 @@
6060
"superagent": "^9.0.1"
6161
},
6262
"devDependencies": {
63-
"@bitgo/sdk-api": "^1.65.2",
64-
"@bitgo/sdk-test": "^8.0.98",
63+
"@bitgo/sdk-api": "^1.65.4",
64+
"@bitgo/sdk-test": "^9.0.0",
6565
"@types/keccak": "^3.0.5"
6666
},
6767
"gitHead": "18e460ddf02de2dbf13c2aa243478188fb539f0c"

modules/abstract-lightning/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [6.2.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-31)
7+
8+
**Note:** Version bump only for package @bitgo/abstract-lightning
9+
10+
## [6.2.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-30)
11+
12+
**Note:** Version bump only for package @bitgo/abstract-lightning
13+
614
## [6.2.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-25)
715

816
**Note:** Version bump only for package @bitgo/abstract-lightning

modules/abstract-lightning/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bitgo/abstract-lightning",
3-
"version": "6.2.4",
3+
"version": "6.2.6",
44
"description": "BitGo SDK coin library for base Lightning Network coin implementation",
55
"main": "./dist/src/index.js",
66
"types": "./dist/src/index.d.ts",
@@ -40,8 +40,8 @@
4040
},
4141
"dependencies": {
4242
"@bitgo/public-types": "5.1.0",
43-
"@bitgo/sdk-core": "^35.9.0",
44-
"@bitgo/statics": "^55.3.0",
43+
"@bitgo/sdk-core": "^36.0.0",
44+
"@bitgo/statics": "^57.0.0",
4545
"@bitgo/utxo-lib": "^11.6.3",
4646
"bs58check": "^2.1.2",
4747
"fp-ts": "^2.12.2",

modules/abstract-substrate/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [1.8.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-31)
7+
8+
**Note:** Version bump only for package @bitgo/abstract-substrate
9+
10+
## [1.8.8](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-30)
11+
12+
**Note:** Version bump only for package @bitgo/abstract-substrate
13+
614
## [1.8.7](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-25)
715

816
**Note:** Version bump only for package @bitgo/abstract-substrate

modules/abstract-substrate/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bitgo/abstract-substrate",
3-
"version": "1.8.7",
3+
"version": "1.8.9",
44
"description": "BitGo SDK coin library for Substrate base implementation",
55
"main": "./dist/src/index.js",
66
"types": "./dist/src/index.d.ts",
@@ -38,9 +38,9 @@
3838
]
3939
},
4040
"dependencies": {
41-
"@bitgo/sdk-core": "^35.9.0",
41+
"@bitgo/sdk-core": "^36.0.0",
4242
"@bitgo/sdk-lib-mpc": "^10.6.0",
43-
"@bitgo/statics": "^55.3.0",
43+
"@bitgo/statics": "^57.0.0",
4444
"@polkadot/api": "14.1.1",
4545
"@polkadot/keyring": "13.3.1",
4646
"@polkadot/types": "14.1.1",

modules/abstract-utxo/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [9.21.11](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-31)
7+
8+
**Note:** Version bump only for package @bitgo/abstract-utxo
9+
10+
## [9.21.10](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-30)
11+
12+
**Note:** Version bump only for package @bitgo/abstract-utxo
13+
614
## [9.21.9](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-25)
715

816
**Note:** Version bump only for package @bitgo/abstract-utxo

0 commit comments

Comments
 (0)