@iexec/dataprotector
Version:
This product enables users to confidentially store data–such as mail address, documents, personal information ...
10 lines (9 loc) • 431 B
TypeScript
import { IExec } from 'iexec';
/**
* Checks if a contract at the given address contains specific function selectors in its bytecode.
*
* @param iexec - The IExec instance.
* @param whitelistAddress - The address of the contract to check.
* @returns True if the contract contains the required function selectors; false otherwise.
*/
export declare const isERC734: (iexec: IExec, whitelistAddress: string) => Promise<boolean>;