2022-11-04 00:53:14 +00:00
|
|
|
const fs = require("fs")
|
2022-08-28 10:25:46 +00:00
|
|
|
const Ajv = require("ajv")
|
|
|
|
const ajv = new Ajv()
|
2022-11-04 00:53:14 +00:00
|
|
|
const schema = require("./schema/chainSchema.json")
|
2022-12-05 02:05:55 +00:00
|
|
|
const { exit } = require("process")
|
2022-11-04 00:53:14 +00:00
|
|
|
const chainFiles = fs.readdirSync("../_data/chains/")
|
|
|
|
|
|
|
|
// https://chainagnostic.org/CAIPs/caip-2
|
|
|
|
const parseChainId = (chainId) =>
|
|
|
|
/^(?<namespace>[-a-z0-9]{3,8})-(?<reference>[-a-zA-Z0-9]{1,32})$/u.exec(
|
|
|
|
chainId
|
|
|
|
)
|
2022-08-28 10:25:46 +00:00
|
|
|
|
|
|
|
const filesWithErrors = []
|
2022-11-04 00:53:14 +00:00
|
|
|
for (const chainFile of chainFiles) {
|
|
|
|
const fileLocation = `../_data/chains/${chainFile}`
|
|
|
|
const fileData = fs.readFileSync(fileLocation, "utf8")
|
|
|
|
const fileDataJson = JSON.parse(fileData)
|
|
|
|
const fileName = chainFile.split(".")[0]
|
|
|
|
const parsedChainId = parseChainId(fileName)?.groups
|
|
|
|
const chainIdFromFileName = parsedChainId?.reference
|
|
|
|
if (chainIdFromFileName != fileDataJson.chainId) {
|
|
|
|
throw new Error(`File Name does not match with ChainID in ${chainFile}`)
|
|
|
|
}
|
|
|
|
const valid = ajv.validate(schema, fileDataJson)
|
|
|
|
if (!valid) {
|
|
|
|
console.error(ajv.errors)
|
|
|
|
filesWithErrors.push(chainFile)
|
|
|
|
}
|
2022-08-28 10:25:46 +00:00
|
|
|
}
|
|
|
|
|
2022-11-04 00:53:14 +00:00
|
|
|
if (filesWithErrors.length > 0) {
|
2022-12-05 02:05:55 +00:00
|
|
|
filesWithErrors.forEach(file => {
|
|
|
|
console.error(`Invalid JSON Schema in ${file}`)
|
|
|
|
})
|
|
|
|
exit(-1);
|
2022-11-04 00:53:14 +00:00
|
|
|
}
|
2022-12-05 02:05:55 +00:00
|
|
|
else {
|
|
|
|
console.info("Schema check completed successfully");
|
|
|
|
exit(0);
|
|
|
|
}
|