Skip to content
Alchemy Logo

wrapSignatureWith6492

function wrapSignatureWith6492(params): `0x${string}`;

Defined in: aa-sdk/core/src/signer/utils.ts:36

Wraps a given signature with additional data following the EIP-6492 standard.

import { wrapSignatureWith6492 } from "@aa-sdk/core";
 
const signature = wrapSignatureWith6492({
  factoryAddress: "0x...",
  factoryCalldata: "0x...",
  signature: "0x...",
});

ParameterTypeDescription

params

SignWith6492Params

The parameters to wrap the signature

`0x${string}`

The wrapped signature

Was this page helpful?