🌳
pt0/deployF/ethF/eptMonEthPairsF.mts
2import * as _ from 'lodash-es'
4export const eptMonEthPairs = async ({ethStatusCfgs, getSafeEthVal = null, ethNetwork = null, extraCheckFnc = null}: {
5 ethStatusCfgs: any[], getSafeEthVal?: any, ethNetwork?: string | null, extraCheckFnc?: any,
6}) => {
7 const safeVal = getSafeEthVal?.({ethNetwork})
8 await runEthStatus({ethStatusCfgs, safeVal})
9 for (const fn of _.castArray(extraCheckFnc).filter(Boolean)) {
10 await fn({ethStatusCfgs})
11 }