Skip to content

getDefaultWebauthnValidationModuleAddress

Maps a given chain to a specific address of the webauthn validation module by its chain ID. If no direct mapping exists, it defaults to returning a specific address.

Import

import { getDefaultWebauthnValidationModuleAddress } from "@account-kit/smart-contracts";

Usage

import { getDefaultWebauthnValidationModuleAddress } from "@account-kit/smart-contracts";
import { Chain, Address } from "viem";
 
const chain: Chain = ...
const webauthnValidationAddress: Address = getDefaultWebauthnValidationModuleAddress(chain);

Parameters

chain

Chain The chain object containing the chain ID to map

Returns

Address The webauthn validation module address associated with the specified chain ID or a default address if no specific mapping exists