Skip to content

Commit

Permalink
Merge pull request #3786 from BitGo/rel/latest
Browse files Browse the repository at this point in the history
Rel/latest
  • Loading branch information
mmcshinsky-bitgo authored Aug 7, 2023
2 parents 9055248 + 8474524 commit 070fb0a
Show file tree
Hide file tree
Showing 128 changed files with 959 additions and 445 deletions.
16 changes: 8 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ COPY --from=builder /tmp/bitgo/modules/sdk-coin-sui /var/modules/sdk-coin-sui/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-tia /var/modules/sdk-coin-tia/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-trx /var/modules/sdk-coin-trx/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-xtz /var/modules/sdk-coin-xtz/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-zeta /var/modules/sdk-coin-zeta/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-ada /var/modules/sdk-coin-ada/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-bch /var/modules/sdk-coin-bch/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-bcha /var/modules/sdk-coin-bcha/
Expand All @@ -95,7 +96,6 @@ COPY --from=builder /tmp/bitgo/modules/sdk-coin-ltc /var/modules/sdk-coin-ltc/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-xlm /var/modules/sdk-coin-xlm/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-xrp /var/modules/sdk-coin-xrp/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-zec /var/modules/sdk-coin-zec/
COPY --from=builder /tmp/bitgo/modules/sdk-coin-zeta /var/modules/sdk-coin-zeta/

RUN cd /var/modules/sdk-core && yarn link && \
cd /var/modules/bls-dkg && yarn link && \
Expand Down Expand Up @@ -139,6 +139,7 @@ cd /var/modules/sdk-coin-sui && yarn link && \
cd /var/modules/sdk-coin-tia && yarn link && \
cd /var/modules/sdk-coin-trx && yarn link && \
cd /var/modules/sdk-coin-xtz && yarn link && \
cd /var/modules/sdk-coin-zeta && yarn link && \
cd /var/modules/sdk-coin-ada && yarn link && \
cd /var/modules/sdk-coin-bch && yarn link && \
cd /var/modules/sdk-coin-bcha && yarn link && \
Expand All @@ -153,8 +154,7 @@ cd /var/modules/sdk-coin-ethw && yarn link && \
cd /var/modules/sdk-coin-ltc && yarn link && \
cd /var/modules/sdk-coin-xlm && yarn link && \
cd /var/modules/sdk-coin-xrp && yarn link && \
cd /var/modules/sdk-coin-zec && yarn link && \
cd /var/modules/sdk-coin-zeta && yarn link
cd /var/modules/sdk-coin-zec && yarn link
#COPY_END

#LINK_START
Expand Down Expand Up @@ -201,6 +201,7 @@ RUN cd /var/bitgo-express && \
yarn link @bitgo/sdk-coin-tia && \
yarn link @bitgo/sdk-coin-trx && \
yarn link @bitgo/sdk-coin-xtz && \
yarn link @bitgo/sdk-coin-zeta && \
yarn link @bitgo/sdk-coin-ada && \
yarn link @bitgo/sdk-coin-bch && \
yarn link @bitgo/sdk-coin-bcha && \
Expand All @@ -215,14 +216,13 @@ RUN cd /var/bitgo-express && \
yarn link @bitgo/sdk-coin-ltc && \
yarn link @bitgo/sdk-coin-xlm && \
yarn link @bitgo/sdk-coin-xrp && \
yarn link @bitgo/sdk-coin-zec && \
yarn link @bitgo/sdk-coin-zeta
yarn link @bitgo/sdk-coin-zec
#LINK_END

#LABEL_START
LABEL created="Tue, 18 Jul 2023 22:17:17 GMT"
LABEL version=9.30.0
LABEL git_hash=923e14ba0bb21f9dc77b0dd95d7bd965d4b2901d
LABEL created="Fri, 04 Aug 2023 17:08:29 GMT"
LABEL version=9.32.0
LABEL git_hash=9e5285f524b66ccb7367735443fc6ab617319e53
#LABEL_END

USER node
Expand Down
16 changes: 16 additions & 0 deletions modules/abstract-cosmos/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.6.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2023-08-04)

### Bug Fixes

- **abstract-cosmos:** getAccountBalance fix ([94b7dbc](https://github.com/BitGo/BitGoJS/commit/94b7dbc52e962b5e3e4819acbee39dc420d1d7ea))
- **abstract-cosmos:** getAccountDetails fix ([3f2e940](https://github.com/BitGo/BitGoJS/commit/3f2e940a6d7e63761e0f81a889f1fb3b480f878d))
- **abstract-cosmos:** skip amount validation for contractcall txn ([9acb564](https://github.com/BitGo/BitGoJS/commit/9acb56479c1db488e95cfcabe8e0396172006d9d))
- **sdk-coin-osmo:** allow zero amount on contract call ([2245ba7](https://github.com/BitGo/BitGoJS/commit/2245ba7acde8ae669ed53ffeb0e58178054f3da3))

### Features

- **abstract-cosmos:** add wallet recovery for abstract cosmos ([1c62e4b](https://github.com/BitGo/BitGoJS/commit/1c62e4b42a6e58d2e3e14dbfa7e312ce062c5db3))
- **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
- **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
- **sdk-coin-osmo:** allow amount in execute contract transaction ([44be383](https://github.com/BitGo/BitGoJS/commit/44be383f38830aeb2d5825ee83c77aab444cfe25))

# [1.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2023-07-28)

### Bug Fixes
Expand Down
8 changes: 4 additions & 4 deletions modules/abstract-cosmos/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bitgo/abstract-cosmos",
"version": "1.5.0",
"version": "1.6.0",
"description": "BitGo SDK coin library for COSMOS base implementation",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
Expand Down Expand Up @@ -37,10 +37,10 @@
]
},
"dependencies": {
"@bitgo/sdk-core": "^8.12.0",
"@bitgo/sdk-core": "^8.13.0",
"@bitgo/sdk-lib-mpc": "^8.5.0",
"@bitgo/statics": "^18.1.0",
"@bitgo/utxo-lib": "^9.4.0",
"@bitgo/statics": "^18.2.0",
"@bitgo/utxo-lib": "^9.5.0",
"@cosmjs/amino": "^0.29.5",
"@cosmjs/crypto": "^0.30.1",
"@cosmjs/encoding": "^0.29.5",
Expand Down
7 changes: 7 additions & 0 deletions modules/abstract-eth/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [1.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2023-08-04)

### Features

- **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
- **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))

# [1.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2023-07-28)

### Features
Expand Down
10 changes: 5 additions & 5 deletions modules/abstract-eth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bitgo/abstract-eth",
"version": "1.3.0",
"version": "1.4.0",
"description": "BitGo SDK coin library for ETH base implementation",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
Expand Down Expand Up @@ -37,10 +37,10 @@
]
},
"dependencies": {
"@bitgo/sdk-coin-eth": "^4.6.0",
"@bitgo/sdk-core": "^8.12.0",
"@bitgo/statics": "^18.1.0",
"@bitgo/utxo-lib": "^9.4.0",
"@bitgo/sdk-coin-eth": "^4.7.0",
"@bitgo/sdk-core": "^8.13.0",
"@bitgo/statics": "^18.2.0",
"@bitgo/utxo-lib": "^9.5.0",
"bignumber.js": "^8.0.1"
}
}
9 changes: 9 additions & 0 deletions modules/abstract-utxo/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.5.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2023-08-04)

### Features

- **abstract-utxo:** add psbt support backup recovery ([b312a86](https://github.com/BitGo/BitGoJS/commit/b312a86091c1320b4d7a02bd1ca5c3d2056c00c6))
- **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
- **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
- **utxo-lib:** extract half signed tx from psbt ([3145474](https://github.com/BitGo/BitGoJS/commit/31454748fcea6df7fbbf886937abc48b36fb9cbd))

# [3.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2023-07-28)

### Features
Expand Down
12 changes: 6 additions & 6 deletions modules/abstract-utxo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bitgo/abstract-utxo",
"version": "3.4.0",
"version": "3.5.0",
"description": "BitGo SDK coin library for UTXO base implementation",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
Expand Down Expand Up @@ -37,11 +37,11 @@
]
},
"dependencies": {
"@bitgo/blockapis": "^1.7.2",
"@bitgo/sdk-api": "^1.12.0",
"@bitgo/sdk-core": "^8.12.0",
"@bitgo/unspents": "^0.16.0",
"@bitgo/utxo-lib": "^9.4.0",
"@bitgo/blockapis": "^1.7.3",
"@bitgo/sdk-api": "^1.13.0",
"@bitgo/sdk-core": "^8.13.0",
"@bitgo/unspents": "^0.17.0",
"@bitgo/utxo-lib": "^9.5.0",
"@types/bluebird": "^3.5.25",
"@types/lodash": "^4.14.121",
"@types/superagent": "4.1.15",
Expand Down
8 changes: 8 additions & 0 deletions modules/account-lib/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [4.12.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2023-08-04)

### Features

- **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
- **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
- **sdk-coin-zeta:** zeta sdk init along with testcases ([b92d793](https://github.com/BitGo/BitGoJS/commit/b92d793a59ee1116e8f202b0f97c6720f6a76ab5))

# [4.11.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2023-07-28)

### Features
Expand Down
60 changes: 30 additions & 30 deletions modules/account-lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bitgo/account-lib",
"version": "4.11.0",
"version": "4.12.0",
"description": "BitGo's account library functions",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
Expand All @@ -27,36 +27,36 @@
"node": ">=16 <19"
},
"dependencies": {
"@bitgo/sdk-coin-algo": "^1.4.0",
"@bitgo/sdk-coin-atom": "^3.5.0",
"@bitgo/sdk-coin-avaxc": "^2.5.0",
"@bitgo/sdk-coin-avaxp": "^3.6.0",
"@bitgo/sdk-coin-bld": "^1.3.0",
"@bitgo/sdk-coin-bsc": "^3.7.0",
"@bitgo/sdk-coin-celo": "^1.4.0",
"@bitgo/sdk-coin-cspr": "^1.3.0",
"@bitgo/sdk-coin-dot": "^3.1.0",
"@bitgo/sdk-coin-etc": "^1.3.0",
"@bitgo/sdk-coin-eth": "^4.6.0",
"@bitgo/sdk-coin-eth2": "^1.3.0",
"@bitgo/sdk-coin-hash": "^1.3.0",
"@bitgo/sdk-coin-hbar": "^1.4.0",
"@bitgo/sdk-coin-injective": "^1.3.0",
"@bitgo/sdk-coin-near": "^1.5.0",
"@bitgo/sdk-coin-osmo": "^1.5.0",
"@bitgo/sdk-coin-polygon": "^1.6.0",
"@bitgo/sdk-coin-rbtc": "^1.4.0",
"@bitgo/sdk-coin-sei": "^1.3.0",
"@bitgo/sdk-coin-sol": "^2.6.0",
"@bitgo/sdk-coin-stx": "^2.2.0",
"@bitgo/sdk-coin-sui": "^4.1.0",
"@bitgo/sdk-coin-tia": "^1.3.0",
"@bitgo/sdk-coin-trx": "^1.9.0",
"@bitgo/sdk-coin-xtz": "^1.5.0",
"@bitgo/sdk-coin-zeta": "^1.1.0",
"@bitgo/sdk-core": "^8.12.0",
"@bitgo/sdk-coin-algo": "^1.5.0",
"@bitgo/sdk-coin-atom": "^3.6.0",
"@bitgo/sdk-coin-avaxc": "^2.6.0",
"@bitgo/sdk-coin-avaxp": "^3.7.0",
"@bitgo/sdk-coin-bld": "^1.4.0",
"@bitgo/sdk-coin-bsc": "^3.8.0",
"@bitgo/sdk-coin-celo": "^1.5.0",
"@bitgo/sdk-coin-cspr": "^1.4.0",
"@bitgo/sdk-coin-dot": "^3.2.0",
"@bitgo/sdk-coin-etc": "^1.4.0",
"@bitgo/sdk-coin-eth": "^4.7.0",
"@bitgo/sdk-coin-eth2": "^1.4.0",
"@bitgo/sdk-coin-hash": "^1.4.0",
"@bitgo/sdk-coin-hbar": "^1.5.0",
"@bitgo/sdk-coin-injective": "^1.4.0",
"@bitgo/sdk-coin-near": "^1.6.0",
"@bitgo/sdk-coin-osmo": "^1.6.0",
"@bitgo/sdk-coin-polygon": "^1.7.0",
"@bitgo/sdk-coin-rbtc": "^1.5.0",
"@bitgo/sdk-coin-sei": "^1.4.0",
"@bitgo/sdk-coin-sol": "^2.7.0",
"@bitgo/sdk-coin-stx": "^2.3.0",
"@bitgo/sdk-coin-sui": "^4.2.0",
"@bitgo/sdk-coin-tia": "^1.4.0",
"@bitgo/sdk-coin-trx": "^1.10.0",
"@bitgo/sdk-coin-xtz": "^1.6.0",
"@bitgo/sdk-coin-zeta": "^1.2.0",
"@bitgo/sdk-core": "^8.13.0",
"@bitgo/sdk-lib-mpc": "^8.5.0",
"@bitgo/statics": "^18.1.0",
"@bitgo/statics": "^18.2.0",
"bignumber.js": "^9.0.0",
"bs58": "^4.0.1"
},
Expand Down
16 changes: 16 additions & 0 deletions modules/bitgo/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [19.7.0](https://github.com/BitGo/BitGoJS/compare/[email protected]@19.7.0) (2023-08-04)

### Bug Fixes

- **sdk-core:** include paillier in tests ([1de3bc2](https://github.com/BitGo/BitGoJS/commit/1de3bc2cd6a8eb2164f975f317c53dd23af68b96))
- **sdk-core:** use prebuilt-tx with tss full sendmany ([4adebcb](https://github.com/BitGo/BitGoJS/commit/4adebcba016d4ea163da4346f07af931daefaf43))

### Features

- **abstract-utxo:** add psbt support backup recovery ([b312a86](https://github.com/BitGo/BitGoJS/commit/b312a86091c1320b4d7a02bd1ca5c3d2056c00c6))
- **express:** support ECDSA TSS in external signer ([03356c1](https://github.com/BitGo/BitGoJS/commit/03356c15f6ddb274c1e529f0efe21ed62168c807))
- **root:** add node 18 to engines and CI ([9cc6a70](https://github.com/BitGo/BitGoJS/commit/9cc6a70ba807161b7c6a0ebe3d7c47f25c7c8eca))
- **root:** remove node 14 from engines ([6ec47cb](https://github.com/BitGo/BitGoJS/commit/6ec47cbd7996cc78bbf2cf7f16595c24fe43cd41))
- **sdk-coin-zeta:** zeta sdk init along with testcases ([b92d793](https://github.com/BitGo/BitGoJS/commit/b92d793a59ee1116e8f202b0f97c6720f6a76ab5))
- **sdk-core:** add util to get public key from commonKeychain ([289fba0](https://github.com/BitGo/BitGoJS/commit/289fba02eaa137cb3f8f0cfd81d9e886a5ae3f7d))

# [19.6.0](https://github.com/BitGo/BitGoJS/compare/[email protected]@19.6.0) (2023-07-28)

### Bug Fixes
Expand Down
Loading

0 comments on commit 070fb0a

Please sign in to comment.