Skip to content

Commit

Permalink
fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
daoleno committed Sep 22, 2024
1 parent dbde069 commit 6d622e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# RaaR

![image](https://media.bonsai.town/file/85669b61b29661b6c9728.png)

An Open-Source, Local-First Swiss Army Knife for Crypto Development

RaaR is a desktop application built with Tauri, React, and TypeScript, designed to provide a suite of tools for crypto developers and blockchain enthusiasts.
Expand All @@ -11,6 +9,8 @@ RaaR is a desktop application built with Tauri, React, and TypeScript, designed
- **RPC Client**: Interact with Ethereum nodes using JSON-RPC calls.
- **Transaction Tracer**: Analyze and trace Ethereum transactions.
- **Transaction Pool**: View and manage pending transactions.
- **Chain Extractor**: Extract data from the blockchain
- **Chain Analyzer**: Analyze and visualize blockchain data
- **Chain List**: View and manage information about different blockchain networks.
- **Devnet**: Set up and manage local development networks.
- **Wallet Generator**: Create and manage Ethereum wallets.
Expand All @@ -34,7 +34,7 @@ RaaR is a desktop application built with Tauri, React, and TypeScript, designed

1. Clone the repository:
```
git clone https://github.com/yourusername/raar.git
git clone https://github.com/raardev/raar.git
cd raar
```

Expand Down
2 changes: 1 addition & 1 deletion src/components/AdvancedSettingsDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const AdvancedSettingsDialog: React.FC<AdvancedSettingsDialogProps> = ({
return (selectFields[key] || []).map((v) => ({ value: v, label: v }))
}

const renderOptions = (category: string, keys: (keyof IndexerOptions)[]) => (
const renderOptions = (_category: string, keys: (keyof IndexerOptions)[]) => (
<div className="grid gap-4 py-4">
{keys.map((key) => {
const fieldType = getFieldType(key, options[key])
Expand Down

0 comments on commit 6d622e9

Please sign in to comment.