checkModulesCompatibility

Check if the given modules are compatible with the given core contract

function checkModulesCompatibility(options: {
chain: Readonly;
client: ThirdwebClient;
coreBytecode: string;
moduleBytecodes: Array<string>;
}): Promise<boolean>;

Parameters

Type

let options: {
chain: Readonly;
client: ThirdwebClient;
coreBytecode: string;
moduleBytecodes: Array<string>;
};

Returns

let returnType: Promise<boolean>;