Development Artifact Cleanup: ✅ BROTHER_NODE REORGANIZATION: Moved development test node to appropriate location - dev/test-nodes/brother_node/: Moved from root directory for better organization - Contains development configuration, test logs, and test chain data - No impact on production systems - purely development/testing artifact ✅ DEVELOPMENT ARTIFACTS IDENTIFIED: - Chain ID: aitbc-brother-chain (test/development chain) - Ports: 8010 (P2P) and 8011 (RPC) - different from production - Environment: .env file with test configuration - Logs: rpc.log and node.log from development testing session (March 15, 2026) ✅ ROOT DIRECTORY CLEANUP: Removed development clutter from production directory - brother_node/ moved to dev/test-nodes/brother_node/ - Root directory now contains only production-ready components - Development artifacts properly organized in dev/ subdirectory DIRECTORY STRUCTURE IMPROVEMENT: 📁 dev/test-nodes/: Development and testing node configurations 🏗️ Root Directory: Clean production structure with only essential components 🧪 Development Isolation: Test environments separated from production BENEFITS: ✅ Clean Production Directory: No development artifacts in root ✅ Better Organization: Development nodes grouped in dev/ subdirectory ✅ Clear Separation: Production vs development environments clearly distinguished ✅ Maintainability: Easier to identify and manage development components RESULT: Successfully moved brother_node development artifact to dev/test-nodes/ subdirectory, cleaning up the root directory while preserving development testing environment for future use.
329 lines
9.9 KiB
JavaScript
Executable File
329 lines
9.9 KiB
JavaScript
Executable File
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/* prettier-ignore */
|
|
|
|
/* auto-generated by NAPI-RS */
|
|
|
|
const { existsSync, readFileSync } = require('fs')
|
|
const { join } = require("path");
|
|
|
|
const { platform, arch } = process;
|
|
|
|
let nativeBinding = null;
|
|
let localFileExisted = false;
|
|
let loadError = null;
|
|
|
|
function isMusl() {
|
|
// For Node 10
|
|
if (!process.report || typeof process.report.getReport !== "function") {
|
|
try {
|
|
const lddPath = require("child_process")
|
|
.execSync("which ldd")
|
|
.toString()
|
|
.trim();
|
|
return readFileSync(lddPath, "utf8").includes("musl");
|
|
} catch (e) {
|
|
return true;
|
|
}
|
|
} else {
|
|
const { glibcVersionRuntime } = process.report.getReport().header;
|
|
return !glibcVersionRuntime;
|
|
}
|
|
}
|
|
|
|
switch (platform) {
|
|
case "android":
|
|
switch (arch) {
|
|
case "arm64":
|
|
localFileExisted = existsSync(
|
|
join(__dirname, "solidity-analyzer.android-arm64.node")
|
|
);
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require("./solidity-analyzer.android-arm64.node");
|
|
} else {
|
|
nativeBinding = require("@nomicfoundation/solidity-analyzer-android-arm64");
|
|
}
|
|
} catch (e) {
|
|
loadError = e;
|
|
}
|
|
break;
|
|
case "arm":
|
|
localFileExisted = existsSync(
|
|
join(__dirname, "solidity-analyzer.android-arm-eabi.node")
|
|
);
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require("./solidity-analyzer.android-arm-eabi.node");
|
|
} else {
|
|
nativeBinding = require("@nomicfoundation/solidity-analyzer-android-arm-eabi");
|
|
}
|
|
} catch (e) {
|
|
loadError = e;
|
|
}
|
|
break;
|
|
default:
|
|
throw new Error(`Unsupported architecture on Android ${arch}`);
|
|
}
|
|
break;
|
|
case "win32":
|
|
switch (arch) {
|
|
case "x64":
|
|
localFileExisted = existsSync(
|
|
join(__dirname, "solidity-analyzer.win32-x64-msvc.node")
|
|
);
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require("./solidity-analyzer.win32-x64-msvc.node");
|
|
} else {
|
|
nativeBinding = require("@nomicfoundation/solidity-analyzer-win32-x64-msvc");
|
|
}
|
|
} catch (e) {
|
|
loadError = e;
|
|
}
|
|
break;
|
|
case "ia32":
|
|
localFileExisted = existsSync(
|
|
join(__dirname, "solidity-analyzer.win32-ia32-msvc.node")
|
|
);
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require("./solidity-analyzer.win32-ia32-msvc.node");
|
|
} else {
|
|
nativeBinding = require("@nomicfoundation/solidity-analyzer-win32-ia32-msvc");
|
|
}
|
|
} catch (e) {
|
|
loadError = e;
|
|
}
|
|
break;
|
|
case "arm64":
|
|
localFileExisted = existsSync(
|
|
join(__dirname, "solidity-analyzer.win32-arm64-msvc.node")
|
|
);
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require("./solidity-analyzer.win32-arm64-msvc.node");
|
|
} else {
|
|
nativeBinding = require("@nomicfoundation/solidity-analyzer-win32-arm64-msvc");
|
|
}
|
|
} catch (e) {
|
|
loadError = e;
|
|
}
|
|
break;
|
|
default:
|
|
throw new Error(`Unsupported architecture on Windows: ${arch}`);
|
|
}
|
|
break;
|
|
case "darwin":
|
|
localFileExisted = existsSync(
|
|
join(__dirname, "solidity-analyzer.darwin-universal.node")
|
|
);
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require("./solidity-analyzer.darwin-universal.node");
|
|
} else {
|
|
nativeBinding = require("@nomicfoundation/solidity-analyzer-darwin-universal");
|
|
}
|
|
break;
|
|
} catch {}
|
|
switch (arch) {
|
|
case "x64":
|
|
localFileExisted = existsSync(
|
|
join(__dirname, "solidity-analyzer.darwin-x64.node")
|
|
);
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require("./solidity-analyzer.darwin-x64.node");
|
|
} else {
|
|
nativeBinding = require("@nomicfoundation/solidity-analyzer-darwin-x64");
|
|
}
|
|
} catch (e) {
|
|
loadError = e;
|
|
}
|
|
break;
|
|
case "arm64":
|
|
localFileExisted = existsSync(
|
|
join(__dirname, "solidity-analyzer.darwin-arm64.node")
|
|
);
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require("./solidity-analyzer.darwin-arm64.node");
|
|
} else {
|
|
nativeBinding = require("@nomicfoundation/solidity-analyzer-darwin-arm64");
|
|
}
|
|
} catch (e) {
|
|
loadError = e;
|
|
}
|
|
break;
|
|
default:
|
|
throw new Error(`Unsupported architecture on macOS: ${arch}`);
|
|
}
|
|
break;
|
|
case "freebsd":
|
|
if (arch !== "x64") {
|
|
throw new Error(`Unsupported architecture on FreeBSD: ${arch}`);
|
|
}
|
|
localFileExisted = existsSync(
|
|
join(__dirname, "solidity-analyzer.freebsd-x64.node")
|
|
);
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require("./solidity-analyzer.freebsd-x64.node");
|
|
} else {
|
|
nativeBinding = require("@nomicfoundation/solidity-analyzer-freebsd-x64");
|
|
}
|
|
} catch (e) {
|
|
loadError = e;
|
|
}
|
|
break;
|
|
case "linux":
|
|
switch (arch) {
|
|
case "x64":
|
|
if (isMusl()) {
|
|
localFileExisted = existsSync(
|
|
join(__dirname, "solidity-analyzer.linux-x64-musl.node")
|
|
);
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require("./solidity-analyzer.linux-x64-musl.node");
|
|
} else {
|
|
nativeBinding = require("@nomicfoundation/solidity-analyzer-linux-x64-musl");
|
|
}
|
|
} catch (e) {
|
|
loadError = e;
|
|
}
|
|
} else {
|
|
localFileExisted = existsSync(
|
|
join(__dirname, "solidity-analyzer.linux-x64-gnu.node")
|
|
);
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require("./solidity-analyzer.linux-x64-gnu.node");
|
|
} else {
|
|
nativeBinding = require("@nomicfoundation/solidity-analyzer-linux-x64-gnu");
|
|
}
|
|
} catch (e) {
|
|
loadError = e;
|
|
}
|
|
}
|
|
break;
|
|
case "arm64":
|
|
if (isMusl()) {
|
|
localFileExisted = existsSync(
|
|
join(__dirname, "solidity-analyzer.linux-arm64-musl.node")
|
|
);
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require("./solidity-analyzer.linux-arm64-musl.node");
|
|
} else {
|
|
nativeBinding = require("@nomicfoundation/solidity-analyzer-linux-arm64-musl");
|
|
}
|
|
} catch (e) {
|
|
loadError = e;
|
|
}
|
|
} else {
|
|
localFileExisted = existsSync(
|
|
join(__dirname, "solidity-analyzer.linux-arm64-gnu.node")
|
|
);
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require("./solidity-analyzer.linux-arm64-gnu.node");
|
|
} else {
|
|
nativeBinding = require("@nomicfoundation/solidity-analyzer-linux-arm64-gnu");
|
|
}
|
|
} catch (e) {
|
|
loadError = e;
|
|
}
|
|
}
|
|
break;
|
|
case "arm":
|
|
if (isMusl()) {
|
|
localFileExisted = existsSync(
|
|
join(__dirname, "solidity-analyzer.linux-arm-musleabihf.node")
|
|
);
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require("./solidity-analyzer.linux-arm-musleabihf.node");
|
|
} else {
|
|
nativeBinding = require("@nomicfoundation/solidity-analyzer-linux-arm-musleabihf");
|
|
}
|
|
} catch (e) {
|
|
loadError = e;
|
|
}
|
|
} else {
|
|
localFileExisted = existsSync(
|
|
join(__dirname, "solidity-analyzer.linux-arm-gnueabihf.node")
|
|
);
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require("./solidity-analyzer.linux-arm-gnueabihf.node");
|
|
} else {
|
|
nativeBinding = require("@nomicfoundation/solidity-analyzer-linux-arm-gnueabihf");
|
|
}
|
|
} catch (e) {
|
|
loadError = e;
|
|
}
|
|
}
|
|
break;
|
|
case "riscv64":
|
|
if (isMusl()) {
|
|
localFileExisted = existsSync(
|
|
join(__dirname, "solidity-analyzer.linux-riscv64-musl.node")
|
|
);
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require("./solidity-analyzer.linux-riscv64-musl.node");
|
|
} else {
|
|
nativeBinding = require("@nomicfoundation/solidity-analyzer-linux-riscv64-musl");
|
|
}
|
|
} catch (e) {
|
|
loadError = e;
|
|
}
|
|
} else {
|
|
localFileExisted = existsSync(
|
|
join(__dirname, "solidity-analyzer.linux-riscv64-gnu.node")
|
|
);
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require("./solidity-analyzer.linux-riscv64-gnu.node");
|
|
} else {
|
|
nativeBinding = require("@nomicfoundation/solidity-analyzer-linux-riscv64-gnu");
|
|
}
|
|
} catch (e) {
|
|
loadError = e;
|
|
}
|
|
}
|
|
break;
|
|
case "s390x":
|
|
localFileExisted = existsSync(
|
|
join(__dirname, "solidity-analyzer.linux-s390x-gnu.node")
|
|
);
|
|
try {
|
|
if (localFileExisted) {
|
|
nativeBinding = require("./solidity-analyzer.linux-s390x-gnu.node");
|
|
} else {
|
|
nativeBinding = require("@nomicfoundation/solidity-analyzer-linux-s390x-gnu");
|
|
}
|
|
} catch (e) {
|
|
loadError = e;
|
|
}
|
|
break;
|
|
default:
|
|
throw new Error(`Unsupported architecture on Linux: ${arch}`);
|
|
}
|
|
break;
|
|
default:
|
|
throw new Error(`Unsupported OS: ${platform}, architecture: ${arch}`);
|
|
}
|
|
|
|
if (!nativeBinding) {
|
|
if (loadError) {
|
|
throw loadError;
|
|
}
|
|
throw new Error(`Failed to load native binding`);
|
|
}
|
|
|
|
const { analyze } = nativeBinding;
|
|
|
|
module.exports.analyze = analyze;
|