Skip to content

Commit ed79acc

Browse files
committed
fixed env
1 parent 8ada659 commit ed79acc

2 files changed

Lines changed: 14 additions & 7 deletions

File tree

.env.example

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
2+
3+
NEXT_PUBLIC_BITQUERY_API_KEY=your_key_bitquery_api
4+
5+
6+
BITQUERY_API_KEY=your_key_bitquery_api

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,15 @@
1-
21
# ComTracker v1
32

4-
53
<p align="center">
64
<img src="https://github.com/gemdegem/comtracker/assets/94614019/9636730e-72b3-4d7f-be07-27a36a204688" alt="Comtracker landing" width="600"/>
75
</p>
86

97
ComTracker is designed to uncover connections between Ethereum addresses. In its initial version (v1), users can input two Ethereum addresses to identify all transactions between them, including intermediate addresses ( in the application marked as depth 2). The application provides detailed information about the transaction time, the amount of cryptocurrency, and the type of cryptocurrency sent.
108

11-
129
<p align="center">
1310
<img src="https://github.com/gemdegem/comtracker/assets/94614019/a5445ed8-998e-40b2-bd00-b254f198c51a" alt="Comtracker landing" width="600"/>
1411
</p>
1512

16-
17-
1813
Additionally, ComTracker offers a user-friendly interface for visualizing these connections, making it easier to understand the flow of funds and the relationships between different addresses. Built with Next.js, and Tailwind CSS, ReactFlow.
1914

2015
![tracker](https://github.com/gemdegem/comtracker/assets/94614019/78b096bb-996b-4940-a960-34b3cc79e6e7)
@@ -53,13 +48,19 @@ Before you begin, ensure you have met the following requirements:
5348
```
5449

5550
3. **Environment Variables:**
56-
The project uses environment variables for configuration. Create a .env.local file in the root directory and add the necessary variables:
51+
The project uses environment variables for configuration. Create a `.env` file in the root directory and add the necessary variables:
5752
V1 bitquery api key. https://account.bitquery.io/user/api_v1/api_keys
5853

5954
```bash
60-
BITQUERY_API_KEY=your_api_key_here
55+
56+
NEXT_PUBLIC_BITQUERY_API_KEY=your_bitquery_api_key_here
57+
58+
BITQUERY_API_KEY=your_bitquery_api_key_here
6159
```
6260

61+
For security reasons, never commit your `.env` file to Git. The repository already includes a `.gitignore` rule to prevent this.
62+
You can use the provided `.env.example` as a template.
63+
6364
### Running the Development Server
6465

6566
To start the development server, use one of the following commands:

0 commit comments

Comments
 (0)