@morpho-dev/v2-deployment
Version:
Morpho v2 chain configurations for viem
25 lines • 881 B
JavaScript
// Generated deployment addresses
// This file is auto-generated. Do not edit manually.
export const deployments = {
109111114: {
terms: {
address: '0xa85d462ceb11d6f91f003072fdc701b0a1bbd8bd',
deploymentBlock: 23223724n,
deployer: '0xcb55e81d9b5f77607685c470e382a70bd50fbfca',
deployedAt: '2025-08-26T07:22:57.000Z',
},
},
};
// Helper function to get deployment info for a specific chain
export function getDeploymentInfo(chainId, contract) {
const chainDeployments = deployments[chainId];
if (!chainDeployments)
return undefined;
return chainDeployments[contract];
}
// Helper function to get contract address
export function getContractAddress(chainId, contract) {
const info = getDeploymentInfo(chainId, contract);
return info?.address;
}
//# sourceMappingURL=addresses.js.map