Skip to content

Commit 0157a24

Browse files
committed
Add README and gitignore
1 parent 3da8803 commit 0157a24

File tree

2 files changed

+47
-0
lines changed

2 files changed

+47
-0
lines changed

.gitignore

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Binaries for programs and plugins
2+
*.exe
3+
*.exe~
4+
*.dll
5+
*.so
6+
*.dylib
7+
8+
# Test binary, built with `go test -c`
9+
*.test
10+
11+
# Output of the go coverage tool, specifically when used with LiteIDE
12+
*.out
13+
14+
# Go workspace file
15+
go.work
16+
17+
# IdeaIDE
18+
.idea
19+
20+
# VS Code
21+
.vscode
22+
23+
# macOS
24+
.DS_Store
25+
.AppleDouble
26+
.LSOverride
27+
28+
# logs
29+
*.log

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
## Ramen - A Terminal Interface for Ethereum 🍜
2+
3+
Ramen is a good-old terminal UI to interact with [Ethereum Network](https://ethereum.org/en/). It allows you to observe latest chain status, check any account's balance and transaction history, navigate blocks and transactions, explore smart contract's source code or call its functions, and many things more!
4+
5+
(screenshot here)
6+
7+
## Installation
8+
9+
## Quick Start
10+
11+
1. Get an API key from Alchemy
12+
2. Connect to Alchemy RPC endpoint
13+
14+
### Connect Local Blockchain
15+
16+
[Hardhat](https://hardhat.org/) / [Ganache](https://trufflesuite.com/ganache/) provides a local Ethereum network node for development purpose.
17+
18+
## Configuration

0 commit comments

Comments
 (0)