From f76274f0a9dd33ff6af6bbdec974789eaa0e6311 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 Jan 2025 15:30:17 +0100 Subject: [PATCH] Version Packages (beta) (#489) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to master, this PR will be updated. ⚠️⚠️⚠️⚠️⚠️⚠️ `master` is currently in **pre mode** so this branch has prereleases rather than normal releases. If you want to exit prereleases, run `changeset pre exit` on `master`. ⚠️⚠️⚠️⚠️⚠️⚠️ # Releases ## @celo/wallet-ledger@7.0.0-beta.0 ### Major Changes - [#488](https://github.com/celo-org/developer-tooling/pull/488) [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Interfaces for newLedgerWalletWithSetup and LedgerWallet constructor have changed. `newLedgerWalletWithSetup` replaced positional arguments for named arguments and added changeIndexes ```diff newLedgerWalletWithSetup( transport: any, - derivationPathIndexes?: number[], - baseDerivationPath?: string, - ledgerAddressValidation?: AddressValidation, - isCel2?: boolean + options: LedgerWalletSetup ) + interface LedgerWalletSetup { + derivationPathIndexes?: number[] + changeIndexes?: number[] + baseDerivationPath?: string + ledgerAddressValidation?: AddressValidation + isCel2?: boolean + } ``` `new LedgerWallet` moved transport to first position and added changeIndexes in 4th ```diff new LedgerWallet( + transport, derivationPathIndexes, baseDerivationPath, - transport, + changeIndexes, ledgerAddressValidation, isCel2 ) ``` ### Minor Changes - [#488](https://github.com/celo-org/developer-tooling/pull/488) [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - It is now possible to iterate over both the change and address indexes to look thru more bip44 paths for addresses. just pass changeIndexes into LedgerWallet. ### Patch Changes - [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up - Updated dependencies \[[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: - @celo/utils@8.0.1-beta.0 - @celo/base@7.0.1-beta.0 - @celo/wallet-remote@7.0.0-beta.0 - @celo/wallet-base@7.0.0-beta.0 - @celo/connect@6.1.1-beta.0 ## @celo/celocli@6.1.0-beta.0 ### Minor Changes - [#470](https://github.com/celo-org/developer-tooling/pull/470) [`770bfa4`](https://github.com/celo-org/developer-tooling/commit/770bfa47af12ce8fbe0a4884481034ca26d3b29d) Thanks [@shazarre](https://github.com/shazarre)! - Introduce `validatorgroup:rpc-urls` command to list community RPC nodes - [#488](https://github.com/celo-org/developer-tooling/pull/488) [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - add --derivationPath to config:set for setting global deriviationPath. Usefull when using ledger devices and when generated new accounts. - [#488](https://github.com/celo-org/developer-tooling/pull/488) [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Add --ledgerLiveMode flag for use with --useLedger flag. This is useful for using same addresses on celocli as LedgerLive uses. - [#508](https://github.com/celo-org/developer-tooling/pull/508) [`8fb95c9`](https://github.com/celo-org/developer-tooling/commit/8fb95c904ee2fd96220658b067ac60193b22a2d9) Thanks [@shazarre](https://github.com/shazarre)! - Support delegation for vote signers - [#507](https://github.com/celo-org/developer-tooling/pull/507) [`0517378`](https://github.com/celo-org/developer-tooling/commit/0517378e1160990238b4cf670e0fed841eb953ea) Thanks [@shazarre](https://github.com/shazarre)! - --useMultiSig support for governance:withdraw command ### Patch Changes - [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up - [#493](https://github.com/celo-org/developer-tooling/pull/493) [`075a270`](https://github.com/celo-org/developer-tooling/commit/075a270b98c806046226ee151de4027040ae4b05) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Fix releasegold:transfer-dollars bug with pre run checks - Updated dependencies \[[`770bfa4`](https://github.com/celo-org/developer-tooling/commit/770bfa47af12ce8fbe0a4884481034ca26d3b29d), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: - @celo/metadata-claims@1.0.1-beta.0 - @celo/wallet-hsm-azure@7.0.0-beta.0 - @celo/cryptographic-utils@5.1.2-beta.0 - @celo/utils@8.0.1-beta.0 - @celo/base@7.0.1-beta.0 - @celo/wallet-ledger@7.0.0-beta.0 - @celo/wallet-local@7.0.0-beta.0 - @celo/contractkit@9.0.1-beta.0 - @celo/phone-utils@6.0.5-beta.0 - @celo/governance@5.1.5-beta.0 - @celo/explorer@5.0.14-beta.0 - @celo/connect@6.1.1-beta.0 ## @celo/dev-utils@0.0.8-beta.0 ### Patch Changes - Updated dependencies \[[`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de)]: - @celo/connect@6.1.1-beta.0 ## @celo/base@7.0.1-beta.0 ### Patch Changes - [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump @noble/ciphers to use audited version - [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - [#488](https://github.com/celo-org/developer-tooling/pull/488) [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - New export type DerivationPath. Useful for when a value Must match first part of BIP44 ## @celo/connect@6.1.1-beta.0 ### Patch Changes - [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - Updated dependencies \[[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: - @celo/utils@8.0.1-beta.0 - @celo/base@7.0.1-beta.0 ## @celo/contractkit@9.0.1-beta.0 ### Patch Changes - [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up - Updated dependencies \[[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: - @celo/utils@8.0.1-beta.0 - @celo/base@7.0.1-beta.0 - @celo/wallet-local@7.0.0-beta.0 - @celo/connect@6.1.1-beta.0 ## @celo/cryptographic-utils@5.1.2-beta.0 ### Patch Changes - [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump @noble/ciphers to use audited version - [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up - Updated dependencies \[[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: - @celo/utils@8.0.1-beta.0 - @celo/base@7.0.1-beta.0 ## @celo/explorer@5.0.14-beta.0 ### Patch Changes - [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - Updated dependencies \[[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: - @celo/utils@8.0.1-beta.0 - @celo/base@7.0.1-beta.0 - @celo/contractkit@9.0.1-beta.0 - @celo/connect@6.1.1-beta.0 ## @celo/governance@5.1.5-beta.0 ### Patch Changes - [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - Updated dependencies \[[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: - @celo/utils@8.0.1-beta.0 - @celo/base@7.0.1-beta.0 - @celo/contractkit@9.0.1-beta.0 - @celo/explorer@5.0.14-beta.0 - @celo/connect@6.1.1-beta.0 ## @celo/keystores@5.0.13-beta.0 ### Patch Changes - [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - Updated dependencies \[[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733)]: - @celo/utils@8.0.1-beta.0 - @celo/wallet-local@7.0.0-beta.0 ## @celo/metadata-claims@1.0.1-beta.0 ### Patch Changes - [#470](https://github.com/celo-org/developer-tooling/pull/470) [`770bfa4`](https://github.com/celo-org/developer-tooling/commit/770bfa47af12ce8fbe0a4884481034ca26d3b29d) Thanks [@shazarre](https://github.com/shazarre)! - Backwards compatibility for existing ATTESTATIONS_SERVICE_URL claims - [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up - Updated dependencies \[[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: - @celo/utils@8.0.1-beta.0 - @celo/base@7.0.1-beta.0 ## @celo/network-utils@5.0.7-beta.0 ### Patch Changes - [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes ## @celo/phone-utils@6.0.5-beta.0 ### Patch Changes - [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up - Updated dependencies \[[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: - @celo/utils@8.0.1-beta.0 - @celo/base@7.0.1-beta.0 ## @celo/transactions-uri@5.0.13-beta.0 ### Patch Changes - [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - Updated dependencies \[[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: - @celo/base@7.0.1-beta.0 - @celo/connect@6.1.1-beta.0 ## @celo/utils@8.0.1-beta.0 ### Patch Changes - [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump @noble/ciphers to use audited version - [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up - Updated dependencies \[[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: - @celo/base@7.0.1-beta.0 ## @celo/wallet-base@7.0.0-beta.0 ### Patch Changes - [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up - Updated dependencies \[[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: - @celo/utils@8.0.1-beta.0 - @celo/base@7.0.1-beta.0 - @celo/connect@6.1.1-beta.0 ## @celo/wallet-hsm@7.0.0-beta.0 ### Patch Changes - [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump @noble/ciphers to use audited version - [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up - Updated dependencies \[[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: - @celo/base@7.0.1-beta.0 ## @celo/wallet-hsm-aws@7.0.0-beta.0 ### Patch Changes - [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump @noble/ciphers to use audited version - [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - Updated dependencies \[[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733)]: - @celo/wallet-hsm@7.0.0-beta.0 - @celo/utils@8.0.1-beta.0 - @celo/wallet-remote@7.0.0-beta.0 - @celo/wallet-base@7.0.0-beta.0 - @celo/connect@6.1.1-beta.0 ## @celo/wallet-hsm-azure@7.0.0-beta.0 ### Patch Changes - [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump @noble/ciphers to use audited version - [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - Updated dependencies \[[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: - @celo/wallet-hsm@7.0.0-beta.0 - @celo/utils@8.0.1-beta.0 - @celo/base@7.0.1-beta.0 - @celo/wallet-remote@7.0.0-beta.0 - @celo/wallet-base@7.0.0-beta.0 - @celo/connect@6.1.1-beta.0 ## @celo/wallet-hsm-gcp@7.0.0-beta.0 ### Patch Changes - [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump @noble/ciphers to use audited version - Updated dependencies \[[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733)]: - @celo/wallet-hsm@7.0.0-beta.0 - @celo/utils@8.0.1-beta.0 - @celo/wallet-remote@7.0.0-beta.0 - @celo/wallet-base@7.0.0-beta.0 - @celo/connect@6.1.1-beta.0 ## @celo/wallet-local@7.0.0-beta.0 ### Patch Changes - [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - Updated dependencies \[[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: - @celo/utils@8.0.1-beta.0 - @celo/base@7.0.1-beta.0 - @celo/wallet-base@7.0.0-beta.0 - @celo/connect@6.1.1-beta.0 ## @celo/wallet-remote@7.0.0-beta.0 ### Patch Changes - [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - Updated dependencies \[[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733)]: - @celo/utils@8.0.1-beta.0 - @celo/wallet-base@7.0.0-beta.0 - @celo/connect@6.1.1-beta.0 ## @celo/viem-account-ledger@1.0.1-beta.0 ### Patch Changes - [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up - Updated dependencies \[[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: - @celo/base@7.0.1-beta.0 --- ## PR-Codex overview This PR primarily focuses on updating various packages within the Celo ecosystem to their beta versions, enhancing dependency management, and fixing package links. ### Detailed summary - Updated `@celo/dev-utils` to `0.0.8-beta.0` - Updated several packages to their respective beta versions - Added multiple changesets for version tracking - Updated changelogs across various packages with patch changes - Improved dependency links and fixed package.json entries across modules > The following files were skipped due to too many changes: `yarn.lock` > ✨ Ask PR-Codex anything about this PR by commenting with `/codex {your question}` Co-authored-by: github-actions[bot] --- .changeset/pre.json | 16 +- packages/cli/CHANGELOG.md | 36 ++++ packages/cli/package.json | 28 +-- packages/dev-utils/CHANGELOG.md | 7 + packages/dev-utils/package.json | 4 +- packages/sdk/base/CHANGELOG.md | 10 + packages/sdk/base/package.json | 8 +- packages/sdk/connect/CHANGELOG.md | 10 + packages/sdk/connect/package.json | 12 +- packages/sdk/contractkit/CHANGELOG.md | 14 ++ packages/sdk/contractkit/package.json | 18 +- packages/sdk/cryptographic-utils/CHANGELOG.md | 14 ++ packages/sdk/cryptographic-utils/package.json | 12 +- packages/sdk/explorer/CHANGELOG.md | 12 ++ packages/sdk/explorer/package.json | 18 +- packages/sdk/governance/CHANGELOG.md | 13 ++ packages/sdk/governance/package.json | 20 +- packages/sdk/keystores/CHANGELOG.md | 10 + packages/sdk/keystores/package.json | 12 +- packages/sdk/metadata-claims/CHANGELOG.md | 14 ++ packages/sdk/metadata-claims/package.json | 14 +- packages/sdk/network-utils/CHANGELOG.md | 6 + packages/sdk/network-utils/package.json | 10 +- packages/sdk/phone-utils/CHANGELOG.md | 12 ++ packages/sdk/phone-utils/package.json | 12 +- packages/sdk/transactions-uri/CHANGELOG.md | 10 + packages/sdk/transactions-uri/package.json | 16 +- packages/sdk/utils/CHANGELOG.md | 13 ++ packages/sdk/utils/package.json | 10 +- packages/sdk/wallets/wallet-base/CHANGELOG.md | 13 ++ packages/sdk/wallets/wallet-base/package.json | 14 +- .../sdk/wallets/wallet-hsm-aws/CHANGELOG.md | 15 ++ .../sdk/wallets/wallet-hsm-aws/package.json | 18 +- .../sdk/wallets/wallet-hsm-azure/CHANGELOG.md | 16 ++ .../sdk/wallets/wallet-hsm-azure/package.json | 20 +- .../sdk/wallets/wallet-hsm-gcp/CHANGELOG.md | 13 ++ .../sdk/wallets/wallet-hsm-gcp/package.json | 12 +- packages/sdk/wallets/wallet-hsm/CHANGELOG.md | 13 ++ packages/sdk/wallets/wallet-hsm/package.json | 10 +- .../sdk/wallets/wallet-ledger/CHANGELOG.md | 59 ++++++ .../sdk/wallets/wallet-ledger/package.json | 20 +- .../sdk/wallets/wallet-local/CHANGELOG.md | 12 ++ .../sdk/wallets/wallet-local/package.json | 18 +- .../sdk/wallets/wallet-remote/CHANGELOG.md | 11 + .../sdk/wallets/wallet-remote/package.json | 14 +- packages/viem-account-ledger/CHANGELOG.md | 11 + packages/viem-account-ledger/package.json | 10 +- yarn.lock | 194 +++++++++--------- 48 files changed, 621 insertions(+), 263 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 6ca4dab40..27547d62a 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -27,5 +27,19 @@ "@celo/typescript": "0.0.1", "@celo/viem-account-ledger": "1.0.0" }, - "changesets": [] + "changesets": [ + "afraid-wombats-agree", + "brave-brooms-report", + "calm-wasps-grow", + "curly-dolls-heal", + "early-sloths-approve", + "healthy-days-reply", + "kind-cups-reflect", + "nasty-feet-clean", + "neat-seahorses-admire", + "quiet-deers-explode", + "serious-ads-allow", + "small-eyes-exercise", + "yellow-cameras-talk" + ] } diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index c7d29fbea..3e6ee85a2 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,41 @@ # Changelog +## 6.1.0-beta.0 + +### Minor Changes + +- [#470](https://github.com/celo-org/developer-tooling/pull/470) [`770bfa4`](https://github.com/celo-org/developer-tooling/commit/770bfa47af12ce8fbe0a4884481034ca26d3b29d) Thanks [@shazarre](https://github.com/shazarre)! - Introduce `validatorgroup:rpc-urls` command to list community RPC nodes + +- [#488](https://github.com/celo-org/developer-tooling/pull/488) [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - add --derivationPath to config:set for setting global deriviationPath. Usefull when using ledger devices and when generated new accounts. + +- [#488](https://github.com/celo-org/developer-tooling/pull/488) [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Add --ledgerLiveMode flag for use with --useLedger flag. This is useful for using same addresses on celocli as LedgerLive uses. + +- [#508](https://github.com/celo-org/developer-tooling/pull/508) [`8fb95c9`](https://github.com/celo-org/developer-tooling/commit/8fb95c904ee2fd96220658b067ac60193b22a2d9) Thanks [@shazarre](https://github.com/shazarre)! - Support delegation for vote signers + +- [#507](https://github.com/celo-org/developer-tooling/pull/507) [`0517378`](https://github.com/celo-org/developer-tooling/commit/0517378e1160990238b4cf670e0fed841eb953ea) Thanks [@shazarre](https://github.com/shazarre)! - --useMultiSig support for governance:withdraw command + +### Patch Changes + +- [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes + +- [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up + +- [#493](https://github.com/celo-org/developer-tooling/pull/493) [`075a270`](https://github.com/celo-org/developer-tooling/commit/075a270b98c806046226ee151de4027040ae4b05) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Fix releasegold:transfer-dollars bug with pre run checks + +- Updated dependencies [[`770bfa4`](https://github.com/celo-org/developer-tooling/commit/770bfa47af12ce8fbe0a4884481034ca26d3b29d), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: + - @celo/metadata-claims@1.0.1-beta.0 + - @celo/wallet-hsm-azure@7.0.0-beta.0 + - @celo/cryptographic-utils@5.1.2-beta.0 + - @celo/utils@8.0.1-beta.0 + - @celo/base@7.0.1-beta.0 + - @celo/wallet-ledger@7.0.0-beta.0 + - @celo/wallet-local@7.0.0-beta.0 + - @celo/contractkit@9.0.1-beta.0 + - @celo/phone-utils@6.0.5-beta.0 + - @celo/governance@5.1.5-beta.0 + - @celo/explorer@5.0.14-beta.0 + - @celo/connect@6.1.1-beta.0 + ## 6.0.0 ### Major Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index f80c62f7e..ff811563a 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "@celo/celocli", "description": "CLI Tool for transacting with the Celo protocol", - "version": "6.0.0", + "version": "6.1.0-beta.0", "author": "Celo", "license": "Apache-2.0", "repository": { @@ -42,20 +42,20 @@ }, "dependencies": { "@celo/abis": "11.0.0", - "@celo/base": "^7.0.0", + "@celo/base": "^7.0.1-beta.0", "@celo/compliance": "~1.0.25", - "@celo/connect": "^6.1.0", - "@celo/contractkit": "^9.0.0", - "@celo/cryptographic-utils": "^5.1.1", - "@celo/explorer": "^5.0.13", - "@celo/governance": "^5.1.4", + "@celo/connect": "^6.1.1-beta.0", + "@celo/contractkit": "^9.0.1-beta.0", + "@celo/cryptographic-utils": "^5.1.2-beta.0", + "@celo/explorer": "^5.0.14-beta.0", + "@celo/governance": "^5.1.5-beta.0", "@celo/identity": "^5.1.2", - "@celo/metadata-claims": "^1.0.0", - "@celo/phone-utils": "^6.0.4", - "@celo/utils": "^8.0.0", - "@celo/wallet-hsm-azure": "^6.0.4", - "@celo/wallet-ledger": "^6.0.4", - "@celo/wallet-local": "^6.0.4", + "@celo/metadata-claims": "^1.0.1-beta.0", + "@celo/phone-utils": "^6.0.5-beta.0", + "@celo/utils": "^8.0.1-beta.0", + "@celo/wallet-hsm-azure": "^7.0.0-beta.0", + "@celo/wallet-ledger": "^7.0.0-beta.0", + "@celo/wallet-local": "^7.0.0-beta.0", "@ethereumjs/util": "8.0.5", "@ledgerhq/hw-transport-node-hid": "^6.28.5", "@mento-protocol/mento-sdk": "^1.0.1", @@ -84,7 +84,7 @@ }, "devDependencies": { "@celo/celo-devchain": "^7.0.0", - "@celo/dev-utils": "0.0.7", + "@celo/dev-utils": "0.0.8-beta.0", "@celo/typescript": "workspace:^", "@types/debug": "^4.1.4", "@types/fs-extra": "^8.0.0", diff --git a/packages/dev-utils/CHANGELOG.md b/packages/dev-utils/CHANGELOG.md index ca77336c1..a20b31635 100644 --- a/packages/dev-utils/CHANGELOG.md +++ b/packages/dev-utils/CHANGELOG.md @@ -1,5 +1,12 @@ # @celo/dev-utils +## 0.0.8-beta.0 + +### Patch Changes + +- Updated dependencies [[`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de)]: + - @celo/connect@6.1.1-beta.0 + ## 0.0.7 ### Patch Changes diff --git a/packages/dev-utils/package.json b/packages/dev-utils/package.json index 7261b3207..dace2ca9f 100644 --- a/packages/dev-utils/package.json +++ b/packages/dev-utils/package.json @@ -1,6 +1,6 @@ { "name": "@celo/dev-utils", - "version": "0.0.7", + "version": "0.0.8-beta.0", "description": "util package for celo packages that should only be a devDependency", "main": "./lib/index.js", "types": "./lib/index.d.ts", @@ -21,7 +21,7 @@ }, "dependencies": { "@celo/abis": "^11.0.0", - "@celo/connect": "^6.1.0", + "@celo/connect": "^6.1.1-beta.0", "@viem/anvil": "^0.0.9", "bignumber.js": "^9.0.0", "fs-extra": "^8.1.0", diff --git a/packages/sdk/base/CHANGELOG.md b/packages/sdk/base/CHANGELOG.md index e74080d47..0ff5310e1 100644 --- a/packages/sdk/base/CHANGELOG.md +++ b/packages/sdk/base/CHANGELOG.md @@ -1,5 +1,15 @@ # @celo/base +## 7.0.1-beta.0 + +### Patch Changes + +- [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump @noble/ciphers to use audited version + +- [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes + +- [#488](https://github.com/celo-org/developer-tooling/pull/488) [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - New export type DerivationPath. Useful for when a value Must match first part of BIP44 + ## 7.0.0 ### Major Changes diff --git a/packages/sdk/base/package.json b/packages/sdk/base/package.json index 1b4108b24..f83d23fdd 100644 --- a/packages/sdk/base/package.json +++ b/packages/sdk/base/package.json @@ -1,6 +1,6 @@ { "name": "@celo/base", - "version": "7.0.0", + "version": "7.0.1-beta.0", "description": "Celo base common utils, no dependencies", "author": "Celo", "license": "Apache-2.0", @@ -9,9 +9,9 @@ "sideEffects": false, "homepage": "https://docs.celo.org/developer/tools#celo-sdk-reference-docs", "repository": { - "type": "git", - "url": "git+https:/github.com/celo-org/developer-tooling.git", - "directory": "packages/sdk/base" + "type": "git", + "url": "git+https:/github.com/celo-org/developer-tooling.git", + "directory": "packages/sdk/base" }, "scripts": { "prepublishOnly": "yarn build", diff --git a/packages/sdk/connect/CHANGELOG.md b/packages/sdk/connect/CHANGELOG.md index ab8285069..5b1c89d51 100644 --- a/packages/sdk/connect/CHANGELOG.md +++ b/packages/sdk/connect/CHANGELOG.md @@ -1,5 +1,15 @@ # @celo/connect +## 6.1.1-beta.0 + +### Patch Changes + +- [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes + +- Updated dependencies [[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: + - @celo/utils@8.0.1-beta.0 + - @celo/base@7.0.1-beta.0 + ## 6.1.0 ### Minor Changes diff --git a/packages/sdk/connect/package.json b/packages/sdk/connect/package.json index a0bdc7bbe..f0e873476 100644 --- a/packages/sdk/connect/package.json +++ b/packages/sdk/connect/package.json @@ -1,6 +1,6 @@ { "name": "@celo/connect", - "version": "6.1.0", + "version": "6.1.1-beta.0", "description": "Light Toolkit for connecting with the Celo network", "main": "./lib/index.js", "types": "./lib/index.d.ts", @@ -9,9 +9,9 @@ "license": "Apache-2.0", "homepage": "https://docs.celo.org/developer/tools", "repository": { - "type": "git", - "url": "git+https:/github.com/celo-org/developer-tooling.git", - "directory": "packages/sdk/connect" + "type": "git", + "url": "git+https:/github.com/celo-org/developer-tooling.git", + "directory": "packages/sdk/connect" }, "keywords": [ "celo", @@ -26,8 +26,8 @@ "prepublishOnly": "yarn build" }, "dependencies": { - "@celo/base": "^7.0.0", - "@celo/utils": "^8.0.0", + "@celo/base": "^7.0.1-beta.0", + "@celo/utils": "^8.0.1-beta.0", "@ethereumjs/util": "8.0.5", "@types/debug": "^4.1.5", "@types/utf8": "^2.1.6", diff --git a/packages/sdk/contractkit/CHANGELOG.md b/packages/sdk/contractkit/CHANGELOG.md index 703d030c5..50d73504b 100644 --- a/packages/sdk/contractkit/CHANGELOG.md +++ b/packages/sdk/contractkit/CHANGELOG.md @@ -1,5 +1,19 @@ # @celo/contractkit +## 9.0.1-beta.0 + +### Patch Changes + +- [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes + +- [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up + +- Updated dependencies [[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: + - @celo/utils@8.0.1-beta.0 + - @celo/base@7.0.1-beta.0 + - @celo/wallet-local@7.0.0-beta.0 + - @celo/connect@6.1.1-beta.0 + ## 9.0.0 ### Major Changes diff --git a/packages/sdk/contractkit/package.json b/packages/sdk/contractkit/package.json index cd8b2c929..ba63de6e7 100644 --- a/packages/sdk/contractkit/package.json +++ b/packages/sdk/contractkit/package.json @@ -1,6 +1,6 @@ { "name": "@celo/contractkit", - "version": "9.0.0", + "version": "9.0.1-beta.0", "description": "Celo's ContractKit to interact with Celo network", "main": "./lib/index.js", "types": "./lib/index.d.ts", @@ -9,9 +9,9 @@ "license": "Apache-2.0", "homepage": "https://docs.celo.org/developer-guide/contractkit", "repository": { - "type": "git", - "url": "git+https:/github.com/celo-org/developer-tooling.git", - "directory": "packages/sdk/contractkit" + "type": "git", + "url": "git+https:/github.com/celo-org/developer-tooling.git", + "directory": "packages/sdk/contractkit" }, "keywords": [ "celo", @@ -32,10 +32,10 @@ "dependencies": { "@celo/abis": "11.0.0", "@celo/abis-12": "npm:@celo/abis@12.0.0-canary.82", - "@celo/base": "^7.0.0", - "@celo/connect": "^6.1.0", - "@celo/utils": "^8.0.0", - "@celo/wallet-local": "^6.0.4", + "@celo/base": "^7.0.1-beta.0", + "@celo/connect": "^6.1.1-beta.0", + "@celo/utils": "^8.0.1-beta.0", + "@celo/wallet-local": "^7.0.0-beta.0", "@types/bn.js": "^5.1.0", "@types/debug": "^4.1.5", "bignumber.js": "^9.0.0", @@ -47,7 +47,7 @@ }, "devDependencies": { "@celo/celo-devchain": "^7.0.0", - "@celo/dev-utils": "0.0.7", + "@celo/dev-utils": "0.0.8-beta.0", "@celo/odis-identifiers": "^1.0.1", "@celo/typescript": "workspace:^", "@types/debug": "^4.1.5", diff --git a/packages/sdk/cryptographic-utils/CHANGELOG.md b/packages/sdk/cryptographic-utils/CHANGELOG.md index 14efcd7d5..766666a99 100644 --- a/packages/sdk/cryptographic-utils/CHANGELOG.md +++ b/packages/sdk/cryptographic-utils/CHANGELOG.md @@ -1,5 +1,19 @@ # @celo/cryptographic-utils +## 5.1.2-beta.0 + +### Patch Changes + +- [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump @noble/ciphers to use audited version + +- [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes + +- [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up + +- Updated dependencies [[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: + - @celo/utils@8.0.1-beta.0 + - @celo/base@7.0.1-beta.0 + ## 5.1.1 ### Patch Changes diff --git a/packages/sdk/cryptographic-utils/package.json b/packages/sdk/cryptographic-utils/package.json index 96a47025f..bcf4cff6c 100644 --- a/packages/sdk/cryptographic-utils/package.json +++ b/packages/sdk/cryptographic-utils/package.json @@ -1,6 +1,6 @@ { "name": "@celo/cryptographic-utils", - "version": "5.1.1", + "version": "5.1.2-beta.0", "description": "Some Celo utils for comment/data encryption, bls, and mnemonics", "author": "Celo", "license": "Apache-2.0", @@ -9,9 +9,9 @@ "sideEffects": false, "homepage": "https://github.com/celo-org/developer-tooling/tree/master/packages/sdk/cryptographic-utils", "repository": { - "type": "git", - "url": "git+https:/github.com/celo-org/developer-tooling.git", - "directory": "packages/sdk/cryptographic-utils" + "type": "git", + "url": "git+https:/github.com/celo-org/developer-tooling.git", + "directory": "packages/sdk/cryptographic-utils" }, "scripts": { "prepublishOnly": "yarn build", @@ -26,9 +26,9 @@ "lib/**/*" ], "dependencies": { - "@celo/base": "^7.0.0", + "@celo/base": "^7.0.1-beta.0", "@celo/bls12377js": "0.1.1", - "@celo/utils": "^8.0.0", + "@celo/utils": "^8.0.1-beta.0", "@noble/ciphers": "1.1.3", "@noble/curves": "1.3.0", "@noble/hashes": "1.3.3", diff --git a/packages/sdk/explorer/CHANGELOG.md b/packages/sdk/explorer/CHANGELOG.md index a8dd6640f..97b248c57 100644 --- a/packages/sdk/explorer/CHANGELOG.md +++ b/packages/sdk/explorer/CHANGELOG.md @@ -1,5 +1,17 @@ # @celo/explorer +## 5.0.14-beta.0 + +### Patch Changes + +- [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes + +- Updated dependencies [[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: + - @celo/utils@8.0.1-beta.0 + - @celo/base@7.0.1-beta.0 + - @celo/contractkit@9.0.1-beta.0 + - @celo/connect@6.1.1-beta.0 + ## 5.0.13 ### Patch Changes diff --git a/packages/sdk/explorer/package.json b/packages/sdk/explorer/package.json index 83dd27690..844de3a07 100644 --- a/packages/sdk/explorer/package.json +++ b/packages/sdk/explorer/package.json @@ -1,6 +1,6 @@ { "name": "@celo/explorer", - "version": "5.0.13", + "version": "5.0.14-beta.0", "description": "Celo's block explorer consumer", "main": "./lib/index.js", "types": "./lib/index.d.ts", @@ -8,9 +8,9 @@ "license": "Apache-2.0", "homepage": "https://docs.celo.org/developer/tools", "repository": { - "type": "git", - "url": "git+https:/github.com/celo-org/developer-tooling.git", - "directory": "packages/sdk/explorer" + "type": "git", + "url": "git+https:/github.com/celo-org/developer-tooling.git", + "directory": "packages/sdk/explorer" }, "keywords": [ "celo", @@ -26,17 +26,17 @@ "prepublishOnly": "yarn build" }, "dependencies": { - "@celo/base": "^7.0.0", - "@celo/connect": "^6.1.0", - "@celo/contractkit": "^9.0.0", - "@celo/utils": "^8.0.0", + "@celo/base": "^7.0.1-beta.0", + "@celo/connect": "^6.1.1-beta.0", + "@celo/contractkit": "^9.0.1-beta.0", + "@celo/utils": "^8.0.1-beta.0", "@types/debug": "^4.1.5", "bignumber.js": "9.0.0", "cross-fetch": "3.1.5", "debug": "^4.1.1" }, "devDependencies": { - "@celo/dev-utils": "0.0.7", + "@celo/dev-utils": "0.0.8-beta.0", "@celo/typescript": "workspace:^", "@types/debug": "^4.1.12", "fetch-mock": "^10.0.7", diff --git a/packages/sdk/governance/CHANGELOG.md b/packages/sdk/governance/CHANGELOG.md index 2324f39bb..18e9ad543 100644 --- a/packages/sdk/governance/CHANGELOG.md +++ b/packages/sdk/governance/CHANGELOG.md @@ -1,5 +1,18 @@ # @celo/governance +## 5.1.5-beta.0 + +### Patch Changes + +- [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes + +- Updated dependencies [[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: + - @celo/utils@8.0.1-beta.0 + - @celo/base@7.0.1-beta.0 + - @celo/contractkit@9.0.1-beta.0 + - @celo/explorer@5.0.14-beta.0 + - @celo/connect@6.1.1-beta.0 + ## 5.1.4 ### Patch Changes diff --git a/packages/sdk/governance/package.json b/packages/sdk/governance/package.json index 82c4f53d8..6aed33651 100644 --- a/packages/sdk/governance/package.json +++ b/packages/sdk/governance/package.json @@ -1,6 +1,6 @@ { "name": "@celo/governance", - "version": "5.1.4", + "version": "5.1.5-beta.0", "description": "Celo's governance proposals", "main": "./lib/index.js", "types": "./lib/index.d.ts", @@ -8,9 +8,9 @@ "license": "Apache-2.0", "homepage": "https://celo-sdk-docs.readthedocs.io/en/latest/governance", "repository": { - "type": "git", - "url": "git+https:/github.com/celo-org/developer-tooling.git", - "directory": "packages/sdk/governance" + "type": "git", + "url": "git+https:/github.com/celo-org/developer-tooling.git", + "directory": "packages/sdk/governance" }, "keywords": [ "celo", @@ -27,11 +27,11 @@ "dependencies": { "@celo/abis": "11.0.0", "@celo/abis-12": "npm:@celo/abis@12.0.0-canary.76", - "@celo/base": "^7.0.0", - "@celo/connect": "^6.1.0", - "@celo/contractkit": "^9.0.0", - "@celo/explorer": "^5.0.13", - "@celo/utils": "^8.0.0", + "@celo/base": "^7.0.1-beta.0", + "@celo/connect": "^6.1.1-beta.0", + "@celo/contractkit": "^9.0.1-beta.0", + "@celo/explorer": "^5.0.14-beta.0", + "@celo/utils": "^8.0.1-beta.0", "@ethereumjs/util": "8.0.5", "@types/debug": "^4.1.5", "@types/inquirer": "^6.5.0", @@ -43,7 +43,7 @@ "node": ">=8.14.2" }, "devDependencies": { - "@celo/dev-utils": "0.0.7", + "@celo/dev-utils": "0.0.8-beta.0", "@celo/typescript": "workspace:^", "@types/debug": "^4.1.12" } diff --git a/packages/sdk/keystores/CHANGELOG.md b/packages/sdk/keystores/CHANGELOG.md index 6cbd2ae93..4d366e746 100644 --- a/packages/sdk/keystores/CHANGELOG.md +++ b/packages/sdk/keystores/CHANGELOG.md @@ -1,5 +1,15 @@ # @celo/keystores +## 5.0.13-beta.0 + +### Patch Changes + +- [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes + +- Updated dependencies [[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733)]: + - @celo/utils@8.0.1-beta.0 + - @celo/wallet-local@7.0.0-beta.0 + ## 5.0.12 ### Patch Changes diff --git a/packages/sdk/keystores/package.json b/packages/sdk/keystores/package.json index 1c870cda9..fc11b67ae 100644 --- a/packages/sdk/keystores/package.json +++ b/packages/sdk/keystores/package.json @@ -1,6 +1,6 @@ { "name": "@celo/keystores", - "version": "5.0.12", + "version": "5.0.13-beta.0", "description": "keystore implementation", "author": "Celo", "license": "Apache-2.0", @@ -13,9 +13,9 @@ ], "homepage": "https://docs.celo.org/developer/tools", "repository": { - "type": "git", - "url": "git+https:/github.com/celo-org/developer-tooling.git", - "directory": "packages/sdk/keystores" + "type": "git", + "url": "git+https:/github.com/celo-org/developer-tooling.git", + "directory": "packages/sdk/keystores" }, "scripts": { "build": "yarn run --top-level tsc -b .", @@ -26,8 +26,8 @@ "prepublishOnly": "yarn build" }, "dependencies": { - "@celo/utils": "^8.0.0", - "@celo/wallet-local": "^6.0.4", + "@celo/utils": "^8.0.1-beta.0", + "@celo/wallet-local": "^7.0.0-beta.0", "ethereumjs-wallet": "^1.0.1" }, "devDependencies": { diff --git a/packages/sdk/metadata-claims/CHANGELOG.md b/packages/sdk/metadata-claims/CHANGELOG.md index c65c92867..76748406b 100644 --- a/packages/sdk/metadata-claims/CHANGELOG.md +++ b/packages/sdk/metadata-claims/CHANGELOG.md @@ -1,5 +1,19 @@ # @celo/metadata-claims +## 1.0.1-beta.0 + +### Patch Changes + +- [#470](https://github.com/celo-org/developer-tooling/pull/470) [`770bfa4`](https://github.com/celo-org/developer-tooling/commit/770bfa47af12ce8fbe0a4884481034ca26d3b29d) Thanks [@shazarre](https://github.com/shazarre)! - Backwards compatibility for existing ATTESTATIONS_SERVICE_URL claims + +- [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes + +- [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up + +- Updated dependencies [[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: + - @celo/utils@8.0.1-beta.0 + - @celo/base@7.0.1-beta.0 + ## 1.0.0 ### Major Changes diff --git a/packages/sdk/metadata-claims/package.json b/packages/sdk/metadata-claims/package.json index 51433db04..279f84ec1 100644 --- a/packages/sdk/metadata-claims/package.json +++ b/packages/sdk/metadata-claims/package.json @@ -1,12 +1,12 @@ { "name": "@celo/metadata-claims", - "version": "1.0.0", + "version": "1.0.1-beta.0", "author": "cLabs", "license": "Apache-2.0", "repository": { - "type": "git", - "url": "git+https:/github.com/celo-org/developer-tooling.git", - "directory": "packages/sdk/metadata-claims" + "type": "git", + "url": "git+https:/github.com/celo-org/developer-tooling.git", + "directory": "packages/sdk/metadata-claims" }, "keywords": [ "celo", @@ -28,8 +28,8 @@ "lint": "yarn run --top-level eslint -c .eslintrc.js " }, "dependencies": { - "@celo/base": "^7.0.0", - "@celo/utils": "^8.0.0", + "@celo/base": "^7.0.1-beta.0", + "@celo/utils": "^8.0.1-beta.0", "cross-fetch": "3.1.5", "fp-ts": "2.16.9", "io-ts": "2.0.1" @@ -37,7 +37,7 @@ "devDependencies": { "@celo/celo-devchain": "^7.0.0", "@celo/contractkit": "workspace:^", - "@celo/dev-utils": "0.0.7", + "@celo/dev-utils": "0.0.8-beta.0", "@celo/odis-identifiers": "^1.0.1", "@celo/typescript": "workspace:^", "@types/node": "18.7.6", diff --git a/packages/sdk/network-utils/CHANGELOG.md b/packages/sdk/network-utils/CHANGELOG.md index 98bbb7087..d3bd8d196 100644 --- a/packages/sdk/network-utils/CHANGELOG.md +++ b/packages/sdk/network-utils/CHANGELOG.md @@ -1,5 +1,11 @@ # @celo/network-utils +## 5.0.7-beta.0 + +### Patch Changes + +- [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes + ## 5.0.6 ### Patch Changes diff --git a/packages/sdk/network-utils/package.json b/packages/sdk/network-utils/package.json index a85567441..74f53648d 100644 --- a/packages/sdk/network-utils/package.json +++ b/packages/sdk/network-utils/package.json @@ -1,6 +1,6 @@ { "name": "@celo/network-utils", - "version": "5.0.6", + "version": "5.0.7-beta.0", "description": "Utilities for fetching static information about the Celo network", "main": "./lib/index.js", "types": "./lib/index.d.ts", @@ -8,9 +8,9 @@ "license": "Apache-2.0", "homepage": "https://docs.celo.org/developer/tools", "repository": { - "type": "git", - "url": "git+https:/github.com/celo-org/developer-tooling.git", - "directory": "packages/sdk/network-utils" + "type": "git", + "url": "git+https:/github.com/celo-org/developer-tooling.git", + "directory": "packages/sdk/network-utils" }, "keywords": [ "celo", @@ -31,7 +31,7 @@ "debug": "^4.1.1" }, "devDependencies": { - "@celo/dev-utils": "0.0.7", + "@celo/dev-utils": "0.0.8-beta.0", "@celo/typescript": "workspace:^", "@types/debug": "^4.1.12", "fetch-mock": "^10.0.7" diff --git a/packages/sdk/phone-utils/CHANGELOG.md b/packages/sdk/phone-utils/CHANGELOG.md index 1bdef1034..7ee6c0840 100644 --- a/packages/sdk/phone-utils/CHANGELOG.md +++ b/packages/sdk/phone-utils/CHANGELOG.md @@ -1,5 +1,17 @@ # @celo/phone-utils +## 6.0.5-beta.0 + +### Patch Changes + +- [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes + +- [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up + +- Updated dependencies [[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: + - @celo/utils@8.0.1-beta.0 + - @celo/base@7.0.1-beta.0 + ## 6.0.4 ### Patch Changes diff --git a/packages/sdk/phone-utils/package.json b/packages/sdk/phone-utils/package.json index 98ea8096d..62c28ceb4 100644 --- a/packages/sdk/phone-utils/package.json +++ b/packages/sdk/phone-utils/package.json @@ -1,6 +1,6 @@ { "name": "@celo/phone-utils", - "version": "6.0.4", + "version": "6.0.5-beta.0", "description": "Celo phone utils", "author": "Celo", "license": "Apache-2.0", @@ -9,9 +9,9 @@ "sideEffects": false, "homepage": "https://docs.celo.org/developer/tools", "repository": { - "type": "git", - "url": "git+https:/github.com/celo-org/developer-tooling.git", - "directory": "packages/sdk/phone-utils" + "type": "git", + "url": "git+https:/github.com/celo-org/developer-tooling.git", + "directory": "packages/sdk/phone-utils" }, "scripts": { "prepublishOnly": "yarn build", @@ -26,8 +26,8 @@ "lib/**/*" ], "dependencies": { - "@celo/base": "^7.0.0", - "@celo/utils": "^8.0.0", + "@celo/base": "^7.0.1-beta.0", + "@celo/utils": "^8.0.1-beta.0", "@types/country-data": "^0.0.0", "@types/google-libphonenumber": "^7.4.23", "@types/node": "^18.7.16", diff --git a/packages/sdk/transactions-uri/CHANGELOG.md b/packages/sdk/transactions-uri/CHANGELOG.md index 1579a4713..512d55fea 100644 --- a/packages/sdk/transactions-uri/CHANGELOG.md +++ b/packages/sdk/transactions-uri/CHANGELOG.md @@ -1,5 +1,15 @@ # @celo/transactions-uri +## 5.0.13-beta.0 + +### Patch Changes + +- [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes + +- Updated dependencies [[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: + - @celo/base@7.0.1-beta.0 + - @celo/connect@6.1.1-beta.0 + ## 5.0.12 ### Patch Changes diff --git a/packages/sdk/transactions-uri/package.json b/packages/sdk/transactions-uri/package.json index 2fc54b118..4954e75ca 100644 --- a/packages/sdk/transactions-uri/package.json +++ b/packages/sdk/transactions-uri/package.json @@ -1,6 +1,6 @@ { "name": "@celo/transactions-uri", - "version": "5.0.12", + "version": "5.0.13-beta.0", "description": "Celo's transactions uri generation", "main": "./lib/index.js", "types": "./lib/index.d.ts", @@ -8,9 +8,9 @@ "license": "Apache-2.0", "homepage": "https://docs.celo.org/developer/tools", "repository": { - "type": "git", - "url": "git+https:/github.com/celo-org/developer-tooling.git", - "directory": "packages/sdk/transactions-uri" + "type": "git", + "url": "git+https:/github.com/celo-org/developer-tooling.git", + "directory": "packages/sdk/transactions-uri" }, "keywords": [ "celo", @@ -26,8 +26,8 @@ "prepublishOnly": "yarn build" }, "dependencies": { - "@celo/base": "^7.0.0", - "@celo/connect": "^6.1.0", + "@celo/base": "^7.0.1-beta.0", + "@celo/connect": "^6.1.1-beta.0", "@types/bn.js": "^5.1.0", "@types/debug": "^4.1.5", "@types/qrcode": "^1.3.4", @@ -36,8 +36,8 @@ "web3-eth-abi": "1.10.4" }, "devDependencies": { - "@celo/contractkit": "^9.0.0", - "@celo/dev-utils": "0.0.7", + "@celo/contractkit": "^9.0.1-beta.0", + "@celo/dev-utils": "0.0.8-beta.0", "@celo/typescript": "workspace:^", "cross-fetch": "3.1.5", "dotenv": "^8.2.0", diff --git a/packages/sdk/utils/CHANGELOG.md b/packages/sdk/utils/CHANGELOG.md index 998ff90ad..f58907cc6 100644 --- a/packages/sdk/utils/CHANGELOG.md +++ b/packages/sdk/utils/CHANGELOG.md @@ -1,5 +1,18 @@ # @celo/utils +## 8.0.1-beta.0 + +### Patch Changes + +- [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump @noble/ciphers to use audited version + +- [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes + +- [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up + +- Updated dependencies [[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: + - @celo/base@7.0.1-beta.0 + ## 8.0.0 ### Major Changes diff --git a/packages/sdk/utils/package.json b/packages/sdk/utils/package.json index 58d8e5efb..d2d55f570 100644 --- a/packages/sdk/utils/package.json +++ b/packages/sdk/utils/package.json @@ -1,6 +1,6 @@ { "name": "@celo/utils", - "version": "8.0.0", + "version": "8.0.1-beta.0", "description": "Celo common utils", "author": "Celo", "license": "Apache-2.0", @@ -9,9 +9,9 @@ "sideEffects": false, "homepage": "https://docs.celo.org/developer/tools", "repository": { - "type": "git", - "url": "git+https:/github.com/celo-org/developer-tooling.git", - "directory": "packages/sdk/utils" + "type": "git", + "url": "git+https:/github.com/celo-org/developer-tooling.git", + "directory": "packages/sdk/utils" }, "scripts": { "prepublishOnly": "yarn build", @@ -26,7 +26,7 @@ "lib/**/*" ], "dependencies": { - "@celo/base": "^7.0.0", + "@celo/base": "^7.0.1-beta.0", "@ethereumjs/rlp": "^5.0.2", "@ethereumjs/util": "8.0.5", "@noble/ciphers": "1.1.3", diff --git a/packages/sdk/wallets/wallet-base/CHANGELOG.md b/packages/sdk/wallets/wallet-base/CHANGELOG.md index 7b6bec44e..f15101059 100644 --- a/packages/sdk/wallets/wallet-base/CHANGELOG.md +++ b/packages/sdk/wallets/wallet-base/CHANGELOG.md @@ -1,5 +1,18 @@ # @celo/wallet-base +## 7.0.0-beta.0 + +### Patch Changes + +- [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes + +- [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up + +- Updated dependencies [[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: + - @celo/utils@8.0.1-beta.0 + - @celo/base@7.0.1-beta.0 + - @celo/connect@6.1.1-beta.0 + ## 6.0.4 ### Patch Changes diff --git a/packages/sdk/wallets/wallet-base/package.json b/packages/sdk/wallets/wallet-base/package.json index 03283e71e..450fdf0a5 100644 --- a/packages/sdk/wallets/wallet-base/package.json +++ b/packages/sdk/wallets/wallet-base/package.json @@ -1,13 +1,13 @@ { "name": "@celo/wallet-base", - "version": "6.0.4", + "version": "7.0.0-beta.0", "description": "Wallet base implementation", "author": "Celo", "license": "Apache-2.0", "repository": { - "type": "git", - "url": "git+https:/github.com/celo-org/developer-tooling.git", - "directory": "packages/sdk/wallets/" + "type": "git", + "url": "git+https:/github.com/celo-org/developer-tooling.git", + "directory": "packages/sdk/wallets/" }, "homepage": "https://docs.celo.org", "main": "./lib/index.js", @@ -31,9 +31,9 @@ "viem": "~1.5.4" }, "dependencies": { - "@celo/base": "^7.0.0", - "@celo/connect": "^6.1.0", - "@celo/utils": "^8.0.0", + "@celo/base": "^7.0.1-beta.0", + "@celo/connect": "^6.1.1-beta.0", + "@celo/utils": "^8.0.1-beta.0", "@ethereumjs/rlp": "^5.0.2", "@ethereumjs/util": "8.0.5", "@noble/curves": "^1.3.0", diff --git a/packages/sdk/wallets/wallet-hsm-aws/CHANGELOG.md b/packages/sdk/wallets/wallet-hsm-aws/CHANGELOG.md index b8b610209..430ba86d4 100644 --- a/packages/sdk/wallets/wallet-hsm-aws/CHANGELOG.md +++ b/packages/sdk/wallets/wallet-hsm-aws/CHANGELOG.md @@ -1,5 +1,20 @@ # @celo/wallet-hsm-aws +## 7.0.0-beta.0 + +### Patch Changes + +- [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump @noble/ciphers to use audited version + +- [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes + +- Updated dependencies [[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733)]: + - @celo/wallet-hsm@7.0.0-beta.0 + - @celo/utils@8.0.1-beta.0 + - @celo/wallet-remote@7.0.0-beta.0 + - @celo/wallet-base@7.0.0-beta.0 + - @celo/connect@6.1.1-beta.0 + ## 6.0.4 ### Patch Changes diff --git a/packages/sdk/wallets/wallet-hsm-aws/package.json b/packages/sdk/wallets/wallet-hsm-aws/package.json index 8a591e37b..6df227ceb 100644 --- a/packages/sdk/wallets/wallet-hsm-aws/package.json +++ b/packages/sdk/wallets/wallet-hsm-aws/package.json @@ -1,13 +1,13 @@ { "name": "@celo/wallet-hsm-aws", - "version": "6.0.4", + "version": "7.0.0-beta.0", "description": "AWS HSM wallet implementation", "author": "Celo", "license": "Apache-2.0", "repository": { - "type": "git", - "url": "git+https:/github.com/celo-org/developer-tooling.git", - "directory": "packages/sdk/wallets/" + "type": "git", + "url": "git+https:/github.com/celo-org/developer-tooling.git", + "directory": "packages/sdk/wallets/" }, "homepage": "https://docs.celo.org", "main": "./lib/index.js", @@ -26,11 +26,11 @@ "prepublishOnly": "yarn build" }, "dependencies": { - "@celo/connect": "^6.1.0", - "@celo/utils": "^8.0.0", - "@celo/wallet-base": "^6.0.4", - "@celo/wallet-hsm": "^6.0.4", - "@celo/wallet-remote": "^6.0.4", + "@celo/connect": "^6.1.1-beta.0", + "@celo/utils": "^8.0.1-beta.0", + "@celo/wallet-base": "^7.0.0-beta.0", + "@celo/wallet-hsm": "^7.0.0-beta.0", + "@celo/wallet-remote": "^7.0.0-beta.0", "@ethereumjs/util": "8.0.5", "@types/debug": "^4.1.5", "@types/secp256k1": "^4.0.0", diff --git a/packages/sdk/wallets/wallet-hsm-azure/CHANGELOG.md b/packages/sdk/wallets/wallet-hsm-azure/CHANGELOG.md index 8829cec70..f63a0f935 100644 --- a/packages/sdk/wallets/wallet-hsm-azure/CHANGELOG.md +++ b/packages/sdk/wallets/wallet-hsm-azure/CHANGELOG.md @@ -1,5 +1,21 @@ # @celo/wallet-hsm-azure +## 7.0.0-beta.0 + +### Patch Changes + +- [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump @noble/ciphers to use audited version + +- [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes + +- Updated dependencies [[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: + - @celo/wallet-hsm@7.0.0-beta.0 + - @celo/utils@8.0.1-beta.0 + - @celo/base@7.0.1-beta.0 + - @celo/wallet-remote@7.0.0-beta.0 + - @celo/wallet-base@7.0.0-beta.0 + - @celo/connect@6.1.1-beta.0 + ## 6.0.4 ### Patch Changes diff --git a/packages/sdk/wallets/wallet-hsm-azure/package.json b/packages/sdk/wallets/wallet-hsm-azure/package.json index 8de6b682c..00331b4c0 100644 --- a/packages/sdk/wallets/wallet-hsm-azure/package.json +++ b/packages/sdk/wallets/wallet-hsm-azure/package.json @@ -1,13 +1,13 @@ { "name": "@celo/wallet-hsm-azure", - "version": "6.0.4", + "version": "7.0.0-beta.0", "description": "Azure HSM wallet implementation", "author": "Celo", "license": "Apache-2.0", "repository": { - "type": "git", - "url": "git+https:/github.com/celo-org/developer-tooling.git", - "directory": "packages/sdk/wallets/" + "type": "git", + "url": "git+https:/github.com/celo-org/developer-tooling.git", + "directory": "packages/sdk/wallets/" }, "homepage": "https://docs.celo.org", "main": "./lib/index.js", @@ -29,12 +29,12 @@ "@azure/identity": "^4.0.1", "@azure/keyvault-keys": "^4.7.2", "@azure/keyvault-secrets": "^4.7.0", - "@celo/base": "^7.0.0", - "@celo/connect": "^6.1.0", - "@celo/utils": "^8.0.0", - "@celo/wallet-base": "^6.0.4", - "@celo/wallet-hsm": "^6.0.4", - "@celo/wallet-remote": "^6.0.4", + "@celo/base": "^7.0.1-beta.0", + "@celo/connect": "^6.1.1-beta.0", + "@celo/utils": "^8.0.1-beta.0", + "@celo/wallet-base": "^7.0.0-beta.0", + "@celo/wallet-hsm": "^7.0.0-beta.0", + "@celo/wallet-remote": "^7.0.0-beta.0", "@ethereumjs/util": "8.0.5", "@types/secp256k1": "^4.0.0", "bignumber.js": "^9.0.0", diff --git a/packages/sdk/wallets/wallet-hsm-gcp/CHANGELOG.md b/packages/sdk/wallets/wallet-hsm-gcp/CHANGELOG.md index 63d2233e9..543dd0273 100644 --- a/packages/sdk/wallets/wallet-hsm-gcp/CHANGELOG.md +++ b/packages/sdk/wallets/wallet-hsm-gcp/CHANGELOG.md @@ -1,5 +1,18 @@ # @celo/wallet-hsm-gcp +## 7.0.0-beta.0 + +### Patch Changes + +- [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump @noble/ciphers to use audited version + +- Updated dependencies [[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733)]: + - @celo/wallet-hsm@7.0.0-beta.0 + - @celo/utils@8.0.1-beta.0 + - @celo/wallet-remote@7.0.0-beta.0 + - @celo/wallet-base@7.0.0-beta.0 + - @celo/connect@6.1.1-beta.0 + ## 6.0.4 ### Patch Changes diff --git a/packages/sdk/wallets/wallet-hsm-gcp/package.json b/packages/sdk/wallets/wallet-hsm-gcp/package.json index 1cb712ea5..2ecc6a664 100644 --- a/packages/sdk/wallets/wallet-hsm-gcp/package.json +++ b/packages/sdk/wallets/wallet-hsm-gcp/package.json @@ -1,6 +1,6 @@ { "name": "@celo/wallet-hsm-gcp", - "version": "6.0.4", + "version": "7.0.0-beta.0", "description": "GCP HSM wallet implementation", "author": "Celo", "license": "Apache-2.0", @@ -20,11 +20,11 @@ "prepublishOnly": "yarn build" }, "dependencies": { - "@celo/connect": "^6.1.0", - "@celo/utils": "^8.0.0", - "@celo/wallet-base": "^6.0.4", - "@celo/wallet-hsm": "^6.0.4", - "@celo/wallet-remote": "^6.0.4", + "@celo/connect": "^6.1.1-beta.0", + "@celo/utils": "^8.0.1-beta.0", + "@celo/wallet-base": "^7.0.0-beta.0", + "@celo/wallet-hsm": "^7.0.0-beta.0", + "@celo/wallet-remote": "^7.0.0-beta.0", "@ethereumjs/util": "8.0.5", "@google-cloud/kms": "~2.9.0", "@noble/curves": "^1.3.0", diff --git a/packages/sdk/wallets/wallet-hsm/CHANGELOG.md b/packages/sdk/wallets/wallet-hsm/CHANGELOG.md index 4f1c5a1a6..46da09b52 100644 --- a/packages/sdk/wallets/wallet-hsm/CHANGELOG.md +++ b/packages/sdk/wallets/wallet-hsm/CHANGELOG.md @@ -1,5 +1,18 @@ # @celo/wallet-hsm +## 7.0.0-beta.0 + +### Patch Changes + +- [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump @noble/ciphers to use audited version + +- [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes + +- [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up + +- Updated dependencies [[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: + - @celo/base@7.0.1-beta.0 + ## 6.0.4 ### Patch Changes diff --git a/packages/sdk/wallets/wallet-hsm/package.json b/packages/sdk/wallets/wallet-hsm/package.json index 9a5ebbc2c..c23998b25 100644 --- a/packages/sdk/wallets/wallet-hsm/package.json +++ b/packages/sdk/wallets/wallet-hsm/package.json @@ -1,13 +1,13 @@ { "name": "@celo/wallet-hsm", - "version": "6.0.4", + "version": "7.0.0-beta.0", "description": "HSM wallet implementation utils", "author": "Celo", "license": "Apache-2.0", "repository": { - "type": "git", - "url": "git+https:/github.com/celo-org/developer-tooling.git", - "directory": "packages/sdk/wallets/" + "type": "git", + "url": "git+https:/github.com/celo-org/developer-tooling.git", + "directory": "packages/sdk/wallets/" }, "homepage": "https://docs.celo.org", "main": "./lib/index.js", @@ -26,7 +26,7 @@ "prepublishOnly": "yarn build" }, "dependencies": { - "@celo/base": "^7.0.0", + "@celo/base": "^7.0.1-beta.0", "@ethereumjs/util": "8.0.5", "@noble/ciphers": "1.1.3", "@noble/curves": "1.3.0", diff --git a/packages/sdk/wallets/wallet-ledger/CHANGELOG.md b/packages/sdk/wallets/wallet-ledger/CHANGELOG.md index 4c4a40de9..221236b69 100644 --- a/packages/sdk/wallets/wallet-ledger/CHANGELOG.md +++ b/packages/sdk/wallets/wallet-ledger/CHANGELOG.md @@ -1,5 +1,64 @@ # @celo/wallet-ledger +## 7.0.0-beta.0 + +### Major Changes + +- [#488](https://github.com/celo-org/developer-tooling/pull/488) [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Interfaces for newLedgerWalletWithSetup and LedgerWallet constructor have changed. + + `newLedgerWalletWithSetup` replaced positional arguments for named arguments and added changeIndexes + + ```diff + newLedgerWalletWithSetup( + transport: any, + - derivationPathIndexes?: number[], + - baseDerivationPath?: string, + - ledgerAddressValidation?: AddressValidation, + - isCel2?: boolean + + options: LedgerWalletSetup + ) + + + interface LedgerWalletSetup { + + derivationPathIndexes?: number[] + + changeIndexes?: number[] + + baseDerivationPath?: string + + ledgerAddressValidation?: AddressValidation + + isCel2?: boolean + + } + + ``` + + `new LedgerWallet` moved transport to first position and added changeIndexes in 4th + + ```diff + new LedgerWallet( + + transport, + derivationPathIndexes, + baseDerivationPath, + - transport, + + changeIndexes, + ledgerAddressValidation, + isCel2 + ) + ``` + +### Minor Changes + +- [#488](https://github.com/celo-org/developer-tooling/pull/488) [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - It is now possible to iterate over both the change and address indexes to look thru more bip44 paths for addresses. just pass changeIndexes into LedgerWallet. + +### Patch Changes + +- [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes + +- [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up + +- Updated dependencies [[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: + - @celo/utils@8.0.1-beta.0 + - @celo/base@7.0.1-beta.0 + - @celo/wallet-remote@7.0.0-beta.0 + - @celo/wallet-base@7.0.0-beta.0 + - @celo/connect@6.1.1-beta.0 + ## 6.0.4 ### Patch Changes diff --git a/packages/sdk/wallets/wallet-ledger/package.json b/packages/sdk/wallets/wallet-ledger/package.json index f544fe2a5..b14293613 100644 --- a/packages/sdk/wallets/wallet-ledger/package.json +++ b/packages/sdk/wallets/wallet-ledger/package.json @@ -1,13 +1,13 @@ { "name": "@celo/wallet-ledger", - "version": "6.0.4", + "version": "7.0.0-beta.0", "description": "Ledger wallet implementation", "author": "Celo", "license": "Apache-2.0", "repository": { - "type": "git", - "url": "git+https:/github.com/celo-org/developer-tooling.git", - "directory": "packages/sdk/wallets/" + "type": "git", + "url": "git+https:/github.com/celo-org/developer-tooling.git", + "directory": "packages/sdk/wallets/" }, "homepage": "https://docs.celo.org", "main": "./lib/index.js", @@ -28,13 +28,13 @@ "prepublishOnly": "yarn build" }, "dependencies": { - "@celo/base": "^7.0.0", - "@celo/connect": "^6.1.0", + "@celo/base": "^7.0.1-beta.0", + "@celo/connect": "^6.1.1-beta.0", "@celo/hw-app-eth": "^1.0.1", "@celo/ledger-token-signer": "^0.4.0", - "@celo/utils": "^8.0.0", - "@celo/wallet-base": "^6.0.4", - "@celo/wallet-remote": "^6.0.4", + "@celo/utils": "^8.0.1-beta.0", + "@celo/wallet-base": "^7.0.0-beta.0", + "@celo/wallet-remote": "^7.0.0-beta.0", "@ethereumjs/util": "8.0.5", "@ledgerhq/errors": "^6.16.4", "@ledgerhq/hw-transport": "^6.30.6", @@ -42,7 +42,7 @@ "semver": "^7.6.0" }, "devDependencies": { - "@celo/contractkit": "^9.0.0", + "@celo/contractkit": "^9.0.1-beta.0", "@celo/typescript": "workspace:^", "@ledgerhq/hw-transport-node-hid": "^6.28.5", "@noble/curves": "^1.4.0", diff --git a/packages/sdk/wallets/wallet-local/CHANGELOG.md b/packages/sdk/wallets/wallet-local/CHANGELOG.md index f2594f7c7..f0d8db619 100644 --- a/packages/sdk/wallets/wallet-local/CHANGELOG.md +++ b/packages/sdk/wallets/wallet-local/CHANGELOG.md @@ -1,5 +1,17 @@ # @celo/wallet-local +## 7.0.0-beta.0 + +### Patch Changes + +- [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes + +- Updated dependencies [[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: + - @celo/utils@8.0.1-beta.0 + - @celo/base@7.0.1-beta.0 + - @celo/wallet-base@7.0.0-beta.0 + - @celo/connect@6.1.1-beta.0 + ## 6.0.4 ### Patch Changes diff --git a/packages/sdk/wallets/wallet-local/package.json b/packages/sdk/wallets/wallet-local/package.json index 584a3c29c..9f3425c88 100644 --- a/packages/sdk/wallets/wallet-local/package.json +++ b/packages/sdk/wallets/wallet-local/package.json @@ -1,14 +1,14 @@ { "name": "@celo/wallet-local", - "version": "6.0.4", + "version": "7.0.0-beta.0", "description": "Local wallet implementation", "author": "Celo", "license": "Apache-2.0", "repository": { - "type": "git", - "url": "git+https:/github.com/celo-org/developer-tooling.git", - "directory": "packages/sdk/wallets/" - }, + "type": "git", + "url": "git+https:/github.com/celo-org/developer-tooling.git", + "directory": "packages/sdk/wallets/" + }, "homepage": "https://docs.celo.org", "main": "./lib/index.js", "types": "./lib/index.d.ts", @@ -26,10 +26,10 @@ "prepublishOnly": "yarn build" }, "dependencies": { - "@celo/base": "^7.0.0", - "@celo/connect": "^6.1.0", - "@celo/utils": "^8.0.0", - "@celo/wallet-base": "^6.0.4", + "@celo/base": "^7.0.1-beta.0", + "@celo/connect": "^6.1.1-beta.0", + "@celo/utils": "^8.0.1-beta.0", + "@celo/wallet-base": "^7.0.0-beta.0", "@ethereumjs/util": "8.0.5" }, "devDependencies": { diff --git a/packages/sdk/wallets/wallet-remote/CHANGELOG.md b/packages/sdk/wallets/wallet-remote/CHANGELOG.md index 5fa4b321d..552ed1a70 100644 --- a/packages/sdk/wallets/wallet-remote/CHANGELOG.md +++ b/packages/sdk/wallets/wallet-remote/CHANGELOG.md @@ -1,5 +1,16 @@ # @celo/wallet-remote +## 7.0.0-beta.0 + +### Patch Changes + +- [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes + +- Updated dependencies [[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733)]: + - @celo/utils@8.0.1-beta.0 + - @celo/wallet-base@7.0.0-beta.0 + - @celo/connect@6.1.1-beta.0 + ## 6.0.4 ### Patch Changes diff --git a/packages/sdk/wallets/wallet-remote/package.json b/packages/sdk/wallets/wallet-remote/package.json index 7582ade60..1662f5c26 100644 --- a/packages/sdk/wallets/wallet-remote/package.json +++ b/packages/sdk/wallets/wallet-remote/package.json @@ -1,13 +1,13 @@ { "name": "@celo/wallet-remote", - "version": "6.0.4", + "version": "7.0.0-beta.0", "description": "Remote wallet implementation", "author": "Celo", "license": "Apache-2.0", "repository": { - "type": "git", - "url": "git+https:/github.com/celo-org/developer-tooling.git", - "directory": "packages/sdk/wallets/" + "type": "git", + "url": "git+https:/github.com/celo-org/developer-tooling.git", + "directory": "packages/sdk/wallets/" }, "homepage": "https://docs.celo.org", "main": "./lib/index.js", @@ -26,9 +26,9 @@ "prepublishOnly": "yarn build" }, "dependencies": { - "@celo/connect": "^6.1.0", - "@celo/utils": "^8.0.0", - "@celo/wallet-base": "^6.0.4", + "@celo/connect": "^6.1.1-beta.0", + "@celo/utils": "^8.0.1-beta.0", + "@celo/wallet-base": "^7.0.0-beta.0", "@ethereumjs/util": "8.0.5", "@types/debug": "^4.1.5" }, diff --git a/packages/viem-account-ledger/CHANGELOG.md b/packages/viem-account-ledger/CHANGELOG.md index f27a88d5e..ff1322333 100644 --- a/packages/viem-account-ledger/CHANGELOG.md +++ b/packages/viem-account-ledger/CHANGELOG.md @@ -1,5 +1,16 @@ # @celo/viem-account-ledger +## 1.0.1-beta.0 + +### Patch Changes + +- [#497](https://github.com/celo-org/developer-tooling/pull/497) [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes + +- [#492](https://github.com/celo-org/developer-tooling/pull/492) [`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up + +- Updated dependencies [[`2e02d94`](https://github.com/celo-org/developer-tooling/commit/2e02d943adb859b3a5b71432d1d232f3dca44733), [`79cd947`](https://github.com/celo-org/developer-tooling/commit/79cd94725582be0c62133e98b922d19ed9c0b5de), [`07c4c78`](https://github.com/celo-org/developer-tooling/commit/07c4c7854f419dd07fbf09fe966fb5b378a139d1)]: + - @celo/base@7.0.1-beta.0 + ## 1.0.0 ### Major Changes diff --git a/packages/viem-account-ledger/package.json b/packages/viem-account-ledger/package.json index 053a201d4..8c7e6fd6d 100644 --- a/packages/viem-account-ledger/package.json +++ b/packages/viem-account-ledger/package.json @@ -1,6 +1,6 @@ { "name": "@celo/viem-account-ledger", - "version": "1.0.0", + "version": "1.0.1-beta.0", "description": "Helper library to make ledger<->viem interactions easier", "type": "module", "main": "lib/index.js", @@ -10,9 +10,9 @@ "license": "Apache-2.0", "homepage": "https://docs.celo.org/developer/tools", "repository": { - "type": "git", - "url": "git+https:/github.com/celo-org/developer-tooling.git", - "directory": "packages/viem-account-ledger" + "type": "git", + "url": "git+https:/github.com/celo-org/developer-tooling.git", + "directory": "packages/viem-account-ledger" }, "keywords": [ "celo", @@ -35,7 +35,7 @@ "viem": "2.x" }, "dependencies": { - "@celo/base": "^7.0.0", + "@celo/base": "^7.0.1-beta.0", "@celo/hw-app-eth": "^1.0.1", "@celo/ledger-token-signer": "^0.4.0", "@ledgerhq/errors": "^6.16.4", diff --git a/yarn.lock b/yarn.lock index 9940cec9d..e289b3a2a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1634,7 +1634,7 @@ __metadata: languageName: node linkType: hard -"@celo/base@npm:^7.0.0, @celo/base@workspace:packages/sdk/base": +"@celo/base@npm:^7.0.1-beta.0, @celo/base@workspace:packages/sdk/base": version: 0.0.0-use.local resolution: "@celo/base@workspace:packages/sdk/base" dependencies: @@ -1677,23 +1677,23 @@ __metadata: resolution: "@celo/celocli@workspace:packages/cli" dependencies: "@celo/abis": "npm:11.0.0" - "@celo/base": "npm:^7.0.0" + "@celo/base": "npm:^7.0.1-beta.0" "@celo/celo-devchain": "npm:^7.0.0" "@celo/compliance": "npm:~1.0.25" - "@celo/connect": "npm:^6.1.0" - "@celo/contractkit": "npm:^9.0.0" - "@celo/cryptographic-utils": "npm:^5.1.1" - "@celo/dev-utils": "npm:0.0.7" - "@celo/explorer": "npm:^5.0.13" - "@celo/governance": "npm:^5.1.4" + "@celo/connect": "npm:^6.1.1-beta.0" + "@celo/contractkit": "npm:^9.0.1-beta.0" + "@celo/cryptographic-utils": "npm:^5.1.2-beta.0" + "@celo/dev-utils": "npm:0.0.8-beta.0" + "@celo/explorer": "npm:^5.0.14-beta.0" + "@celo/governance": "npm:^5.1.5-beta.0" "@celo/identity": "npm:^5.1.2" - "@celo/metadata-claims": "npm:^1.0.0" - "@celo/phone-utils": "npm:^6.0.4" + "@celo/metadata-claims": "npm:^1.0.1-beta.0" + "@celo/phone-utils": "npm:^6.0.5-beta.0" "@celo/typescript": "workspace:^" - "@celo/utils": "npm:^8.0.0" - "@celo/wallet-hsm-azure": "npm:^6.0.4" - "@celo/wallet-ledger": "npm:^6.0.4" - "@celo/wallet-local": "npm:^6.0.4" + "@celo/utils": "npm:^8.0.1-beta.0" + "@celo/wallet-hsm-azure": "npm:^7.0.0-beta.0" + "@celo/wallet-ledger": "npm:^7.0.0-beta.0" + "@celo/wallet-local": "npm:^7.0.0-beta.0" "@ethereumjs/util": "npm:8.0.5" "@ledgerhq/hw-transport-node-hid": "npm:^6.28.5" "@mento-protocol/mento-sdk": "npm:^1.0.1" @@ -1765,13 +1765,13 @@ __metadata: languageName: node linkType: hard -"@celo/connect@npm:^6.1.0, @celo/connect@workspace:packages/sdk/connect": +"@celo/connect@npm:^6.1.1-beta.0, @celo/connect@workspace:packages/sdk/connect": version: 0.0.0-use.local resolution: "@celo/connect@workspace:packages/sdk/connect" dependencies: - "@celo/base": "npm:^7.0.0" + "@celo/base": "npm:^7.0.1-beta.0" "@celo/typescript": "workspace:^" - "@celo/utils": "npm:^8.0.0" + "@celo/utils": "npm:^8.0.1-beta.0" "@ethereumjs/util": "npm:8.0.5" "@types/debug": "npm:^4.1.12" "@types/utf8": "npm:^2.1.6" @@ -1811,20 +1811,20 @@ __metadata: languageName: node linkType: hard -"@celo/contractkit@npm:^9.0.0, @celo/contractkit@workspace:^, @celo/contractkit@workspace:packages/sdk/contractkit": +"@celo/contractkit@npm:^9.0.1-beta.0, @celo/contractkit@workspace:^, @celo/contractkit@workspace:packages/sdk/contractkit": version: 0.0.0-use.local resolution: "@celo/contractkit@workspace:packages/sdk/contractkit" dependencies: "@celo/abis": "npm:11.0.0" "@celo/abis-12": "npm:@celo/abis@12.0.0-canary.82" - "@celo/base": "npm:^7.0.0" + "@celo/base": "npm:^7.0.1-beta.0" "@celo/celo-devchain": "npm:^7.0.0" - "@celo/connect": "npm:^6.1.0" - "@celo/dev-utils": "npm:0.0.7" + "@celo/connect": "npm:^6.1.1-beta.0" + "@celo/dev-utils": "npm:0.0.8-beta.0" "@celo/odis-identifiers": "npm:^1.0.1" "@celo/typescript": "workspace:^" - "@celo/utils": "npm:^8.0.0" - "@celo/wallet-local": "npm:^6.0.4" + "@celo/utils": "npm:^8.0.1-beta.0" + "@celo/wallet-local": "npm:^7.0.0-beta.0" "@types/bn.js": "npm:^5.1.0" "@types/debug": "npm:^4.1.5" "@types/node": "npm:18.7.16" @@ -1844,14 +1844,14 @@ __metadata: languageName: unknown linkType: soft -"@celo/cryptographic-utils@npm:^5.1.1, @celo/cryptographic-utils@workspace:packages/sdk/cryptographic-utils": +"@celo/cryptographic-utils@npm:^5.1.2-beta.0, @celo/cryptographic-utils@workspace:packages/sdk/cryptographic-utils": version: 0.0.0-use.local resolution: "@celo/cryptographic-utils@workspace:packages/sdk/cryptographic-utils" dependencies: - "@celo/base": "npm:^7.0.0" + "@celo/base": "npm:^7.0.1-beta.0" "@celo/bls12377js": "npm:0.1.1" "@celo/typescript": "workspace:^" - "@celo/utils": "npm:^8.0.0" + "@celo/utils": "npm:^8.0.1-beta.0" "@noble/ciphers": "npm:1.1.3" "@noble/curves": "npm:1.3.0" "@noble/hashes": "npm:1.3.3" @@ -1862,12 +1862,12 @@ __metadata: languageName: unknown linkType: soft -"@celo/dev-utils@npm:0.0.7, @celo/dev-utils@workspace:packages/dev-utils": +"@celo/dev-utils@npm:0.0.8-beta.0, @celo/dev-utils@workspace:packages/dev-utils": version: 0.0.0-use.local resolution: "@celo/dev-utils@workspace:packages/dev-utils" dependencies: "@celo/abis": "npm:^11.0.0" - "@celo/connect": "npm:^6.1.0" + "@celo/connect": "npm:^6.1.1-beta.0" "@celo/devchain-anvil": "npm:12.0.0-canary.54" "@celo/typescript": "workspace:^" "@tsconfig/recommended": "npm:^1.0.3" @@ -1891,16 +1891,16 @@ __metadata: languageName: node linkType: hard -"@celo/explorer@npm:^5.0.13, @celo/explorer@workspace:packages/sdk/explorer": +"@celo/explorer@npm:^5.0.14-beta.0, @celo/explorer@workspace:packages/sdk/explorer": version: 0.0.0-use.local resolution: "@celo/explorer@workspace:packages/sdk/explorer" dependencies: - "@celo/base": "npm:^7.0.0" - "@celo/connect": "npm:^6.1.0" - "@celo/contractkit": "npm:^9.0.0" - "@celo/dev-utils": "npm:0.0.7" + "@celo/base": "npm:^7.0.1-beta.0" + "@celo/connect": "npm:^6.1.1-beta.0" + "@celo/contractkit": "npm:^9.0.1-beta.0" + "@celo/dev-utils": "npm:0.0.8-beta.0" "@celo/typescript": "workspace:^" - "@celo/utils": "npm:^8.0.0" + "@celo/utils": "npm:^8.0.1-beta.0" "@types/debug": "npm:^4.1.12" bignumber.js: "npm:9.0.0" cross-fetch: "npm:3.1.5" @@ -1910,19 +1910,19 @@ __metadata: languageName: unknown linkType: soft -"@celo/governance@npm:^5.1.4, @celo/governance@workspace:packages/sdk/governance": +"@celo/governance@npm:^5.1.5-beta.0, @celo/governance@workspace:packages/sdk/governance": version: 0.0.0-use.local resolution: "@celo/governance@workspace:packages/sdk/governance" dependencies: "@celo/abis": "npm:11.0.0" "@celo/abis-12": "npm:@celo/abis@12.0.0-canary.76" - "@celo/base": "npm:^7.0.0" - "@celo/connect": "npm:^6.1.0" - "@celo/contractkit": "npm:^9.0.0" - "@celo/dev-utils": "npm:0.0.7" - "@celo/explorer": "npm:^5.0.13" + "@celo/base": "npm:^7.0.1-beta.0" + "@celo/connect": "npm:^6.1.1-beta.0" + "@celo/contractkit": "npm:^9.0.1-beta.0" + "@celo/dev-utils": "npm:0.0.8-beta.0" + "@celo/explorer": "npm:^5.0.14-beta.0" "@celo/typescript": "workspace:^" - "@celo/utils": "npm:^8.0.0" + "@celo/utils": "npm:^8.0.1-beta.0" "@ethereumjs/util": "npm:8.0.5" "@types/debug": "npm:^4.1.12" "@types/inquirer": "npm:^6.5.0" @@ -1980,8 +1980,8 @@ __metadata: resolution: "@celo/keystores@workspace:packages/sdk/keystores" dependencies: "@celo/typescript": "workspace:^" - "@celo/utils": "npm:^8.0.0" - "@celo/wallet-local": "npm:^6.0.4" + "@celo/utils": "npm:^8.0.1-beta.0" + "@celo/wallet-local": "npm:^7.0.0-beta.0" "@types/rimraf": "npm:3.0.2" ethereumjs-wallet: "npm:^1.0.1" rimraf: "npm:3.0.2" @@ -1995,17 +1995,17 @@ __metadata: languageName: node linkType: hard -"@celo/metadata-claims@npm:^1.0.0, @celo/metadata-claims@workspace:packages/sdk/metadata-claims": +"@celo/metadata-claims@npm:^1.0.1-beta.0, @celo/metadata-claims@workspace:packages/sdk/metadata-claims": version: 0.0.0-use.local resolution: "@celo/metadata-claims@workspace:packages/sdk/metadata-claims" dependencies: - "@celo/base": "npm:^7.0.0" + "@celo/base": "npm:^7.0.1-beta.0" "@celo/celo-devchain": "npm:^7.0.0" "@celo/contractkit": "workspace:^" - "@celo/dev-utils": "npm:0.0.7" + "@celo/dev-utils": "npm:0.0.8-beta.0" "@celo/odis-identifiers": "npm:^1.0.1" "@celo/typescript": "workspace:^" - "@celo/utils": "npm:^8.0.0" + "@celo/utils": "npm:^8.0.1-beta.0" "@types/node": "npm:18.7.6" cross-fetch: "npm:3.1.5" fetch-mock: "npm:^10.0.7" @@ -2021,7 +2021,7 @@ __metadata: version: 0.0.0-use.local resolution: "@celo/network-utils@workspace:packages/sdk/network-utils" dependencies: - "@celo/dev-utils": "npm:0.0.7" + "@celo/dev-utils": "npm:0.0.8-beta.0" "@celo/typescript": "workspace:^" "@types/debug": "npm:^4.1.12" cross-fetch: "npm:3.1.5" @@ -2060,13 +2060,13 @@ __metadata: languageName: node linkType: hard -"@celo/phone-utils@npm:^6.0.4, @celo/phone-utils@workspace:packages/sdk/phone-utils": +"@celo/phone-utils@npm:^6.0.5-beta.0, @celo/phone-utils@workspace:packages/sdk/phone-utils": version: 0.0.0-use.local resolution: "@celo/phone-utils@workspace:packages/sdk/phone-utils" dependencies: - "@celo/base": "npm:^7.0.0" + "@celo/base": "npm:^7.0.1-beta.0" "@celo/typescript": "workspace:^" - "@celo/utils": "npm:^8.0.0" + "@celo/utils": "npm:^8.0.1-beta.0" "@types/country-data": "npm:^0.0.0" "@types/google-libphonenumber": "npm:^7.4.23" "@types/node": "npm:^18.7.16" @@ -2082,10 +2082,10 @@ __metadata: version: 0.0.0-use.local resolution: "@celo/transactions-uri@workspace:packages/sdk/transactions-uri" dependencies: - "@celo/base": "npm:^7.0.0" - "@celo/connect": "npm:^6.1.0" - "@celo/contractkit": "npm:^9.0.0" - "@celo/dev-utils": "npm:0.0.7" + "@celo/base": "npm:^7.0.1-beta.0" + "@celo/connect": "npm:^6.1.1-beta.0" + "@celo/contractkit": "npm:^9.0.1-beta.0" + "@celo/dev-utils": "npm:0.0.8-beta.0" "@celo/typescript": "workspace:^" "@types/bn.js": "npm:^5.1.0" "@types/debug": "npm:^4.1.5" @@ -2125,11 +2125,11 @@ __metadata: languageName: node linkType: hard -"@celo/utils@npm:^8.0.0, @celo/utils@workspace:^, @celo/utils@workspace:packages/sdk/utils": +"@celo/utils@npm:^8.0.1-beta.0, @celo/utils@workspace:^, @celo/utils@workspace:packages/sdk/utils": version: 0.0.0-use.local resolution: "@celo/utils@workspace:packages/sdk/utils" dependencies: - "@celo/base": "npm:^7.0.0" + "@celo/base": "npm:^7.0.1-beta.0" "@celo/typescript": "workspace:^" "@ethereumjs/rlp": "npm:^5.0.2" "@ethereumjs/util": "npm:8.0.5" @@ -2150,7 +2150,7 @@ __metadata: version: 0.0.0-use.local resolution: "@celo/viem-account-ledger@workspace:packages/viem-account-ledger" dependencies: - "@celo/base": "npm:^7.0.0" + "@celo/base": "npm:^7.0.1-beta.0" "@celo/hw-app-eth": "npm:^1.0.1" "@celo/ledger-token-signer": "npm:^0.4.0" "@celo/typescript": "workspace:^" @@ -2192,14 +2192,14 @@ __metadata: languageName: node linkType: hard -"@celo/wallet-base@npm:^6.0.4, @celo/wallet-base@workspace:^, @celo/wallet-base@workspace:packages/sdk/wallets/wallet-base": +"@celo/wallet-base@npm:^7.0.0-beta.0, @celo/wallet-base@workspace:^, @celo/wallet-base@workspace:packages/sdk/wallets/wallet-base": version: 0.0.0-use.local resolution: "@celo/wallet-base@workspace:packages/sdk/wallets/wallet-base" dependencies: - "@celo/base": "npm:^7.0.0" - "@celo/connect": "npm:^6.1.0" + "@celo/base": "npm:^7.0.1-beta.0" + "@celo/connect": "npm:^6.1.1-beta.0" "@celo/typescript": "workspace:^" - "@celo/utils": "npm:^8.0.0" + "@celo/utils": "npm:^8.0.1-beta.0" "@ethereumjs/rlp": "npm:^5.0.2" "@ethereumjs/util": "npm:8.0.5" "@noble/curves": "npm:^1.3.0" @@ -2217,12 +2217,12 @@ __metadata: version: 0.0.0-use.local resolution: "@celo/wallet-hsm-aws@workspace:packages/sdk/wallets/wallet-hsm-aws" dependencies: - "@celo/connect": "npm:^6.1.0" + "@celo/connect": "npm:^6.1.1-beta.0" "@celo/typescript": "workspace:^" - "@celo/utils": "npm:^8.0.0" - "@celo/wallet-base": "npm:^6.0.4" - "@celo/wallet-hsm": "npm:^6.0.4" - "@celo/wallet-remote": "npm:^6.0.4" + "@celo/utils": "npm:^8.0.1-beta.0" + "@celo/wallet-base": "npm:^7.0.0-beta.0" + "@celo/wallet-hsm": "npm:^7.0.0-beta.0" + "@celo/wallet-remote": "npm:^7.0.0-beta.0" "@ethereumjs/util": "npm:8.0.5" "@noble/ciphers": "npm:1.1.3" "@noble/curves": "npm:1.3.0" @@ -2237,20 +2237,20 @@ __metadata: languageName: unknown linkType: soft -"@celo/wallet-hsm-azure@npm:^6.0.4, @celo/wallet-hsm-azure@workspace:packages/sdk/wallets/wallet-hsm-azure": +"@celo/wallet-hsm-azure@npm:^7.0.0-beta.0, @celo/wallet-hsm-azure@workspace:packages/sdk/wallets/wallet-hsm-azure": version: 0.0.0-use.local resolution: "@celo/wallet-hsm-azure@workspace:packages/sdk/wallets/wallet-hsm-azure" dependencies: "@azure/identity": "npm:^4.0.1" "@azure/keyvault-keys": "npm:^4.7.2" "@azure/keyvault-secrets": "npm:^4.7.0" - "@celo/base": "npm:^7.0.0" - "@celo/connect": "npm:^6.1.0" + "@celo/base": "npm:^7.0.1-beta.0" + "@celo/connect": "npm:^6.1.1-beta.0" "@celo/typescript": "workspace:^" - "@celo/utils": "npm:^8.0.0" - "@celo/wallet-base": "npm:^6.0.4" - "@celo/wallet-hsm": "npm:^6.0.4" - "@celo/wallet-remote": "npm:^6.0.4" + "@celo/utils": "npm:^8.0.1-beta.0" + "@celo/wallet-base": "npm:^7.0.0-beta.0" + "@celo/wallet-hsm": "npm:^7.0.0-beta.0" + "@celo/wallet-remote": "npm:^7.0.0-beta.0" "@ethereumjs/util": "npm:8.0.5" "@noble/ciphers": "npm:1.1.3" "@noble/curves": "npm:1.3.0" @@ -2268,12 +2268,12 @@ __metadata: version: 0.0.0-use.local resolution: "@celo/wallet-hsm-gcp@workspace:packages/sdk/wallets/wallet-hsm-gcp" dependencies: - "@celo/connect": "npm:^6.1.0" + "@celo/connect": "npm:^6.1.1-beta.0" "@celo/typescript": "workspace:^" - "@celo/utils": "npm:^8.0.0" - "@celo/wallet-base": "npm:^6.0.4" - "@celo/wallet-hsm": "npm:^6.0.4" - "@celo/wallet-remote": "npm:^6.0.4" + "@celo/utils": "npm:^8.0.1-beta.0" + "@celo/wallet-base": "npm:^7.0.0-beta.0" + "@celo/wallet-hsm": "npm:^7.0.0-beta.0" + "@celo/wallet-remote": "npm:^7.0.0-beta.0" "@ethereumjs/util": "npm:8.0.5" "@google-cloud/kms": "npm:~2.9.0" "@noble/ciphers": "npm:1.1.3" @@ -2288,11 +2288,11 @@ __metadata: languageName: unknown linkType: soft -"@celo/wallet-hsm@npm:^6.0.4, @celo/wallet-hsm@workspace:packages/sdk/wallets/wallet-hsm": +"@celo/wallet-hsm@npm:^7.0.0-beta.0, @celo/wallet-hsm@workspace:packages/sdk/wallets/wallet-hsm": version: 0.0.0-use.local resolution: "@celo/wallet-hsm@workspace:packages/sdk/wallets/wallet-hsm" dependencies: - "@celo/base": "npm:^7.0.0" + "@celo/base": "npm:^7.0.1-beta.0" "@celo/typescript": "workspace:^" "@ethereumjs/util": "npm:8.0.5" "@noble/ciphers": "npm:1.1.3" @@ -2306,19 +2306,19 @@ __metadata: languageName: unknown linkType: soft -"@celo/wallet-ledger@npm:^6.0.4, @celo/wallet-ledger@workspace:packages/sdk/wallets/wallet-ledger": +"@celo/wallet-ledger@npm:^7.0.0-beta.0, @celo/wallet-ledger@workspace:packages/sdk/wallets/wallet-ledger": version: 0.0.0-use.local resolution: "@celo/wallet-ledger@workspace:packages/sdk/wallets/wallet-ledger" dependencies: - "@celo/base": "npm:^7.0.0" - "@celo/connect": "npm:^6.1.0" - "@celo/contractkit": "npm:^9.0.0" + "@celo/base": "npm:^7.0.1-beta.0" + "@celo/connect": "npm:^6.1.1-beta.0" + "@celo/contractkit": "npm:^9.0.1-beta.0" "@celo/hw-app-eth": "npm:^1.0.1" "@celo/ledger-token-signer": "npm:^0.4.0" "@celo/typescript": "workspace:^" - "@celo/utils": "npm:^8.0.0" - "@celo/wallet-base": "npm:^6.0.4" - "@celo/wallet-remote": "npm:^6.0.4" + "@celo/utils": "npm:^8.0.1-beta.0" + "@celo/wallet-base": "npm:^7.0.0-beta.0" + "@celo/wallet-remote": "npm:^7.0.0-beta.0" "@ethereumjs/util": "npm:8.0.5" "@ledgerhq/errors": "npm:^6.16.4" "@ledgerhq/hw-transport": "npm:^6.30.6" @@ -2348,15 +2348,15 @@ __metadata: languageName: node linkType: hard -"@celo/wallet-local@npm:^6.0.4, @celo/wallet-local@workspace:packages/sdk/wallets/wallet-local": +"@celo/wallet-local@npm:^7.0.0-beta.0, @celo/wallet-local@workspace:packages/sdk/wallets/wallet-local": version: 0.0.0-use.local resolution: "@celo/wallet-local@workspace:packages/sdk/wallets/wallet-local" dependencies: - "@celo/base": "npm:^7.0.0" - "@celo/connect": "npm:^6.1.0" + "@celo/base": "npm:^7.0.1-beta.0" + "@celo/connect": "npm:^6.1.1-beta.0" "@celo/typescript": "workspace:^" - "@celo/utils": "npm:^8.0.0" - "@celo/wallet-base": "npm:^6.0.4" + "@celo/utils": "npm:^8.0.1-beta.0" + "@celo/wallet-base": "npm:^7.0.0-beta.0" "@ethereumjs/util": "npm:8.0.5" "@types/debug": "npm:^4.1.12" debug: "npm:^4.3.5" @@ -2365,14 +2365,14 @@ __metadata: languageName: unknown linkType: soft -"@celo/wallet-remote@npm:^6.0.4, @celo/wallet-remote@workspace:^, @celo/wallet-remote@workspace:packages/sdk/wallets/wallet-remote": +"@celo/wallet-remote@npm:^7.0.0-beta.0, @celo/wallet-remote@workspace:^, @celo/wallet-remote@workspace:packages/sdk/wallets/wallet-remote": version: 0.0.0-use.local resolution: "@celo/wallet-remote@workspace:packages/sdk/wallets/wallet-remote" dependencies: - "@celo/connect": "npm:^6.1.0" + "@celo/connect": "npm:^6.1.1-beta.0" "@celo/typescript": "workspace:^" - "@celo/utils": "npm:^8.0.0" - "@celo/wallet-base": "npm:^6.0.4" + "@celo/utils": "npm:^8.0.1-beta.0" + "@celo/wallet-base": "npm:^7.0.0-beta.0" "@ethereumjs/util": "npm:8.0.5" "@types/debug": "npm:^4.1.5" web3: "npm:1.10.4"