Skip to main content

AbiFunction type

Signature:

export declare type AbiFunction = {
name: string;
inputs: z.infer<typeof AbiTypeSchema>[];
outputs: z.infer<typeof AbiTypeSchema>[];
signature: string;
stateMutability: string;
comment: string;
};