refactor(cli): migrate base, utils, test-utils to viem [4/8]#769
refactor(cli): migrate base, utils, test-utils to viem [4/8]#769pahor167 wants to merge 1 commit intopahor/viem-C-sdk-peripheralsfrom
Conversation
- base.ts: remove web3 from base command class - utils/cli.ts: replace displaySendTx with displayViemTx - utils/command.ts: migrate transaction helpers to viem - utils/checks.ts, governance.ts, release-gold-base.ts: remove web3 types - test-utils/: chain-setup, cliUtils, mockRpc updated for viem - Remove exchange.ts and exchange.test.ts (dead code)
|
There was a problem hiding this comment.
π‘ Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 6929a3371c
βΉοΈ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with π.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
|
|
||
| // TODO: How can we deploy contracts with the Celo provider w/o a CeloTransactionObject? | ||
| export async function displayWeb3Tx(name: string, txObj: any, tx?: Omit<CeloTx, 'data'>) { | ||
| export async function displayTx(name: string, txObj: any, tx?: Omit<CeloTx, 'data'>) { |
There was a problem hiding this comment.
Keep
displaySendTx exported for existing commands
Renaming displaySendTx to displayTx here breaks the current command surface because many command modules still import and call displaySendTx (for example packages/cli/src/commands/account/register.ts, packages/cli/src/commands/governance/approve.ts, and numerous others in this commit state). Without a compatibility export, TypeScript build/runtime module loading for those commands fails until every caller is migrated in the same change.
Useful? React with πΒ / π.
| async newProvider(): Promise<Provider> { | ||
| if (!this._provider) { | ||
| const nodeUrl = await this.getNodeUrl() | ||
| this._provider = getProviderForKit(nodeUrl, undefined) | ||
| } | ||
| return this._provider | ||
| } |
There was a problem hiding this comment.
Preserve
BaseCommand.getWeb3 until callers are migrated
This refactor removes the getWeb3() API from BaseCommand, but multiple command files in this commit still invoke this.getWeb3() (e.g. commands/account/lock.ts, commands/account/unlock.ts, and governance commands). That leaves those commands broken as soon as they execute, so this change needs a temporary shim or an atomic migration of all call sites.
Useful? React with πΒ / π.
| export const createSafe = async ( | ||
| provider: Provider, | ||
| signer: StrongAddress, | ||
| safeAddress: StrongAddress | ||
| ) => { |
There was a problem hiding this comment.
Re-export old Safe helpers while governance commands still use them
Replacing createSafeFromWeb3 / safeTransactionMetadataFromCeloTransactionObject with new names here is a breaking API change for existing governance commands that still import the old symbols (commands/governance/approve.ts, propose.ts, withdraw.ts in this commit). Those imports will fail unless these legacy exports remain available until callers are updated.
Useful? React with πΒ / π.
Stack
Changes
base.ts: remove web3 from base command classutils/cli.ts: replacedisplaySendTxwithdisplayViemTxutils/command.ts: migrate transaction helpers to viemutils/checks.ts,governance.ts,release-gold-base.ts: remove web3 typestest-utils/: chain-setup, cliUtils, mockRpc updated for viemexchange.tsandexchange.test.ts(dead code)Part of the web3 β viem migration. No CI requirement on this PR.
PR-Codex overview
This PR primarily focuses on refactoring the codebase to replace instances of
Web3with a newProviderinterface, enhancing consistency and functionality across the code. It also removes outdated methods and optimizes the transaction handling process.Detailed summary
exchange.tsandexchange.test.tsfiles.tsconfig.jsonto exclude all test files.requireCallfunction fromrequire.ts.Web3withProviderin several files.viemactions for receipts.Provider.Providerinterface.