abitype icon indicating copy to clipboard operation
abitype copied to clipboard

Strict TypeScript types for Ethereum ABIs

Results 2 abitype issues
Sort by recently updated
recently updated
newest added

## Description This PR aligns the following `AbiFallback.inputs` type between Zod schema and `abitype` ```ts type Left = AbiFallback['inputs']; // readonly [] type Right = z.infer['inputs']; // never[] ``` After:...

## Description This PR adds support for EIP712 typed data signatures. Essentially the typed data human readable signature is represented as a struct signature. This however differs from Abi structs,...