diff --git a/public/enscribe.svg b/public/enscribe.svg
new file mode 100644
index 0000000..0f0c2e1
--- /dev/null
+++ b/public/enscribe.svg
@@ -0,0 +1,8 @@
+
+
+
diff --git a/public/nethereum.png b/public/nethereum.png
new file mode 100644
index 0000000..d620b41
Binary files /dev/null and b/public/nethereum.png differ
diff --git a/src/components/BigQueryExplorer/AIGenerator.tsx b/src/components/BigQueryExplorer/AIGenerator.tsx
index 618538a..0b27965 100644
--- a/src/components/BigQueryExplorer/AIGenerator.tsx
+++ b/src/components/BigQueryExplorer/AIGenerator.tsx
@@ -186,7 +186,7 @@ const AIGenerator = ({
- {genError &&
{genError}
}
+ {genError && {genError}
}
);
};
diff --git a/src/components/BigQueryExplorer/index.tsx b/src/components/BigQueryExplorer/index.tsx
index 46b70ab..20c7c94 100644
--- a/src/components/BigQueryExplorer/index.tsx
+++ b/src/components/BigQueryExplorer/index.tsx
@@ -89,6 +89,7 @@ const BigQueryExplorer = () => {
system,
prompt,
maxTokens: 800,
+ maxRetries: 0
});
const cleaned = text
.replace(/```sql/gi, "")
@@ -98,7 +99,7 @@ const BigQueryExplorer = () => {
setSql(cleaned);
} catch (e: any) {
try {
- setGenError("Openrouter error: " + JSON.parse(e.responseBody).error.message);
+ setGenError("Openrouter error: " + JSON.stringify(JSON.parse(e.responseBody).error));
} catch {
setGenError("Unkown error generating SQL");
}
diff --git a/src/data/integrations.json b/src/data/integrations.json
index 0fb5007..25ef847 100644
--- a/src/data/integrations.json
+++ b/src/data/integrations.json
@@ -78,5 +78,15 @@
"name": "Echidna",
"url": "https://github.com/crytic/echidna/releases/tag/v2.3.1",
"logo": "/echidna.png"
+ },
+ {
+ "name": "Enscribe",
+ "url": "https://www.enscribe.xyz/blog/contracts-verification#what-youll-see",
+ "logo": "/enscribe.svg"
+ },
+ {
+ "name": "Nethereum",
+ "url": "https://github.com/Nethereum/Nethereum/commit/312c258b7a2a73209834767d02722d4aabd13530",
+ "logo": "/nethereum.png"
}
]
diff --git a/src/pages/LandingPage/Tooling.tsx b/src/pages/LandingPage/Tooling.tsx
index 30700aa..04487a6 100644
--- a/src/pages/LandingPage/Tooling.tsx
+++ b/src/pages/LandingPage/Tooling.tsx
@@ -283,7 +283,7 @@ $ npx hardhat verify --network mainnet 0x1F98431c8aD98523631AE4a59f267346ea31F98
)}
-