Spaces:
Sleeping
Sleeping
Sarah Azouvi
commited on
Commit
·
01bfdad
1
Parent(s):
74535ad
added instructions
Browse files
README.md
CHANGED
@@ -22,10 +22,33 @@ This MCP server enables interaction with the Ethereum blockchain, allowing users
|
|
22 |
|
23 |
Watch our demo using Tiny Agents where we ask a chatbot to create and deploy a smart contract:
|
24 |
|
25 |
-
**[🎬 View Demo](https://www.loom.com/share/
|
26 |
|
27 |
Runs locally or on testnet (Sepolia) and mainnet with an API key.
|
28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
## Use Cases
|
30 |
|
31 |
- **Easy Blockchain Interactions**: Send transactions, check balances, and manage accounts directly from the chatbot, no complex UX
|
|
|
22 |
|
23 |
Watch our demo using Tiny Agents where we ask a chatbot to create and deploy a smart contract:
|
24 |
|
25 |
+
**[🎬 View Demo](https://www.loom.com/share/effa9e6b39de4e46bff7ba30f76c42a3?sid=54b1e28c-05ed-41a7-b45d-ca1d772e57b4)**
|
26 |
|
27 |
Runs locally or on testnet (Sepolia) and mainnet with an API key.
|
28 |
|
29 |
+
In order to reproduce the demo, you will first need to create an `agent.json` file as follows:
|
30 |
+
|
31 |
+
```
|
32 |
+
{
|
33 |
+
"model": "Qwen/Qwen2.5-72B-Instruct",
|
34 |
+
"provider": "nebius",
|
35 |
+
"servers": [
|
36 |
+
{
|
37 |
+
"type": "stdio",
|
38 |
+
"config": {
|
39 |
+
"command": "npx",
|
40 |
+
"args": [
|
41 |
+
"mcp-remote",
|
42 |
+
"https://Agents-MCP-Hackathon-gradio-eth-mcp.hf.space/gradio_api/mcp/sse"
|
43 |
+
]
|
44 |
+
}
|
45 |
+
}
|
46 |
+
]
|
47 |
+
}
|
48 |
+
```
|
49 |
+
|
50 |
+
Run it using `npx @huggingface/tiny-agents run ../my-agent`.
|
51 |
+
|
52 |
## Use Cases
|
53 |
|
54 |
- **Easy Blockchain Interactions**: Send transactions, check balances, and manage accounts directly from the chatbot, no complex UX
|