Generates the signature for the provided transaction hash.
import { sign } from "thirdweb/utils"; const signature = sign({ hash: "0x", privateKey: "0x",});
function sign(options: SignOptions): Signature;
The options for signing.
let options: { hash: Hex; privateKey: Hex };
let returnType: Signature;
The transaction signature.