Skip to content

Commit 5060eda

Browse files
Merge pull request #6250 from BitGo/rel/latest
chore(root): publish modules
2 parents 165d4f4 + 2e4089c commit 5060eda

File tree

193 files changed

+1339
-723
lines changed

Some content is hidden

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

193 files changed

+1339
-723
lines changed

Dockerfile

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ COPY --from=builder /tmp/bitgo/modules/sdk-coin-apt /var/modules/sdk-coin-apt/
6161
COPY --from=builder /tmp/bitgo/modules/sdk-coin-arbeth /var/modules/sdk-coin-arbeth/
6262
COPY --from=builder /tmp/bitgo/modules/abstract-eth /var/modules/abstract-eth/
6363
COPY --from=builder /tmp/bitgo/modules/sdk-coin-asi /var/modules/sdk-coin-asi/
64-
COPY --from=builder /tmp/bitgo/modules/sdk-coin-atom /var/modules/sdk-coin-atom/
6564
COPY --from=builder /tmp/bitgo/modules/abstract-cosmos /var/modules/abstract-cosmos/
65+
COPY --from=builder /tmp/bitgo/modules/sdk-coin-atom /var/modules/sdk-coin-atom/
6666
COPY --from=builder /tmp/bitgo/modules/sdk-coin-avaxc /var/modules/sdk-coin-avaxc/
6767
COPY --from=builder /tmp/bitgo/modules/sdk-coin-avaxp /var/modules/sdk-coin-avaxp/
6868
COPY --from=builder /tmp/bitgo/modules/sdk-coin-eth /var/modules/sdk-coin-eth/
@@ -154,8 +154,9 @@ cd /var/modules/sdk-coin-algo && yarn link && \
154154
cd /var/modules/sdk-coin-apt && yarn link && \
155155
cd /var/modules/sdk-coin-arbeth && yarn link && \
156156
cd /var/modules/abstract-eth && yarn link && \
157-
cd /var/modules/sdk-coin-atom && yarn link && \
157+
cd /var/modules/sdk-coin-asi && yarn link && \
158158
cd /var/modules/abstract-cosmos && yarn link && \
159+
cd /var/modules/sdk-coin-atom && yarn link && \
159160
cd /var/modules/sdk-coin-avaxc && yarn link && \
160161
cd /var/modules/sdk-coin-avaxp && yarn link && \
161162
cd /var/modules/sdk-coin-eth && yarn link && \
@@ -250,8 +251,9 @@ RUN cd /var/bitgo-express && \
250251
yarn link @bitgo/sdk-coin-apt && \
251252
yarn link @bitgo/sdk-coin-arbeth && \
252253
yarn link @bitgo/abstract-eth && \
253-
yarn link @bitgo/sdk-coin-atom && \
254+
yarn link @bitgo/sdk-coin-asi && \
254255
yarn link @bitgo/abstract-cosmos && \
256+
yarn link @bitgo/sdk-coin-atom && \
255257
yarn link @bitgo/sdk-coin-avaxc && \
256258
yarn link @bitgo/sdk-coin-avaxp && \
257259
yarn link @bitgo/sdk-coin-eth && \
@@ -323,9 +325,9 @@ RUN cd /var/bitgo-express && \
323325
#LINK_END
324326

325327
#LABEL_START
326-
LABEL created="Mon, 02 Jun 2025 19:21:46 GMT"
327-
LABEL version=13.6.3
328-
LABEL git_hash=fdb949ab6a04b12b51782856c8b61825da6f35f8
328+
LABEL created="Thu, 05 Jun 2025 23:15:42 GMT"
329+
LABEL version=14.0.0
330+
LABEL git_hash=93f71e0fd983674ba1a41ab7f21ccdb648e35275
329331
#LABEL_END
330332

331333
USER node

modules/abstract-cosmos/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
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.9.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-06-05)
7+
8+
### Features
9+
10+
- **root:** support node 22 ([c4ad6af](https://github.com/BitGo/BitGoJS/commit/c4ad6af2e8896221417c303f0f6b84652b493216))
11+
612
# [11.8.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-06-02)
713

814
### 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.8.0",
3+
"version": "11.9.0",
44
"description": "BitGo SDK coin library for COSMOS base implementation",
55
"main": "./dist/src/index.js",
66
"types": "./dist/src/index.d.ts",
@@ -38,10 +38,10 @@
3838
]
3939
},
4040
"dependencies": {
41-
"@bitgo/sdk-core": "^35.1.0",
42-
"@bitgo/sdk-lib-mpc": "^10.4.0",
43-
"@bitgo/secp256k1": "^1.3.3",
44-
"@bitgo/statics": "^54.1.0",
41+
"@bitgo/sdk-core": "^35.2.0",
42+
"@bitgo/sdk-lib-mpc": "^10.5.0",
43+
"@bitgo/secp256k1": "^1.4.0",
44+
"@bitgo/statics": "^54.2.0",
4545
"@cosmjs/amino": "^0.29.5",
4646
"@cosmjs/crypto": "^0.30.1",
4747
"@cosmjs/encoding": "^0.29.5",

modules/abstract-eth/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
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.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-06-05)
7+
8+
### Features
9+
10+
- **root:** support node 22 ([c4ad6af](https://github.com/BitGo/BitGoJS/commit/c4ad6af2e8896221417c303f0f6b84652b493216))
11+
612
# [24.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-06-02)
713

814
### Features

modules/abstract-eth/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bitgo/abstract-eth",
3-
"version": "24.4.0",
3+
"version": "24.5.0",
44
"description": "BitGo SDK coin library for ETH base implementation",
55
"main": "./dist/src/index.js",
66
"types": "./dist/src/index.d.ts",
@@ -40,10 +40,10 @@
4040
]
4141
},
4242
"dependencies": {
43-
"@bitgo/sdk-core": "^35.1.0",
44-
"@bitgo/sdk-lib-mpc": "^10.4.0",
45-
"@bitgo/secp256k1": "^1.3.3",
46-
"@bitgo/statics": "^54.1.0",
43+
"@bitgo/sdk-core": "^35.2.0",
44+
"@bitgo/sdk-lib-mpc": "^10.5.0",
45+
"@bitgo/secp256k1": "^1.4.0",
46+
"@bitgo/statics": "^54.2.0",
4747
"@ethereumjs/common": "^2.6.5",
4848
"@ethereumjs/tx": "^3.3.0",
4949
"@metamask/eth-sig-util": "^5.0.2",
@@ -59,8 +59,8 @@
5959
"superagent": "^9.0.1"
6060
},
6161
"devDependencies": {
62-
"@bitgo/sdk-api": "^1.63.3",
63-
"@bitgo/sdk-test": "^8.0.88",
62+
"@bitgo/sdk-api": "^1.63.4",
63+
"@bitgo/sdk-test": "^8.0.89",
6464
"@types/keccak": "^3.0.5"
6565
},
6666
"gitHead": "18e460ddf02de2dbf13c2aa243478188fb539f0c"

modules/abstract-lightning/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+
# [6.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-06-05)
7+
8+
### Bug Fixes
9+
10+
- removed InvoiceInfo codec ([9864abf](https://github.com/BitGo/BitGoJS/commit/9864abf35bc721059204377a359583c82556df92))
11+
12+
### Features
13+
14+
- added common withdraw codecs in abstract-lightning ([af6d555](https://github.com/BitGo/BitGoJS/commit/af6d55576fd83359387e42b0997ab3b64c1e8c23))
15+
- **root:** support node 22 ([c4ad6af](https://github.com/BitGo/BitGoJS/commit/c4ad6af2e8896221417c303f0f6b84652b493216))
16+
17+
### BREAKING CHANGES
18+
19+
- create invoice response changed
20+
21+
TICKET: BTC-2155
22+
623
# [5.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-06-02)
724

825
### Features

modules/abstract-lightning/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bitgo/abstract-lightning",
3-
"version": "5.0.0",
3+
"version": "6.0.0",
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,9 +40,9 @@
4040
},
4141
"dependencies": {
4242
"@bitgo/public-types": "5.1.0",
43-
"@bitgo/sdk-core": "^35.1.0",
44-
"@bitgo/statics": "^54.1.0",
45-
"@bitgo/utxo-lib": "^11.3.0",
43+
"@bitgo/sdk-core": "^35.2.0",
44+
"@bitgo/statics": "^54.2.0",
45+
"@bitgo/utxo-lib": "^11.4.0",
4646
"bs58check": "^2.1.2",
4747
"fp-ts": "^2.12.2",
4848
"io-ts": "npm:@bitgo-forks/[email protected]",

modules/abstract-substrate/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
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.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-06-05)
7+
8+
### Features
9+
10+
- **root:** support node 22 ([c4ad6af](https://github.com/BitGo/BitGoJS/commit/c4ad6af2e8896221417c303f0f6b84652b493216))
11+
612
# [1.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-06-02)
713

814
### Bug Fixes

modules/abstract-substrate/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bitgo/abstract-substrate",
3-
"version": "1.6.0",
3+
"version": "1.7.0",
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.1.0",
42-
"@bitgo/sdk-lib-mpc": "^10.4.0",
43-
"@bitgo/statics": "^54.1.0",
41+
"@bitgo/sdk-core": "^35.2.0",
42+
"@bitgo/sdk-lib-mpc": "^10.5.0",
43+
"@bitgo/statics": "^54.2.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: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
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.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-06-05)
7+
8+
### Features
9+
10+
- **root:** support node 22 ([c4ad6af](https://github.com/BitGo/BitGoJS/commit/c4ad6af2e8896221417c303f0f6b84652b493216))
11+
612
# [9.20.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-06-02)
713

814
### Features

0 commit comments

Comments
 (0)