-
Notifications
You must be signed in to change notification settings - Fork 497
/
Copy pathcompiler-metadata.ts
69 lines (66 loc) · 1.84 KB
/
compiler-metadata.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import type { Abi } from "abitype";
/**
* @contract
*/
export type CompilerMetadata = {
name: string;
abi: Abi;
// biome-ignore lint/suspicious/noExplicitAny: TODO: fix later by updating this type to match the specs here: https://docs.soliditylang.org/en/latest/metadata.html
metadata: Record<string, any> & {
sources: Record<string, { content: string } | { urls: string[] }>;
output: {
abi: Abi;
devdoc?: Record<string, Record<string, { details: string }>>;
userdoc?: Record<string, Record<string, { notice: string }>>;
};
};
info: {
title?: string;
author?: string;
details?: string;
notice?: string;
};
licenses: string[];
isPartialAbi?: boolean;
zk_version?: string;
};
/**
* Formats the compiler metadata into a standardized format.
* @param metadata - The compiler metadata to be formatted.
* @returns The formatted metadata.
* @internal
*/
export function formatCompilerMetadata(
// biome-ignore lint/suspicious/noExplicitAny: TODO: fix later
metadata: any,
): CompilerMetadata {
let meta = metadata;
if ("source_metadata" in metadata) {
meta = metadata.source_metadata;
}
// TODO: fix
// const compilationTarget = meta.settings.compilationTarget;
// const targets = Object.keys(compilationTarget);
const name = "";
const info = {
title: meta.output.devdoc.title,
author: meta.output.devdoc.author,
details: meta.output.devdoc.detail,
notice: meta.output.userdoc.notice,
};
const licenses: string[] = [
...new Set(
// biome-ignore lint/suspicious/noExplicitAny: TODO: fix later
Object.entries(meta.sources).map(([, src]) => (src as any).license),
),
];
return {
name,
abi: meta?.output?.abi || [],
metadata: meta,
info,
licenses,
isPartialAbi: meta.isPartialAbi,
zk_version: metadata.zk_version,
};
}