Skip to main content
Checkout these autogenerated SDK docs detailing classes, methods, and types available.

Request signing

All state-changing requests made to the DFNS API must be cryptographically signed. The SDK handles this automatically when you configure a signer. See backend SDK concepts for details.

AsymmetricKeySigner

AsymmetricKeySigner in the @dfns/sdk-keysigner package implements CredentialSigner for server-side use.

DfnsApiClient

DfnsApiClient is the main client for direct signing. It handles the full signing flow internally.

DfnsDelegatedApiClient

DfnsDelegatedApiClient is the client for delegated signing. Use it when users sign from their own device using passkeys. The difference with DfnsApiClient:
  • No CredentialSigner in the constructor (signing happens externally)
  • Every state-changing method is split into init and complete steps

BaseAuthApi

BaseAuthApi provides special auth-related methods, including unauthenticated endpoints for login and registration flows.
Last modified on July 7, 2026