1 | import { AbiParameter, EventArgDeclaration, EventDeclaration, FunctionDeclaration } from '../parser/abiParser';
|
2 | export declare function getFullSignatureAsSymbolForEvent(event: EventDeclaration): string;
|
3 | export declare function getFullSignatureForEvent(event: EventDeclaration): string;
|
4 | export declare function getIndexedSignatureForEvent(event: EventDeclaration): string;
|
5 | export declare function getArgumentForSignature(argument: EventArgDeclaration | AbiParameter): string;
|
6 | export declare function getSignatureForFn(fn: FunctionDeclaration): string;
|