Skip to content

Commit

Permalink
Merge pull request #4148 from BitGo/rel/latest
Browse files Browse the repository at this point in the history
chore(root): publish modules
  • Loading branch information
alebusse authored Dec 14, 2023
2 parents 2302dab + 4c2732b commit 629f35e
Show file tree
Hide file tree
Showing 137 changed files with 1,605 additions and 502 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,9 @@ RUN cd /var/bitgo-express && \
#LINK_END

#LABEL_START
LABEL created="Sat, 09 Dec 2023 17:17:52 GMT"
LABEL version=9.50.0
LABEL git_hash=cd8e62a8f301461c2591d3794455bafd110da430
LABEL created="Wed, 13 Dec 2023 20:21:39 GMT"
LABEL version=9.51.0
LABEL git_hash=58fdc97e33cb80bc369e3af271812f89c4ca0954
#LABEL_END

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

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

### Bug Fixes

- **abstract-cosmos:** getAccountDetails fix ([d5c6c74](https://github.com/BitGo/BitGoJS/commit/d5c6c74845e62ee3cd68321c55d729da1526fcae))
- **abstract-cosmos:** getAccountDetails fix ([3c869f2](https://github.com/BitGo/BitGoJS/commit/3c869f22ce9db917feaa75acec8a47696043bcd3))
- add bech32 validation to cosmos address validation ([f5008a7](https://github.com/BitGo/BitGoJS/commit/f5008a7298f9cb470795f8087b6840cf7f254369))
- address verification for cosmos like coins ([5ac7879](https://github.com/BitGo/BitGoJS/commit/5ac78799b460d0d03eaa841db08a6855b571a46f))

### Features

- **abstract-cosmos:** add support for different pubkey types ([e257093](https://github.com/BitGo/BitGoJS/commit/e257093605a4bfe22fbe0b0f9933bfef1a3975c6))
- **sdk-coin-atom:** add sendMany support for cosmos chains ([ee609ec](https://github.com/BitGo/BitGoJS/commit/ee609ec5de3d3159c78ba59ecf7f43c79f6f5870))

# [1.16.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2023-12-09)

### Bug Fixes
Expand Down
10 changes: 5 additions & 5 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.16.0",
"version": "1.17.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": "^16.0.0",
"@bitgo/sdk-lib-mpc": "^8.23.0",
"@bitgo/statics": "^37.0.0",
"@bitgo/utxo-lib": "^9.24.0",
"@bitgo/sdk-core": "^17.0.0",
"@bitgo/sdk-lib-mpc": "^8.24.0",
"@bitgo/statics": "^38.0.0",
"@bitgo/utxo-lib": "^9.25.0",
"@cosmjs/amino": "^0.29.5",
"@cosmjs/crypto": "^0.30.1",
"@cosmjs/encoding": "^0.29.5",
Expand Down
59 changes: 59 additions & 0 deletions modules/abstract-eth/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,65 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

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

### Bug Fixes

- **sdk-coin-polygon:** fix issues ([85e9396](https://github.com/BitGo/BitGoJS/commit/85e93967abd056f5054198f385a1b109246a281f))

### Code Refactoring

- **abstract-eth:** add common method to abstract-eth ([df6eea5](https://github.com/BitGo/BitGoJS/commit/df6eea5d299c415b30263d1713335c14e5abef4a))
- **abstract-eth:** delete mpc related classes ([52396ed](https://github.com/BitGo/BitGoJS/commit/52396ed5aae8b27f0cc6caee7011a7c6882b9dea))
- **abstract-eth:** move methods to abstract-eth ([af8bd10](https://github.com/BitGo/BitGoJS/commit/af8bd10e24c8d58fc227494de6a614098265580a))
- **abstract-eth:** move txbuilder to abstract-eth ([a093f16](https://github.com/BitGo/BitGoJS/commit/a093f16465b691d82b2709245cc806fc0eb66212))

### Features

- **abstract-eth:** add abstractethliketsscoin class ([eb99545](https://github.com/BitGo/BitGoJS/commit/eb995457d7787af073f0a9eafe6e4d420228f5f0))

### BREAKING CHANGES

- **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
getCustomChainName method is removed from Polygon class because a common
method getCustomChainCommon has been added to AbstractEthLikeNewCoins
class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
and needs to be passed to derive the Eth common object from the chainId.
signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
it can be used for other EthLike coins. getBaseFactor method in Eth
and Polygon class returns number instead of string just to align with
AbstractEthLikeCoin
Ticket: WIN-1012
- **abstract-eth:** Type of nextContractSequenceId field in TransactionPrebuild
interface is changed from string to number in AbstractEthLikeCoin and AbstractEthLikeNewCoins classes.
getCustomChainName method is removed from Polygon class because a common
method getCustomChainCommon has been added to AbstractEthLikeNewCoins
class for all EthLike coins. replayProtectionOptions is not optional in buildTransaction method in AbstractEthLikeNewCoins
and needs to be passed to derive the Eth common object from the chainId.
signFinalPolygon method name from Polygon class is updated to signFinalEthLike so that
it can be used for other EthLike coins. getBaseFactor method in Eth
and Polygon class returns number instead of string just to align with
AbstractEthLikeCoin
Ticket: WIN-1012
- **abstract-eth:** AbstractEthLikeMPCCoin and EthLikeMPCToken classes are removed as we have instead added
a new class AbstractEthLikeNewCoins which will be having both multisig
and MPC related methods

TICKET: WIN-1021

- **abstract-eth:** getTransactionBuilder method is removed from EthLikeToken
class in abstract-eth module because TransactionBuilder in the
abstract-eth module is abstract class and hence cannot be instantiated. Hence the implementation of TransactionBuilder can
be added to the class that will inherit EthLikeToken class

TransactionPrebuild from new class AbstractEthLikeNewCoins is being
exported now instead of TransactionPrebuild from AbstractEthLikeCoin
class as the TransactionPrebuild from AbstractEthLikeNewCoins also has
support for hop transactions, batch transactions, etc

TICKET: WIN-1021

# [9.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2023-12-09)

### Bug Fixes
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": "9.0.0",
"version": "10.0.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-core": "^16.0.0",
"@bitgo/sdk-lib-mpc": "^8.23.0",
"@bitgo/statics": "^37.0.0",
"@bitgo/utxo-lib": "^9.24.0",
"@bitgo/sdk-core": "^17.0.0",
"@bitgo/sdk-lib-mpc": "^8.24.0",
"@bitgo/statics": "^38.0.0",
"@bitgo/utxo-lib": "^9.25.0",
"@ethereumjs/common": "^2.6.5",
"@ethereumjs/tx": "^3.3.0",
"@metamask/eth-sig-util": "^5.0.2",
Expand Down
15 changes: 15 additions & 0 deletions modules/abstract-utxo/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

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

### Bug Fixes

- **abstract-utxo:** upper case address should return false ([f0b6c46](https://github.com/BitGo/BitGoJS/commit/f0b6c467daaa0e43bb2923993fb238c7a4ce6f59))

### Features

- **abstract-utxo:** change api used for bitcoin recovery from blockstream to blockchair ([6da5791](https://github.com/BitGo/BitGoJS/commit/6da5791bce2fc73d5d77c1eee6cb581b60da2079))
- **abstract-utxo:** enable segwit override when flagged ([bdf723c](https://github.com/BitGo/BitGoJS/commit/bdf723ce51d245e97b217941a21b02084b2473cf))
- **abstract-utxo:** this enables psbt unless explicitly disabled for ([9a1722e](https://github.com/BitGo/BitGoJS/commit/9a1722e21e2a2fb3068d2940f439f72a6cbcb421))
- **bitgo:** calculate fees explicitly for psbts ([7a7e288](https://github.com/BitGo/BitGoJS/commit/7a7e288c63718a112abf633b842e7538d1e25693))
- **unspents:** default unspents dimensions to recovery path ([361eb62](https://github.com/BitGo/BitGoJS/commit/361eb62641aac19c876576a65da7f6777dc532a0))
- use psbt for prebuild when wallet is distributedCustody ([10f5e1a](https://github.com/BitGo/BitGoJS/commit/10f5e1ab37d2bea6acd93f94defbe786e4a027b9))

# [3.26.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2023-12-09)

### Bug Fixes
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.26.0",
"version": "3.27.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.24",
"@bitgo/sdk-api": "^1.32.0",
"@bitgo/sdk-core": "^16.0.0",
"@bitgo/unspents": "^0.36.0",
"@bitgo/utxo-lib": "^9.24.0",
"@bitgo/blockapis": "^1.7.25",
"@bitgo/sdk-api": "^1.33.0",
"@bitgo/sdk-core": "^17.0.0",
"@bitgo/unspents": "^0.37.0",
"@bitgo/utxo-lib": "^9.25.0",
"@types/bluebird": "^3.5.25",
"@types/lodash": "^4.14.121",
"@types/superagent": "4.1.15",
Expand Down
30 changes: 30 additions & 0 deletions modules/account-lib/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,36 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

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

### Bug Fixes

- **account-lib:** pin substrate txwrapper ([e0c4b16](https://github.com/BitGo/BitGoJS/commit/e0c4b16615ab47326dce0da3712f0faa572bae44))
- rename coin 'core' to 'coreum' in coinBuilderMap ([e85f658](https://github.com/BitGo/BitGoJS/commit/e85f658bd42490112716e5ffcb9f6e32f15bd5a0))
- **root:** update @types/node ([cedc1a0](https://github.com/BitGo/BitGoJS/commit/cedc1a0035e79bb42fda57bf6ac29d606242f50b))
- **sdk-coin-dot:** update DOT sdk to latest ([9385f80](https://github.com/BitGo/BitGoJS/commit/9385f803366b615d09bda31b8efda6f93e26e8e7))
- **sdk-core:** fix issue related to bignumber version ([519fe47](https://github.com/BitGo/BitGoJS/commit/519fe479ef51a72ddc1e94f87c10e031c0fd2c3f))

### Code Refactoring

- rename coin 'core' to 'coreum' ([baecc01](https://github.com/BitGo/BitGoJS/commit/baecc013ff7243ce78ebd767bffdb0763b8b4cdb))

### Features

- **account-lib:** add holesky testnet coin ([0aaefc0](https://github.com/BitGo/BitGoJS/commit/0aaefc0e53a5a48b2c701ca3c6d5e1c6ec7c19d2))
- **account-lib:** expose Ton from sdk ([14c8b18](https://github.com/BitGo/BitGoJS/commit/14c8b1806ba82799a973544670fa01a6f2ce8dc4))
- **sdk-coin-arbeth:** add arbeth sdk skeleton ([f86018e](https://github.com/BitGo/BitGoJS/commit/f86018eef56adf22b5539bfb8716175eb1fb152e))
- **sdk-coin-bera:** add Berachain skeleton ([b3d43c5](https://github.com/BitGo/BitGoJS/commit/b3d43c52c7fd10d5fdc40123b3ad61cfe4784e5d))
- **sdk-coin-core:** add coreum sdk ([af73ccd](https://github.com/BitGo/BitGoJS/commit/af73ccd445b52dcf378ebd18260e628de0687043))
- **sdk-coin-islm:** add Islamic Coin ([c49bdd1](https://github.com/BitGo/BitGoJS/commit/c49bdd18df36a20d6e27cdd2686ec687bf653596))
- **sdk-coin-opeth:** add opeth sdk skeleton ([42fbefa](https://github.com/BitGo/BitGoJS/commit/42fbefa54f22fa5bdaef4150ef3a643843ec8684))
- **sdk-core:** generate and verify schnorr proof of X_i ([ff58298](https://github.com/BitGo/BitGoJS/commit/ff58298c21ee8de4f6cee4fec857666e9556d0f3))
- update secp256k1 to 5.0.0 and keccak to 3.0.3 ([e2c37e6](https://github.com/BitGo/BitGoJS/commit/e2c37e6b0139c9f6948a22d8921bc3e1f88bed4c))

### BREAKING CHANGES

- rename coin module, coin name, named exports for coreum

# [12.0.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/[email protected]...@bitgo/[email protected]) (2023-12-09)

### Bug Fixes
Expand Down
74 changes: 37 additions & 37 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": "12.0.0",
"version": "13.0.0",
"description": "BitGo's account library functions",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
Expand All @@ -27,42 +27,42 @@
"node": ">=16 <21"
},
"dependencies": {
"@bitgo/sdk-coin-algo": "^1.15.0",
"@bitgo/sdk-coin-arbeth": "^9.0.0",
"@bitgo/sdk-coin-atom": "^3.16.0",
"@bitgo/sdk-coin-avaxc": "^2.17.0",
"@bitgo/sdk-coin-avaxp": "^3.11.0",
"@bitgo/sdk-coin-bera": "^1.10.0",
"@bitgo/sdk-coin-bld": "^1.14.0",
"@bitgo/sdk-coin-bsc": "^11.0.0",
"@bitgo/sdk-coin-celo": "^1.5.21",
"@bitgo/sdk-coin-coreum": "^9.0.0",
"@bitgo/sdk-coin-cspr": "^1.15.0",
"@bitgo/sdk-coin-dot": "^3.23.0",
"@bitgo/sdk-coin-etc": "^1.4.21",
"@bitgo/sdk-coin-eth": "^12.0.0",
"@bitgo/sdk-coin-eth2": "^1.4.21",
"@bitgo/sdk-coin-hash": "^1.14.0",
"@bitgo/sdk-coin-hbar": "^1.5.21",
"@bitgo/sdk-coin-injective": "^1.14.0",
"@bitgo/sdk-coin-islm": "^1.10.0",
"@bitgo/sdk-coin-near": "^1.6.21",
"@bitgo/sdk-coin-opeth": "^6.0.0",
"@bitgo/sdk-coin-osmo": "^1.16.0",
"@bitgo/sdk-coin-polygon": "^9.0.0",
"@bitgo/sdk-coin-rbtc": "^1.5.21",
"@bitgo/sdk-coin-sei": "^1.14.0",
"@bitgo/sdk-coin-sol": "^2.28.0",
"@bitgo/sdk-coin-stx": "^2.3.21",
"@bitgo/sdk-coin-sui": "^4.13.0",
"@bitgo/sdk-coin-tia": "^1.14.0",
"@bitgo/sdk-coin-ton": "^1.10.0",
"@bitgo/sdk-coin-trx": "^1.26.0",
"@bitgo/sdk-coin-xtz": "^1.6.21",
"@bitgo/sdk-coin-zeta": "^1.19.0",
"@bitgo/sdk-core": "^16.0.0",
"@bitgo/sdk-lib-mpc": "^8.23.0",
"@bitgo/statics": "^37.0.0",
"@bitgo/sdk-coin-algo": "^1.16.0",
"@bitgo/sdk-coin-arbeth": "^10.0.0",
"@bitgo/sdk-coin-atom": "^3.17.0",
"@bitgo/sdk-coin-avaxc": "^2.18.0",
"@bitgo/sdk-coin-avaxp": "^3.12.0",
"@bitgo/sdk-coin-bera": "^1.11.0",
"@bitgo/sdk-coin-bld": "^1.15.0",
"@bitgo/sdk-coin-bsc": "^12.0.0",
"@bitgo/sdk-coin-celo": "^1.5.22",
"@bitgo/sdk-coin-coreum": "^10.0.0",
"@bitgo/sdk-coin-cspr": "^1.16.0",
"@bitgo/sdk-coin-dot": "^3.24.0",
"@bitgo/sdk-coin-etc": "^1.4.22",
"@bitgo/sdk-coin-eth": "^13.0.0",
"@bitgo/sdk-coin-eth2": "^1.4.22",
"@bitgo/sdk-coin-hash": "^1.15.0",
"@bitgo/sdk-coin-hbar": "^1.5.22",
"@bitgo/sdk-coin-injective": "^1.15.0",
"@bitgo/sdk-coin-islm": "^1.11.0",
"@bitgo/sdk-coin-near": "^1.6.22",
"@bitgo/sdk-coin-opeth": "^7.0.0",
"@bitgo/sdk-coin-osmo": "^1.17.0",
"@bitgo/sdk-coin-polygon": "^10.0.0",
"@bitgo/sdk-coin-rbtc": "^1.5.22",
"@bitgo/sdk-coin-sei": "^1.15.0",
"@bitgo/sdk-coin-sol": "^2.29.0",
"@bitgo/sdk-coin-stx": "^2.3.22",
"@bitgo/sdk-coin-sui": "^4.14.0",
"@bitgo/sdk-coin-tia": "^1.15.0",
"@bitgo/sdk-coin-ton": "^1.11.0",
"@bitgo/sdk-coin-trx": "^1.27.0",
"@bitgo/sdk-coin-xtz": "^1.6.22",
"@bitgo/sdk-coin-zeta": "^1.20.0",
"@bitgo/sdk-core": "^17.0.0",
"@bitgo/sdk-lib-mpc": "^8.24.0",
"@bitgo/statics": "^38.0.0",
"bignumber.js": "^9.1.1",
"bs58": "^4.0.1"
},
Expand Down
Loading

0 comments on commit 629f35e

Please sign in to comment.