This utility allows you to send a PayForBlob transaction in blockchain Celestia using the UI.
sudo apt install python3-pip python3-venv git -y
sudo apt-get update
sudo apt-get install iptables
This command is used to add a rule to the INPUT chain of the iptables table that allows incoming TCP connections on port 8000.
sudo iptables -A INPUT -p tcp --dport 8000 -j ACCEPT
git clone git@github.com:AlexBesedin/PayForBlob-transactions-V1.0.git
Go to the directory with the project. Activate the virtual environment and install the packages from requirements.txt
cd payforblob/
python3 -m venv venv
. venv/bin/activate
python -m pip install -r requirements.txt
python manage.py runserver 0.0.0.0:8000