Johannes Kares

Results 18 comments of Johannes Kares

Here's how I solved it at the end: ```typescript import { DefenderRelayProvider } from "defender-relay-client/lib/web3"; const openZeppelinDefenderCredentials = { apiKey: process.env.OPENZEPPELIN_DEFENDER_API_KEY ?? "", apiSecret: process.env.OPENZEPPELIN_DEFENDER_SECRET ?? "", }; const web3...

My current workaround: ```javascript export const getSingle = (input: T[] | T | null) => { if (input === null) { throw new Error("Input is null"); } if (Array.isArray(input)) {...

Yes, this would be great, I never understood how people can work without this setting.

I switched over to using wagmi's `getContract`. You can just commit the json ABI and don't need a separate generation step. https://github.com/wagmi-dev/abitype/discussions/48#discussioncomment-4031467

Hey, thanks for looking into it, having the same problem!

@yacaovsnc Thanks for update. Also using it in a Release pipeline.

> this also happens in numeric with postgres. Seems to be related how drizzle handle relations using with: in the executed query, it uses JSON_AGG and JSON_BUILD_ARRAY, for example: >...