Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions public/enscribe.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/nethereum.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/components/BigQueryExplorer/AIGenerator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ const AIGenerator = ({
</Button>
</div>
</div>
{genError && <div className="px-4 py-3 bg-red-50 text-red-700 border-t border-red-200 text-sm">{genError}</div>}
{genError && <div className="px-4 py-3 bg-red-50 text-red-700 border-t border-red-200 text-sm break-words">{genError}</div>}
</form>
);
};
Expand Down
3 changes: 2 additions & 1 deletion src/components/BigQueryExplorer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ const BigQueryExplorer = () => {
system,
prompt,
maxTokens: 800,
maxRetries: 0
});
const cleaned = text
.replace(/```sql/gi, "")
Expand All @@ -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");
}
Expand Down
10 changes: 10 additions & 0 deletions src/data/integrations.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
]
2 changes: 1 addition & 1 deletion src/pages/LandingPage/Tooling.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ $ npx hardhat verify --network mainnet 0x1F98431c8aD98523631AE4a59f267346ea31F98
)}
</motion.div>

<div className="my-24 text-center">
<div className="my-24 text-center max-w-6xl">
<h2 className="text-4xl md:text-6xl font-bold text-ceruleanBlue-500">
Who's using
</h2>
Expand Down
Loading