Skip to content

getDefaultNativeTokenLimitModuleAddress

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

Import

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

Usage

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

Parameters

chain

Chain The chain object containing the chain ID to map

Returns

Address The native token limit module address associated with the specified chain ID or a default address if no specific mapping exists