Skip to content

chore(deps): bump tar and @celo/contractkit - #5

Open
dependabot[bot] wants to merge 1 commit into
PLGV2from
dependabot/npm_and_yarn/multi-2b311e739f
Open

chore(deps): bump tar and @celo/contractkit#5
dependabot[bot] wants to merge 1 commit into
PLGV2from
dependabot/npm_and_yarn/multi-2b311e739f

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 24, 2026

Copy link
Copy Markdown

Removes tar. It's no longer used after updating ancestor dependency @celo/contractkit. These dependencies need to be updated together.

Removes tar

Updates @celo/contractkit from 10.0.3 to 11.0.0

Release notes

Sourced from @​celo/contractkit's releases.

@​celo/contractkit@​11.0.0

Major Changes

  • #777 f5482b5 Thanks @​martinvol! - Remove ContractKit's dependency on the Mento Reserve and StableToken ABIs and repoint the Celo stable tokens onto a viem-native ABI.

    • Removed the ReserveWrapper, CeloContract.Reserve, ContractKit.getReserve(), the reserve field of NetworkConfig, and the ReserveProxy init entry.
    • StableToken / StableTokenEUR / StableTokenBRL now use a composed stableTokenViemAbi (viem's erc20Abi + transferWithComment from ICeloToken + the StableToken admin/initialize methods) instead of @celo/abis stableTokenABI/reserveABI. This drops the Mento ABI dependency without waiting on a new @celo/abis release.
  • #780 95a84a4 Thanks @​pahor167! - Remove rpc-contract.ts, PromiEvent, and legacy Contract interface from @​celo/connect

    • Deleted rpc-contract.ts, promi-event.ts, and viem-contract.ts — replaced with native viem getContract() / GetContractReturnType
    • CeloTxObject.send() now returns Promise<string> (tx hash) instead of PromiEvent<CeloTxReceipt>
    • Removed Connection.createContract() — use Connection.getCeloContract() instead
    • Removed PromiEvent<T> and Contract interfaces from types
    • Removed the public exports CeloTransactionObject, toTransactionObject, CeloTxObject, RpcCaller, and TransactionResult (the old celo-transaction-object, rpc-caller, and tx-result modules)
    • Contract deployment rewritten to use viem's encodeDeployData + connection.sendTransaction()
    • All contractkit wrappers, CLI commands, and test files updated

    Breaking changes in @​celo/contractkit

    • kit.sendTransaction() now returns Promise<\0x${string}`>(the transaction hash) instead of aTransactionResult; use kit.connection.viemClient.waitForTransactionReceipt({ hash })` to wait for inclusion
    • All wrapper write methods now return the transaction hash (a Promise<string>) instead of CeloTransactionObject<T>; replace .send() / .sendAndWaitForReceipt() with await kit.connection.viemClient.waitForTransactionReceipt({ hash })
    • Removed the deprecated kit.web3 shim — use kit.connection.viemClient (reads) and wrapper methods (writes)
    • Removed kit.isListening() and kit.isSyncing() (no direct replacement; query the node via kit.connection.viemClient.request({ method: 'net_listening' }) or { method: 'eth_syncing' } if needed)
    • Removed the deprecated kit.gasPriceSuggestionMultiplier property
    • Removed the CeloToken type re-export — use CeloTokenContract
  • #780 95a84a4 Thanks @​pahor167! - Remove the deprecated kit.web3 shim and migrate contractkit to viem-native contract interaction. Use kit.connection.viemClient for reads and the wrapper methods for writes. Adds newKitFromProvider() as the recommended factory for building a kit from an EIP-1193 provider.

Minor Changes

  • #743 a695c5c Thanks @​aaronmgdr! - Add submitTransaction method to MultiSigWrapper to submit transactions to multisig without automatic confirmation. This complements the existing submitOrConfirmTransaction method by providing more granular control over the submission process.

  • #780 95a84a4 Thanks @​pahor167! - Improved type safety: Added explicit return types to wrapper methods that previously emitted CeloTransactionObject<any> or Promise<any> in their declaration files, replacing untyped any results with concrete types. This provides better IDE autocompletion and compile-time type checking for consumers of @celo/contractkit.

  • #780 95a84a4 Thanks @​pahor167! - Migrate internal contract interaction from the web3-style RPC Contract to viem-native getContract()

    • @celo/connect exposes CeloContract<TAbi> (viem's GetContractReturnType) and Connection.getCeloContract() for type-safe .read/.write/.estimateGas access.
    • All 36 ContractKit wrappers now call the viem contract namespaces directly.
    • @celo/explorer: BlockExplorer.tryParseTx now accepts viem's Transaction, and getBlockByHash/getBlockByNumber return viem block shapes. This is a breaking change for direct callers of these methods (hence the minor bump).
    • CLI commands and dev-utils updated to the new API.

Patch Changes

Changelog

Sourced from @​celo/contractkit's changelog.

11.0.0

Major Changes

  • #777 f5482b5 Thanks @​martinvol! - Remove ContractKit's dependency on the Mento Reserve and StableToken ABIs and repoint the Celo stable tokens onto a viem-native ABI.

    • Removed the ReserveWrapper, CeloContract.Reserve, ContractKit.getReserve(), the reserve field of NetworkConfig, and the ReserveProxy init entry.
    • StableToken / StableTokenEUR / StableTokenBRL now use a composed stableTokenViemAbi (viem's erc20Abi + transferWithComment from ICeloToken + the StableToken admin/initialize methods) instead of @celo/abis stableTokenABI/reserveABI. This drops the Mento ABI dependency without waiting on a new @celo/abis release.
  • #780 95a84a4 Thanks @​pahor167! - Remove rpc-contract.ts, PromiEvent, and legacy Contract interface from @​celo/connect

    • Deleted rpc-contract.ts, promi-event.ts, and viem-contract.ts — replaced with native viem getContract() / GetContractReturnType
    • CeloTxObject.send() now returns Promise<string> (tx hash) instead of PromiEvent<CeloTxReceipt>
    • Removed Connection.createContract() — use Connection.getCeloContract() instead
    • Removed PromiEvent<T> and Contract interfaces from types
    • Removed the public exports CeloTransactionObject, toTransactionObject, CeloTxObject, RpcCaller, and TransactionResult (the old celo-transaction-object, rpc-caller, and tx-result modules)
    • Contract deployment rewritten to use viem's encodeDeployData + connection.sendTransaction()
    • All contractkit wrappers, CLI commands, and test files updated

    Breaking changes in @​celo/contractkit

    • kit.sendTransaction() now returns Promise<\0x${string}`>(the transaction hash) instead of aTransactionResult; use kit.connection.viemClient.waitForTransactionReceipt({ hash })` to wait for inclusion
    • All wrapper write methods now return the transaction hash (a Promise<string>) instead of CeloTransactionObject<T>; replace .send() / .sendAndWaitForReceipt() with await kit.connection.viemClient.waitForTransactionReceipt({ hash })
    • Removed the deprecated kit.web3 shim — use kit.connection.viemClient (reads) and wrapper methods (writes)
    • Removed kit.isListening() and kit.isSyncing() (no direct replacement; query the node via kit.connection.viemClient.request({ method: 'net_listening' }) or { method: 'eth_syncing' } if needed)
    • Removed the deprecated kit.gasPriceSuggestionMultiplier property
    • Removed the CeloToken type re-export — use CeloTokenContract
  • #780 95a84a4 Thanks @​pahor167! - Remove the deprecated kit.web3 shim and migrate contractkit to viem-native contract interaction. Use kit.connection.viemClient for reads and the wrapper methods for writes. Adds newKitFromProvider() as the recommended factory for building a kit from an EIP-1193 provider.

Minor Changes

  • #743 a695c5c Thanks @​aaronmgdr! - Add submitTransaction method to MultiSigWrapper to submit transactions to multisig without automatic confirmation. This complements the existing submitOrConfirmTransaction method by providing more granular control over the submission process.

  • #780 95a84a4 Thanks @​pahor167! - Improved type safety: Added explicit return types to wrapper methods that previously emitted CeloTransactionObject<any> or Promise<any> in their declaration files, replacing untyped any results with concrete types. This provides better IDE autocompletion and compile-time type checking for consumers of @celo/contractkit.

  • #780 95a84a4 Thanks @​pahor167! - Migrate internal contract interaction from the web3-style RPC Contract to viem-native getContract()

    • @celo/connect exposes CeloContract<TAbi> (viem's GetContractReturnType) and Connection.getCeloContract() for type-safe .read/.write/.estimateGas access.
    • All 36 ContractKit wrappers now call the viem contract namespaces directly.
    • @celo/explorer: BlockExplorer.tryParseTx now accepts viem's Transaction, and getBlockByHash/getBlockByNumber return viem block shapes. This is a breaking change for direct callers of these methods (hence the minor bump).
    • CLI commands and dev-utils updated to the new API.

Patch Changes

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for @​celo/contractkit since your current version.


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Removes [tar](https://github.com/isaacs/node-tar). It's no longer used after updating ancestor dependency [@celo/contractkit](https://github.com/celo-org/developer-tooling/tree/HEAD/packages/sdk/contractkit). These dependencies need to be updated together.


Removes `tar`

Updates `@celo/contractkit` from 10.0.3 to 11.0.0
- [Release notes](https://github.com/celo-org/developer-tooling/releases)
- [Changelog](https://github.com/celo-org/developer-tooling/blob/master/packages/sdk/contractkit/CHANGELOG.md)
- [Commits](https://github.com/celo-org/developer-tooling/commits/@celo/contractkit@11.0.0/packages/sdk/contractkit)

---
updated-dependencies:
- dependency-name: tar
  dependency-version:
  dependency-type: indirect
- dependency-name: "@celo/contractkit"
  dependency-version: 11.0.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 24, 2026
@socket-security

Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updated@​celo/​contractkit@​10.0.3 ⏵ 11.0.096 +210099 +193 +5100

View full report

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants