Skip to content

getDefaultPaymasterGuardModuleAddress

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

Import

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

Usage

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

Parameters

chain

Chain The chain object containing the chain ID to map

Returns

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