Skip to content

Commit 0990bce

Browse files
authored
Merge pull request #5605 from BitGo/rel/latest
chore(root): publish modules
2 parents 9801dda + ea0d135 commit 0990bce

File tree

163 files changed

+986
-566
lines changed

Some content is hidden

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

163 files changed

+986
-566
lines changed

Dockerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ COPY --from=builder /tmp/bitgo/node_modules /var/node_modules/
3838
COPY --from=builder /tmp/bitgo/modules/express /var/bitgo-express/
3939

4040
#COPY_START
41+
COPY --from=builder /tmp/bitgo/modules/abstract-lightning /var/modules/abstract-lightning/
4142
COPY --from=builder /tmp/bitgo/modules/sdk-core /var/modules/sdk-core/
4243
COPY --from=builder /tmp/bitgo/modules/bls-dkg /var/modules/bls-dkg/
4344
COPY --from=builder /tmp/bitgo/modules/sdk-lib-mpc /var/modules/sdk-lib-mpc/
@@ -48,7 +49,6 @@ COPY --from=builder /tmp/bitgo/modules/utxo-lib /var/modules/utxo-lib/
4849
COPY --from=builder /tmp/bitgo/modules/blake2b /var/modules/blake2b/
4950
COPY --from=builder /tmp/bitgo/modules/blake2b-wasm /var/modules/blake2b-wasm/
5051
COPY --from=builder /tmp/bitgo/modules/bitgo /var/modules/bitgo/
51-
COPY --from=builder /tmp/bitgo/modules/abstract-lightning /var/modules/abstract-lightning/
5252
COPY --from=builder /tmp/bitgo/modules/abstract-utxo /var/modules/abstract-utxo/
5353
COPY --from=builder /tmp/bitgo/modules/blockapis /var/modules/blockapis/
5454
COPY --from=builder /tmp/bitgo/modules/sdk-api /var/modules/sdk-api/
@@ -122,7 +122,8 @@ COPY --from=builder /tmp/bitgo/modules/sdk-coin-ltc /var/modules/sdk-coin-ltc/
122122
COPY --from=builder /tmp/bitgo/modules/sdk-coin-xlm /var/modules/sdk-coin-xlm/
123123
COPY --from=builder /tmp/bitgo/modules/sdk-coin-zec /var/modules/sdk-coin-zec/
124124

125-
RUN cd /var/modules/sdk-core && yarn link && \
125+
RUN cd /var/modules/abstract-lightning && yarn link && \
126+
cd /var/modules/sdk-core && yarn link && \
126127
cd /var/modules/bls-dkg && yarn link && \
127128
cd /var/modules/sdk-lib-mpc && yarn link && \
128129
cd /var/modules/sdk-opensslbytes && yarn link && \
@@ -132,7 +133,6 @@ cd /var/modules/utxo-lib && yarn link && \
132133
cd /var/modules/blake2b && yarn link && \
133134
cd /var/modules/blake2b-wasm && yarn link && \
134135
cd /var/modules/bitgo && yarn link && \
135-
cd /var/modules/abstract-lightning && yarn link && \
136136
cd /var/modules/abstract-utxo && yarn link && \
137137
cd /var/modules/blockapis && yarn link && \
138138
cd /var/modules/sdk-api && yarn link && \
@@ -209,6 +209,7 @@ cd /var/modules/sdk-coin-zec && yarn link
209209

210210
#LINK_START
211211
RUN cd /var/bitgo-express && \
212+
yarn link @bitgo/abstract-lightning && \
212213
yarn link @bitgo/sdk-core && \
213214
yarn link @bitgo/bls-dkg && \
214215
yarn link @bitgo/sdk-lib-mpc && \
@@ -219,7 +220,6 @@ RUN cd /var/bitgo-express && \
219220
yarn link @bitgo/blake2b && \
220221
yarn link @bitgo/blake2b-wasm && \
221222
yarn link bitgo && \
222-
yarn link @bitgo/abstract-lightning && \
223223
yarn link @bitgo/abstract-utxo && \
224224
yarn link @bitgo/blockapis && \
225225
yarn link @bitgo/sdk-api && \
@@ -295,9 +295,9 @@ RUN cd /var/bitgo-express && \
295295
#LINK_END
296296

297297
#LABEL_START
298-
LABEL created="Wed, 19 Feb 2025 13:38:58 GMT"
299-
LABEL version=10.7.0
300-
LABEL git_hash=db6c3b685bd685c8a649d4002a03461ec529dc1c
298+
LABEL created="Thu, 20 Feb 2025 13:57:47 GMT"
299+
LABEL version=11.0.0
300+
LABEL git_hash=469eab4beb54ca705626534535fa32bad6756c11
301301
#LABEL_END
302302

303303
USER node

modules/abstract-cosmos/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
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.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-02-20)
7+
8+
### Bug Fixes
9+
10+
- address validation for cosmos like coins ([2912eab](https://github.com/BitGo/BitGoJS/commit/2912eabf6a1dbc7cde3715352c3849f550b5b6ec))
11+
12+
### Features
13+
14+
- **abstract-cosmos:** add unsigned sweep recovery for cosmos ([e2d1d07](https://github.com/BitGo/BitGoJS/commit/e2d1d0787a375d6ae8493961b607a9cea9d2f29a))
15+
616
## [11.2.22](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-02-19)
717

818
**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.2.22",
3+
"version": "11.3.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,8 +38,8 @@
3838
]
3939
},
4040
"dependencies": {
41-
"@bitgo/sdk-core": "^28.25.0",
42-
"@bitgo/statics": "^51.0.0",
41+
"@bitgo/sdk-core": "^29.0.0",
42+
"@bitgo/statics": "^51.0.1",
4343
"@bitgo/utxo-lib": "^11.2.2",
4444
"@cosmjs/amino": "^0.29.5",
4545
"@cosmjs/crypto": "^0.30.1",

modules/abstract-eth/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+
## [22.6.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-02-20)
7+
8+
**Note:** Version bump only for package @bitgo/abstract-eth
9+
610
# [22.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-02-19)
711

812
### 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": "22.6.0",
3+
"version": "22.6.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,8 +40,8 @@
4040
]
4141
},
4242
"dependencies": {
43-
"@bitgo/sdk-core": "^28.25.0",
44-
"@bitgo/statics": "^51.0.0",
43+
"@bitgo/sdk-core": "^29.0.0",
44+
"@bitgo/statics": "^51.0.1",
4545
"@bitgo/utxo-lib": "^11.2.2",
4646
"@ethereumjs/common": "^2.6.5",
4747
"@ethereumjs/tx": "^3.3.0",
@@ -58,8 +58,8 @@
5858
"superagent": "^9.0.1"
5959
},
6060
"devDependencies": {
61-
"@bitgo/sdk-api": "^1.58.8",
62-
"@bitgo/sdk-test": "^8.0.71",
61+
"@bitgo/sdk-api": "^1.58.9",
62+
"@bitgo/sdk-test": "^8.0.72",
6363
"@types/keccak": "^3.0.5"
6464
},
6565
"gitHead": "18e460ddf02de2dbf13c2aa243478188fb539f0c"

modules/abstract-lightning/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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+
# [2.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-02-20)
7+
8+
### Features
9+
10+
- **abstract-lightning:** move lnv2 logic from sdk-core ([5c9114d](https://github.com/BitGo/BitGoJS/commit/5c9114d6a4dbdd5a130bde7cb897ff6f1f8132e0))
11+
- **abstract-lightning:** wire up lnv2 invoices ([dba5411](https://github.com/BitGo/BitGoJS/commit/dba5411dea805ab3bf5e3937736d5c0d6f166e49))
12+
13+
### BREAKING CHANGES
14+
15+
- **abstract-lightning:** Lightning v2
16+
617
## [1.2.44](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-02-19)
718

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

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": "1.2.44",
3+
"version": "2.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",
@@ -39,13 +39,13 @@
3939
]
4040
},
4141
"dependencies": {
42-
"@bitgo/sdk-core": "^28.25.0",
42+
"@bitgo/sdk-core": "^29.0.0",
43+
"@bitgo/statics": "^51.0.1",
4344
"@bitgo/utxo-lib": "^11.2.2",
44-
"@bitgo/statics": "^51.0.0",
45+
"bs58check": "^2.1.2",
4546
"fp-ts": "^2.12.2",
4647
"io-ts": "npm:@bitgo-forks/[email protected]",
4748
"io-ts-types": "^0.5.16",
48-
"bs58check": "^2.1.2",
4949
"macaroon": "^3.0.4"
5050
},
5151
"gitHead": "18e460ddf02de2dbf13c2aa243478188fb539f0c"

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.1.6](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-02-20)
7+
8+
**Note:** Version bump only for package @bitgo/abstract-substrate
9+
610
## [1.1.5](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-02-19)
711

812
### Bug Fixes

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.1.5",
3+
"version": "1.1.6",
44
"description": "BitGo SDK coin library for Substrate base implementation",
55
"main": "./dist/src/index.js",
66
"types": "./dist/src/index.d.ts",
@@ -38,8 +38,8 @@
3838
]
3939
},
4040
"dependencies": {
41-
"@bitgo/sdk-core": "^28.25.0",
42-
"@bitgo/statics": "^51.0.0",
41+
"@bitgo/sdk-core": "^29.0.0",
42+
"@bitgo/statics": "^51.0.1",
4343
"@polkadot/keyring": "13.3.1",
4444
"@polkadot/types": "14.1.1",
4545
"@polkadot/util": "13.3.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.17.1](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-02-20)
7+
8+
**Note:** Version bump only for package @bitgo/abstract-utxo
9+
610
# [9.17.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2025-02-19)
711

812
### Features

0 commit comments

Comments
 (0)