From 4a09a323bd4841738950200b46ce6d566b72ca0f Mon Sep 17 00:00:00 2001 From: Arthur Abeilice Date: Mon, 4 May 2026 21:40:20 -0300 Subject: [PATCH] chore(codegen): drop @wagmi/cli actions plugin (no callers in src/, generated file shrinks ~63%) --- wagmi.config.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/wagmi.config.ts b/wagmi.config.ts index b3e620c..157357e 100644 --- a/wagmi.config.ts +++ b/wagmi.config.ts @@ -1,5 +1,4 @@ import { defineConfig } from '@wagmi/cli'; -import { actions } from '@wagmi/cli/plugins'; import { readFileSync } from 'node:fs'; import { resolve } from 'node:path'; @@ -28,5 +27,4 @@ export default defineConfig({ abi: loadAbi('lib/mock/mockToken.sol/MockToken.json') as never, }, ], - plugins: [actions()], });