Get Function Names

Access 1 Million+ Function Signature Tags for EVM DeFi event identification & attribution

getFunctionNames(params: FunctionNameQuery)

Description

This method is used to retrieve function signature names using a hex string.

This is a premium SDK method. For access, please visit the Plans page on the OpenPool Developer Portal at dev.openpool.co to sign up (you’ll need to create an account first).

  • OpenPool API Endpoint:Β GET:/metadata/function_name/

Parameters

NameTypeDescriptionOptional
paramsFunctionNameQueryQuery parametersYes
{
	hex?: string;
	name?: string;
	ordering?: string;
	page?: number;
	search?: string;
}

Response

{
	count?: number;
	next?: string | null;
	previous?: string | null;
	results?: [{
	 id: string;
	 hex: string;
	 name: string;
}];
}