Skip to content

SignatureErc6492

Utility functions for working with ERC-6492 wrapped signatures.

Examples

import { PersonalMessage, Secp256k1, Signature } from 'ox'
import { SignatureErc6492 } from 'ox/erc6492'
 
const signature = Secp256k1.sign({
  payload: PersonalMessage.getSignPayload('0xdeadbeef'),
  privateKey: '0x...',
})
 
const wrapped = SignatureErc6492.wrap({ 
  data: '0xcafebabe', 
  signature: Signature.toHex(signature), 
  to: '0xcafebabecafebabecafebabecafebabecafebabe', 
})
'0x000000000000000000000000cafebabecafebabecafebabecafebabecafebabe000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000004deadbeef000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041fa78c5905fb0b9d6066ef531f962a62bc6ef0d5eb59ecb134056d206f75aaed7780926ff2601a935c2c79707d9e1799948c9f19dcdde1e090e903b19a07923d01c000000000000000000000000000000000000000000000000000000000000006492649264926492649264926492649264926492649264926492649264926492'

Functions

NameDescription
SignatureErc6492.assertAsserts that the wrapped signature is valid.
SignatureErc6492.fromParses an ERC-6492 wrapped signature into its constituent parts.
SignatureErc6492.unwrapParses an ERC-6492 wrapped signature into its constituent parts.
SignatureErc6492.validateValidates a wrapped signature. Returns true if the wrapped signature is valid, false otherwise.
SignatureErc6492.wrapSerializes an ERC-6492 wrapped signature.

Errors

NameDescription
SignatureErc6492.InvalidWrappedSignatureErrorThrown when the ERC-6492 wrapped signature is invalid.

Types

NameDescription
SignatureErc6492.UnwrappedUnwrapped ERC-6492 signature.
SignatureErc6492.WrappedWrapped ERC-6492 signature.