Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tsukipond8531/blockchain-explorer
This blockchain explorer will allow users to search for blocks, transactions, and addresses using the WhatsOnChain API to fetch blockchain data.
https://github.com/tsukipond8531/blockchain-explorer
Last synced: 29 days ago
JSON representation
This blockchain explorer will allow users to search for blocks, transactions, and addresses using the WhatsOnChain API to fetch blockchain data.
- Host: GitHub
- URL: https://github.com/tsukipond8531/blockchain-explorer
- Owner: tsukipond8531
- Created: 2024-04-30T20:17:32.000Z (9 months ago)
- Default Branch: master
- Last Pushed: 2024-07-26T15:20:45.000Z (6 months ago)
- Last Synced: 2024-11-05T10:15:21.236Z (3 months ago)
- Language: Solidity
- Homepage: https://timechain-explorer.vercel.app/
- Size: 53.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Timechain Explorer
Timechain Explorer is a blockchain explorer application that allows users to search for blocks, transactions, and addresses using the WhatsOnChain API.
## Features
- **Search for Blocks**: Enter a block hash or height to get details.
- **Search for Transactions**: Enter a transaction ID (TXID) to get details.
- **Search for Addresses**: Enter a blockchain address to get details.## User Journey
1. **Home Page**
- Search bar with options to search by block, transaction, or address.
2. **Search for Blocks**
- Enter block hash or height and view block details.
3. **Search for Transactions**
- Enter transaction ID and view transaction details.
4. **Search for Addresses**
- Enter blockchain address and view address details.## API Endpoints
Using the WhatsOnChain API:
- **Get Block by Hash**: `/api/v1/bsv/block/hash/{blockhash}`
- **Get Block by Height**: `/api/v1/bsv/block/height/{blockheight}`
- **Get Transaction by ID**: `/api/v1/bsv/tx/hash/{txid}`
- **Get Address Details**: `/api/v1/bsv/address/{address}`Backend Endpoints:
- **Search Block**: `/api/search/block`
- **Search Transaction**: `/api/search/transaction`
- **Search Address**: `/api/search/address`## Getting Started
1. Clone the repository
```sh
git clone https://github.com/sameekruth27/Blockchain-Explorer.git
2. Install dependencies
```sh
npm install
3. Start the application
```sh
npm start