getDefaultAllowlistModuleAddress
Maps a given chain to a specific address of the allowlist module by its chain ID. If no direct mapping exists, it defaults to returning a specific address.
Import
import { getDefaultAllowlistModuleAddress } from "@account-kit/smart-contracts";
Usage
import { getDefaultAllowlistModuleAddress } from "@account-kit/smart-contracts";
import { Chain, Address } from "viem";
const chain: Chain = ...
const allowlistModule: Address = getDefaultAllowlistModuleAddress(chain);
Parameters
chain
Chain
The chain object containing the chain ID to map
Returns
Address
The allowlist module address associated with the specified chain ID or a default address if no specific mapping exists