(facet)
| 382 | * @param facet - The facet to display. |
| 383 | */ |
| 384 | export function logMissingFacetInfo(facet) { |
| 385 | const formattedLibs = Object.entries(facet.libs) |
| 386 | .map(([key, value]) => ` - ${key}: ${value}`) |
| 387 | .join('\n') |
| 388 | |
| 389 | console.info(` |
| 390 | Facet Bytecode Not Found: |
| 391 | --------------------------------- |
| 392 | Facet Name: ${facet.name} |
| 393 | Libraries: |
| 394 | ${formattedLibs} |
| 395 | Address: ${facet.address} |
| 396 | `) |
| 397 | } |
| 398 | |
| 399 | function getDeployedFacetAddressFromName(facetName, deployments) { |
| 400 | for (let facet of deployments.Facets) { |
no test coverage detected