@kagamidigital/salt-sdk-mirror
    Preparing search index...

    Interface EvmSignature

    A full EVM signature with its recovered v value and signer address.

    Returned by the SDK's signing flows (e.g. Salt.signPersonalMessage). The r/s components come from the MPC signing rounds and recoveredAddress is the address recovered from the signature — it must match the account's expected signer.

    interface EvmSignature {
        r: `0x${string}`;
        recoveredAddress: `0x${string}`;
        s: `0x${string}`;
        v: bigint;
    }
    Index

    Properties

    Properties

    r: `0x${string}`

    The r component of the ECDSA signature.

    recoveredAddress: `0x${string}`

    The address recovered from the signature.

    s: `0x${string}`

    The s component of the ECDSA signature.

    v: bigint

    The recovery id / parity (27 or 28) recovered during signing.