Resolves the signatures of the given hexadecimal signatures.
import { resolveSignatures } from "thirdweb/utils";const res = await resolveSignatures(["0x1f931c1c", "0x1f931c1c"]);console.log(res);
function resolveSignatures( hexSigs: Array<string>,): Promise<{ events: Array<`event ${string}`>; functions: Array<`function ${string}`>;}>;
An array of hexadecimal signatures.
let hexSigs: Array<string>;
let returnType: Promise<{ events: Array<`event ${string}`>; functions: Array<`function ${string}`>;}>;
A promise that resolves to an object containing the resolved functions and events.