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

    Type Alias VerifyAccountResult

    The result of a successful Salt.verifyAccount call. Both signatures are cryptographic proof that each keyshare path is intact; the recoveredAddress inside each one independently confirms the account address without trusting the SDK's own comparison.

    type VerifyAccountResult = {
        accountAddress: string;
        signatures: { recovery: EvmSignature; regular: EvmSignature };
    }
    Index

    Properties

    accountAddress: string

    The account's EVM address (derived from its public key), confirmed by both flows.

    signatures: { recovery: EvmSignature; regular: EvmSignature }

    Type Declaration

    • recovery: EvmSignature

      Signature produced by the recovery flow — human signers only, no robos. Proves the account can be recovered without robo assistance.

    • regular: EvmSignature

      Signature produced by the regular flow — calling human + robo signers. Proves the standard transaction signing path is healthy.