mev-inspect
Version:
A JS port of 'mev-inspect-py' optimised for ease of use.
37 lines • 720 B
TypeScript
declare const abi: ({
name: string;
inputs: {
type: string;
name: string;
indexed: boolean;
}[];
anonymous: boolean;
type: string;
outputs?: undefined;
stateMutability?: undefined;
} | {
outputs: never[];
inputs: {
type: string;
name: string;
}[];
stateMutability: string;
type: string;
name?: undefined;
anonymous?: undefined;
} | {
name: string;
outputs: {
type: string;
name: string;
}[];
inputs: {
type: string;
name: string;
}[];
stateMutability: string;
type: string;
anonymous?: undefined;
})[];
export default abi;
//# sourceMappingURL=curveV1.d.ts.map