Your favorite MEMEpool explorer.
Inscriptions, Stamps, Runes, and 😺 CAT-21 Ordinals?
We have you covered!
This is a fork of the The Mempool Open Source Project – with significant changes for the Bitcoin Ordinals community.
Get your Bitcoin node and Electrs ready! You should have the following services already running:
- Bitcoin
- Electrs
- MariaDB
Read the /backend/README.md first.
Copy mempool-config.sample.json
to `mempool-config.json and adjust all connection settings.
cd backend
npm install
npm start
Read the /frontend/README.md first. The key difference to the original setup is the following new command:
cd frontend
npm install
npm run config:defaults:ordpool
npm start
# OR
npm run start:local-esplora
This generates the required file /resources/config.js
with the correct settings for Ordpool.
We've extracted the parsing of digital artifacts to a separate repository! Now it's your turn! Fork it and add support for the next big metaprotocol. Can't wait to see what you come up with! ...so that we can show it on Ordpool! 🧡
More at:
If you want to integrate the parser into your own project, feel free to do so. The code is 100% open-source and is under the MIT License. Do whatever you want with it!
Use the following instructions to make the ordpool-parser available locally (for testing changes against Ordpool) via npm link.
-
Clone the project
git clone https://github.com/ordpool-space/ordpool-parser.git cd ordpool-parser
-
Install the dependencies
npm install
-
Build the project:
npm run build
-
Create a local npm link:
cd dist npm link
Once you have completed the previous steps to npm link
the local copy of ordpool-parser
,
follow these steps to use it in your local frontend project or backend project. (the parser is used in both projects)
-
Enter the project directory
cd ordpool cd frontend # OR cd backend
-
Add the local version of
ordpool-parser
(instead of the stable version from npm).npm link ordpool-parser
-
Happy developing! Don't forget to execute the tests! ☕️
-
You can remove the link later by running
npm unlink ordpool-parser
.
Read more about the link
feature in the official NPM documentation.