@safe-global/safe-deployments
Version:
Collection of Safe singleton deployments
22 lines (19 loc) • 1.16 kB
text/typescript
import { DeploymentFilter, DeploymentFormats, SingletonDeployment, SingletonDeploymentV2 } from './types';
import { findDeployment } from './utils';
import { _FACTORY_DEPLOYMENTS } from './deployments';
/**
* Finds the latest proxy factory deployment that matches the given filter.
* @param {DeploymentFilter} [filter] - The filter to apply when searching for the deployment.
* @returns {SingletonDeployment | undefined} - The found deployment or undefined if no deployment matches the filter.
*/
export const getProxyFactoryDeployment = (filter?: DeploymentFilter): SingletonDeployment | undefined => {
return findDeployment(filter, _FACTORY_DEPLOYMENTS);
};
/**
* Finds all proxy factory deployments that match the given filter.
* @param {DeploymentFilter} [filter] - The filter to apply when searching for the deployments.
* @returns {SingletonDeploymentV2 | undefined} - The found deployments or undefined if no deployments match the filter.
*/
export const getProxyFactoryDeployments = (filter?: DeploymentFilter): SingletonDeploymentV2 | undefined => {
return findDeployment(filter, _FACTORY_DEPLOYMENTS, DeploymentFormats.MULTIPLE);
};