mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-03 22:33:07 +00:00
19 lines
424 B
TypeScript
19 lines
424 B
TypeScript
import { defineConfig } from "@wagmi/cli";
|
|
import { foundry } from "@wagmi/cli/plugins";
|
|
|
|
export default defineConfig({
|
|
out: "src/contract/wagmi/generated.ts",
|
|
plugins: [
|
|
foundry({
|
|
project: "./waku-rlnv2-contract",
|
|
artifacts: "out",
|
|
include: [
|
|
"WakuRlnV2.sol/**",
|
|
"Membership.sol/**",
|
|
"LinearPriceCalculator.sol/**",
|
|
"IPriceCalculator.sol/**"
|
|
]
|
|
})
|
|
]
|
|
});
|