function loadDeployedContracts()

in index.js [57:63]


function loadDeployedContracts() {
  if (fs.existsSync(registryFilePath)) {
    const data = fs.readFileSync(registryFilePath, 'utf-8');
    return new Map(JSON.parse(data));
  }
  return new Map();
}