-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Readme and package.json fixes #497
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
🦋 Changeset detectedLatest commit: a4d517f The changes in this PR will be included in the next version bump. This PR includes changesets to release 23 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
aaronmgdr
force-pushed
the
aaronmgdr/readme
branch
from
January 7, 2025 15:55
1267f78
to
340276d
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #497 +/- ##
=======================================
Coverage 76.09% 76.09%
=======================================
Files 244 244
Lines 10253 10253
Branches 1626 1609 -17
=======================================
Hits 7802 7802
- Misses 2338 2371 +33
+ Partials 113 80 -33
|
shazarre
approved these changes
Jan 8, 2025
Merged
aaronmgdr
pushed a commit
that referenced
this pull request
Jan 14, 2025
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](#488) [`07c4c78`](07c4c78) 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](#488) [`07c4c78`](07c4c78) 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](#497) [`79cd947`](79cd947) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - [#492](#492) [`2e02d94`](2e02d94) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up - Updated dependencies \[[`2e02d94`](2e02d94), [`79cd947`](79cd947), [`2e02d94`](2e02d94), [`07c4c78`](07c4c78)]: - @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](#470) [`770bfa4`](770bfa4) Thanks [@shazarre](https://github.com/shazarre)! - Introduce `validatorgroup:rpc-urls` command to list community RPC nodes - [#488](#488) [`07c4c78`](07c4c78) 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](#488) [`07c4c78`](07c4c78) 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](#508) [`8fb95c9`](8fb95c9) Thanks [@shazarre](https://github.com/shazarre)! - Support delegation for vote signers - [#507](#507) [`0517378`](0517378) Thanks [@shazarre](https://github.com/shazarre)! - --useMultiSig support for governance:withdraw command ### Patch Changes - [#497](#497) [`79cd947`](79cd947) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - [#492](#492) [`2e02d94`](2e02d94) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up - [#493](#493) [`075a270`](075a270) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Fix releasegold:transfer-dollars bug with pre run checks - Updated dependencies \[[`770bfa4`](770bfa4), [`2e02d94`](2e02d94), [`79cd947`](79cd947), [`2e02d94`](2e02d94), [`07c4c78`](07c4c78), [`07c4c78`](07c4c78), [`07c4c78`](07c4c78)]: - @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`](79cd947)]: - @celo/connect@6.1.1-beta.0 ## @celo/base@7.0.1-beta.0 ### Patch Changes - [#492](#492) [`2e02d94`](2e02d94) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump @noble/ciphers to use audited version - [#497](#497) [`79cd947`](79cd947) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - [#488](#488) [`07c4c78`](07c4c78) 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](#497) [`79cd947`](79cd947) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - Updated dependencies \[[`2e02d94`](2e02d94), [`79cd947`](79cd947), [`2e02d94`](2e02d94), [`07c4c78`](07c4c78)]: - @celo/utils@8.0.1-beta.0 - @celo/base@7.0.1-beta.0 ## @celo/contractkit@9.0.1-beta.0 ### Patch Changes - [#497](#497) [`79cd947`](79cd947) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - [#492](#492) [`2e02d94`](2e02d94) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up - Updated dependencies \[[`2e02d94`](2e02d94), [`79cd947`](79cd947), [`2e02d94`](2e02d94), [`07c4c78`](07c4c78)]: - @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](#492) [`2e02d94`](2e02d94) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump @noble/ciphers to use audited version - [#497](#497) [`79cd947`](79cd947) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - [#492](#492) [`2e02d94`](2e02d94) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up - Updated dependencies \[[`2e02d94`](2e02d94), [`79cd947`](79cd947), [`2e02d94`](2e02d94), [`07c4c78`](07c4c78)]: - @celo/utils@8.0.1-beta.0 - @celo/base@7.0.1-beta.0 ## @celo/explorer@5.0.14-beta.0 ### Patch Changes - [#497](#497) [`79cd947`](79cd947) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - Updated dependencies \[[`2e02d94`](2e02d94), [`79cd947`](79cd947), [`2e02d94`](2e02d94), [`07c4c78`](07c4c78)]: - @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](#497) [`79cd947`](79cd947) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - Updated dependencies \[[`2e02d94`](2e02d94), [`79cd947`](79cd947), [`2e02d94`](2e02d94), [`07c4c78`](07c4c78)]: - @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](#497) [`79cd947`](79cd947) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - Updated dependencies \[[`2e02d94`](2e02d94), [`79cd947`](79cd947), [`2e02d94`](2e02d94)]: - @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](#470) [`770bfa4`](770bfa4) Thanks [@shazarre](https://github.com/shazarre)! - Backwards compatibility for existing ATTESTATIONS_SERVICE_URL claims - [#497](#497) [`79cd947`](79cd947) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - [#492](#492) [`2e02d94`](2e02d94) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up - Updated dependencies \[[`2e02d94`](2e02d94), [`79cd947`](79cd947), [`2e02d94`](2e02d94), [`07c4c78`](07c4c78)]: - @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](#497) [`79cd947`](79cd947) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes ## @celo/phone-utils@6.0.5-beta.0 ### Patch Changes - [#497](#497) [`79cd947`](79cd947) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - [#492](#492) [`2e02d94`](2e02d94) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up - Updated dependencies \[[`2e02d94`](2e02d94), [`79cd947`](79cd947), [`2e02d94`](2e02d94), [`07c4c78`](07c4c78)]: - @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](#497) [`79cd947`](79cd947) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - Updated dependencies \[[`2e02d94`](2e02d94), [`79cd947`](79cd947), [`07c4c78`](07c4c78)]: - @celo/base@7.0.1-beta.0 - @celo/connect@6.1.1-beta.0 ## @celo/utils@8.0.1-beta.0 ### Patch Changes - [#492](#492) [`2e02d94`](2e02d94) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump @noble/ciphers to use audited version - [#497](#497) [`79cd947`](79cd947) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - [#492](#492) [`2e02d94`](2e02d94) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up - Updated dependencies \[[`2e02d94`](2e02d94), [`79cd947`](79cd947), [`07c4c78`](07c4c78)]: - @celo/base@7.0.1-beta.0 ## @celo/wallet-base@7.0.0-beta.0 ### Patch Changes - [#497](#497) [`79cd947`](79cd947) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - [#492](#492) [`2e02d94`](2e02d94) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up - Updated dependencies \[[`2e02d94`](2e02d94), [`79cd947`](79cd947), [`2e02d94`](2e02d94), [`07c4c78`](07c4c78)]: - @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](#492) [`2e02d94`](2e02d94) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump @noble/ciphers to use audited version - [#497](#497) [`79cd947`](79cd947) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - [#492](#492) [`2e02d94`](2e02d94) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up - Updated dependencies \[[`2e02d94`](2e02d94), [`79cd947`](79cd947), [`07c4c78`](07c4c78)]: - @celo/base@7.0.1-beta.0 ## @celo/wallet-hsm-aws@7.0.0-beta.0 ### Patch Changes - [#492](#492) [`2e02d94`](2e02d94) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump @noble/ciphers to use audited version - [#497](#497) [`79cd947`](79cd947) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - Updated dependencies \[[`2e02d94`](2e02d94), [`79cd947`](79cd947), [`2e02d94`](2e02d94)]: - @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](#492) [`2e02d94`](2e02d94) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump @noble/ciphers to use audited version - [#497](#497) [`79cd947`](79cd947) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - Updated dependencies \[[`2e02d94`](2e02d94), [`79cd947`](79cd947), [`2e02d94`](2e02d94), [`07c4c78`](07c4c78)]: - @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](#492) [`2e02d94`](2e02d94) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump @noble/ciphers to use audited version - Updated dependencies \[[`2e02d94`](2e02d94), [`79cd947`](79cd947), [`2e02d94`](2e02d94)]: - @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](#497) [`79cd947`](79cd947) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - Updated dependencies \[[`2e02d94`](2e02d94), [`79cd947`](79cd947), [`2e02d94`](2e02d94), [`07c4c78`](07c4c78)]: - @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](#497) [`79cd947`](79cd947) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - Updated dependencies \[[`2e02d94`](2e02d94), [`79cd947`](79cd947), [`2e02d94`](2e02d94)]: - @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](#497) [`79cd947`](79cd947) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - chore: package.json link fixes - [#492](#492) [`2e02d94`](2e02d94) Thanks [@aaronmgdr](https://github.com/aaronmgdr)! - Bump dependncies up - Updated dependencies \[[`2e02d94`](2e02d94), [`79cd947`](79cd947), [`07c4c78`](07c4c78)]: - @celo/base@7.0.1-beta.0 <!-- start pr-codex --> --- ## 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}` <!-- end pr-codex --> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Other changes
typos on root readme.md
fixes #486
PR-Codex overview
This PR focuses on updating the
repository
field in multiplepackage.json
files across various packages to a new format that specifies the Git repository type and directory structure. It also includes updates to theREADME.md
files to reflect these changes.Detailed summary
repository
field inpackage.json
files to use an object format for multiple packages.metadata-claims
connect
explorer
network-utils
contractkit
viem-account-ledger
transactions-uri
governance
wallets
(all sub-packages)utils
keystores
phone-utils
base
cli
cryptographic-utils
packages/sdk/metadata-claims/README.md
.README.md
to include@celo/metadata-claims
and corrected@celo/transactions-uri
link.