Skip to content

Commit 52c2484

Browse files
Merge pull request #6444 from BitGo/rel/latest-back-merge
feat: release sdk
2 parents aab1b9a + 38e22b2 commit 52c2484

File tree

191 files changed

+1177
-684
lines changed

Some content is hidden

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

191 files changed

+1177
-684
lines changed

Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ COPY --from=builder /tmp/bitgo/modules/blockapis /var/modules/blockapis/
5656
COPY --from=builder /tmp/bitgo/modules/sdk-api /var/modules/sdk-api/
5757
COPY --from=builder /tmp/bitgo/modules/sdk-hmac /var/modules/sdk-hmac/
5858
COPY --from=builder /tmp/bitgo/modules/account-lib /var/modules/account-lib/
59+
COPY --from=builder /tmp/bitgo/modules/sdk-coin-ada /var/modules/sdk-coin-ada/
5960
COPY --from=builder /tmp/bitgo/modules/sdk-coin-algo /var/modules/sdk-coin-algo/
6061
COPY --from=builder /tmp/bitgo/modules/sdk-coin-apechain /var/modules/sdk-coin-apechain/
6162
COPY --from=builder /tmp/bitgo/modules/abstract-eth /var/modules/abstract-eth/
@@ -116,7 +117,6 @@ COPY --from=builder /tmp/bitgo/modules/sdk-coin-xrp /var/modules/sdk-coin-xrp/
116117
COPY --from=builder /tmp/bitgo/modules/sdk-coin-xtz /var/modules/sdk-coin-xtz/
117118
COPY --from=builder /tmp/bitgo/modules/sdk-coin-zeta /var/modules/sdk-coin-zeta/
118119
COPY --from=builder /tmp/bitgo/modules/sdk-coin-zketh /var/modules/sdk-coin-zketh/
119-
COPY --from=builder /tmp/bitgo/modules/sdk-coin-ada /var/modules/sdk-coin-ada/
120120
COPY --from=builder /tmp/bitgo/modules/sdk-coin-bch /var/modules/sdk-coin-bch/
121121
COPY --from=builder /tmp/bitgo/modules/sdk-coin-bcha /var/modules/sdk-coin-bcha/
122122
COPY --from=builder /tmp/bitgo/modules/sdk-coin-bsv /var/modules/sdk-coin-bsv/
@@ -151,6 +151,7 @@ cd /var/modules/blockapis && yarn link && \
151151
cd /var/modules/sdk-api && yarn link && \
152152
cd /var/modules/sdk-hmac && yarn link && \
153153
cd /var/modules/account-lib && yarn link && \
154+
cd /var/modules/sdk-coin-ada && yarn link && \
154155
cd /var/modules/sdk-coin-algo && yarn link && \
155156
cd /var/modules/sdk-coin-apechain && yarn link && \
156157
cd /var/modules/abstract-eth && yarn link && \
@@ -211,7 +212,6 @@ cd /var/modules/sdk-coin-xrp && yarn link && \
211212
cd /var/modules/sdk-coin-xtz && yarn link && \
212213
cd /var/modules/sdk-coin-zeta && yarn link && \
213214
cd /var/modules/sdk-coin-zketh && yarn link && \
214-
cd /var/modules/sdk-coin-ada && yarn link && \
215215
cd /var/modules/sdk-coin-bch && yarn link && \
216216
cd /var/modules/sdk-coin-bcha && yarn link && \
217217
cd /var/modules/sdk-coin-bsv && yarn link && \
@@ -249,6 +249,7 @@ RUN cd /var/bitgo-express && \
249249
yarn link @bitgo/sdk-api && \
250250
yarn link @bitgo/sdk-hmac && \
251251
yarn link @bitgo/account-lib && \
252+
yarn link @bitgo/sdk-coin-ada && \
252253
yarn link @bitgo/sdk-coin-algo && \
253254
yarn link @bitgo/sdk-coin-apechain && \
254255
yarn link @bitgo/abstract-eth && \
@@ -309,7 +310,6 @@ RUN cd /var/bitgo-express && \
309310
yarn link @bitgo/sdk-coin-xtz && \
310311
yarn link @bitgo/sdk-coin-zeta && \
311312
yarn link @bitgo/sdk-coin-zketh && \
312-
yarn link @bitgo/sdk-coin-ada && \
313313
yarn link @bitgo/sdk-coin-bch && \
314314
yarn link @bitgo/sdk-coin-bcha && \
315315
yarn link @bitgo/sdk-coin-bsv && \
@@ -328,9 +328,9 @@ RUN cd /var/bitgo-express && \
328328
#LINK_END
329329

330330
#LABEL_START
331-
LABEL created="Thu, 03 Jul 2025 18:37:32 GMT"
332-
LABEL version=14.1.0
333-
LABEL git_hash=638fd3713006605078c9dbce9c99074a4e0272a8
331+
LABEL created="Thu, 10 Jul 2025 18:36:26 GMT"
332+
LABEL version=14.1.1
333+
LABEL git_hash=0245a1c2db0f3a1fab9c4dc1b940ed4862e16d30
334334
#LABEL_END
335335

336336
USER node

modules/abstract-cosmos/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-10)
7+
8+
**Note:** Version bump only for package @bitgo/abstract-cosmos
9+
610
## [11.9.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-03)
711

812
**Note:** Version bump only for package @bitgo/abstract-cosmos

modules/abstract-cosmos/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-cosmos",
3-
"version": "11.9.5",
3+
"version": "11.9.6",
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.5.0",
41+
"@bitgo/sdk-core": "^35.6.0",
4242
"@bitgo/sdk-lib-mpc": "^10.6.0",
4343
"@bitgo/secp256k1": "^1.4.0",
44-
"@bitgo/statics": "^54.7.0",
44+
"@bitgo/statics": "^55.0.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: 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+
# [24.7.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-10)
7+
8+
### Features
9+
10+
- **account-lib:** verify encoded message ([71a7dd6](https://github.com/BitGo/BitGoJS/commit/71a7dd6cf56010c94364483b7c83221d9a26688e))
11+
- **sdk-coin-ada:** add CIP-8 message builder ([50c53ec](https://github.com/BitGo/BitGoJS/commit/50c53ecc998815ad25a0b08f27a167a9d2d8d948))
12+
- **sdk-core:** add simple message builder for sol ([d5af5c8](https://github.com/BitGo/BitGoJS/commit/d5af5c8d45f88feb01387b45f9b1e2cfeb70a2e8))
13+
614
# [24.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-03)
715

816
### Features

modules/abstract-eth/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-eth",
3-
"version": "24.6.0",
3+
"version": "24.7.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.5.0",
43+
"@bitgo/sdk-core": "^35.6.0",
4444
"@bitgo/sdk-lib-mpc": "^10.6.0",
4545
"@bitgo/secp256k1": "^1.4.0",
46-
"@bitgo/statics": "^54.7.0",
46+
"@bitgo/statics": "^55.0.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.64.3",
63-
"@bitgo/sdk-test": "^8.0.94",
62+
"@bitgo/sdk-api": "^1.64.4",
63+
"@bitgo/sdk-test": "^8.0.95",
6464
"@types/keccak": "^3.0.5"
6565
},
6666
"gitHead": "18e460ddf02de2dbf13c2aa243478188fb539f0c"

modules/abstract-lightning/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-10)
7+
8+
**Note:** Version bump only for package @bitgo/abstract-lightning
9+
610
# [6.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-03)
711

812
### Bug Fixes

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": "6.2.0",
3+
"version": "6.2.1",
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.5.0",
44-
"@bitgo/statics": "^54.7.0",
45-
"@bitgo/utxo-lib": "^11.6.1",
43+
"@bitgo/sdk-core": "^35.6.0",
44+
"@bitgo/statics": "^55.0.0",
45+
"@bitgo/utxo-lib": "^11.6.2",
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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.4](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-10)
7+
8+
**Note:** Version bump only for package @bitgo/abstract-substrate
9+
610
## [1.8.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-03)
711

812
**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.3",
3+
"version": "1.8.4",
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.5.0",
41+
"@bitgo/sdk-core": "^35.6.0",
4242
"@bitgo/sdk-lib-mpc": "^10.6.0",
43-
"@bitgo/statics": "^54.7.0",
43+
"@bitgo/statics": "^55.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: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
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.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-10)
7+
8+
**Note:** Version bump only for package @bitgo/abstract-utxo
9+
610
## [9.21.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-07-03)
711

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

0 commit comments

Comments
 (0)