The new LBRY block explorer
A simple PHP block explorer for browsing transactions and claims on the LBRY blockchain. The explorer was developed using CakePHP which is a model-view-controller (MVC) PHP framework.
There are some prerequisites that need to be installed before the explorer can be accessed.
forevermempool
)on ubuntu you may use this to install php requirements
sudo apt install php7.4-gmp php7.4-intl php7.4-mbstring php7.4-mysql php7.4-bcmath php7.4-gd
git clone https://github.com/lbryio/block-explorer
block-explorer/sql/lbryexplorer.ddl.sql
cd block-explorer
composer update
tmp
and logs
in the block-explorer
folder if they have not been created yet, and make sure that they are writable by the web server.config/app.default.php
to config/app.php
. Edit the database connection values to correspond to your environment.config/lbry.default.php
to config/lbry.php
. Update the values for LBRY RPC URL and the Redis URL to correspond to your environment.Configure your web server with the host root folder set to <path to>/block-explorer/webroot
where <path to>
is the absolute path to the configuration. Here is a sample nginx configuration. You can make changes to this configuration to correspond to your environment.
server {
listen 80;
server_name my.explorer.com;
root /var/www/block-explorer/webroot;
index index.php;
location / {
try_files $uri $uri/ /index.php?$args;
}
# pass the PHP scripts to FastCGI server listening on the php-fpm socket
location ~ \.php$ {
try_files $uri =404;
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_ignore_client_abort on;
fastcgi_param PHP_AUTH_USER $remote_user;
fastcgi_param PHP_AUTH_PW $http_authorization;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}
There are a few scripts which can be set up as cron jobs or scheduled tasks.
Detect new LBRY blocks. Can also be configured to be triggered using the lbrycrd blocknotify
flag. This cron will create new blocks obtained from lbrycrd starting from the highest block number in the database, and then create the corresponding block transactions. If there are pending transactions created by the forevermempool script, they will be automatically associated with the respective blocks.
Create claims found on the LBRY blockchain in the database. This requires the Python decoder to be running in the background.
Get the current LBC price in USD and store the value in the PriceHistory
table. This also caches the most recent price in Redis.
Run the forevermempool
script, and restart if necessary. The forevermempool
script checks the LBRY blockchain mempool every second and creates transactions found in the database. The script makes use of Redis for caching the pending transaction IDs.
Launch the URL for the configured web server root in a browser.
Contributions to this project are welcome, encouraged, and compensated. For more details, see https://lbry.tech/contribute
This project is MIT licensed. For the full license, see LICENSE.
We take security seriously. Please contact security@lbry.io regarding any security issues. Our PGP key is here if you need it.
The primary contact for this project is @akinwale (akinwale@lbry.com)