mirror of
https://git.wownero.com/lza_menace/lza-wowbot.git
synced 2024-08-15 03:23:51 +00:00
adding repo/project meta
This commit is contained in:
commit
6d9bbff9e1
3 changed files with 75 additions and 0 deletions
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
freenode.pem
|
||||||
|
.venv
|
||||||
|
data
|
||||||
|
config.py
|
||||||
|
__pycache__
|
60
README.md
Normal file
60
README.md
Normal file
|
@ -0,0 +1,60 @@
|
||||||
|
## lza-wowbot
|
||||||
|
|
||||||
|
Doing Rust for everything was a PITA, so I'm going back to my roots and just doing a simple Python thing. Keep it ez anyways.
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
Not exactly the smoothest initialization for the bot right now; it's very stateful. You will need to spend some time creating an IRC account, generating keys, pulling container images, and setting up a wallet.
|
||||||
|
|
||||||
|
```
|
||||||
|
# pull latest wownero image
|
||||||
|
docker pull lalanza808/wownero
|
||||||
|
|
||||||
|
# generate new keys
|
||||||
|
openssl req -x509 -sha256 -new -newkey rsa:4096 -days 1000 -nodes -out freenode.pem -keyout freenode.pem
|
||||||
|
|
||||||
|
# get fingerprint
|
||||||
|
openssl x509 -in freenode.pem -outform der | sha1sum -b | cut -d' ' -f1
|
||||||
|
|
||||||
|
# use web IRC and authenticate
|
||||||
|
# /msg NickServ CERT ADD xxxxxxxxxxxxxxx
|
||||||
|
|
||||||
|
# initialize new wallet and retain seed
|
||||||
|
docker run --rm -it --name wow-wallet-init \
|
||||||
|
-v $(pwd)/data:/root \
|
||||||
|
wownero \
|
||||||
|
wownero-wallet-cli \
|
||||||
|
--daemon-address https://node.suchwow.xyz:443
|
||||||
|
--generate-new-wallet /root/wow \
|
||||||
|
--password testing \
|
||||||
|
|
||||||
|
# setup rpc process
|
||||||
|
docker run --rm -d --name wow-wallet \
|
||||||
|
-v $(pwd)/data:/root \
|
||||||
|
-p 8888:8888 \
|
||||||
|
wownero \
|
||||||
|
wownero-wallet-rpc \
|
||||||
|
--daemon-address https://node.suchwow.xyz:443 \
|
||||||
|
--wallet-file /root/wow \
|
||||||
|
--password testing \
|
||||||
|
--rpc-bind-port 8888 \
|
||||||
|
--rpc-bind-ip 0.0.0.0 \
|
||||||
|
--confirm-external-bind \
|
||||||
|
--rpc-login xxxx:yyyy \
|
||||||
|
--log-file /root/rpc.log
|
||||||
|
|
||||||
|
# setup tor process
|
||||||
|
pushd torsocks && docker build -t tor . && popd
|
||||||
|
docker run -p 9050:9050 --rm -d --name tor tor
|
||||||
|
|
||||||
|
# install torsocks
|
||||||
|
brew install torsocks
|
||||||
|
|
||||||
|
# install python dependencies
|
||||||
|
python3 -m venv .venv
|
||||||
|
source .venv/bin/activate
|
||||||
|
pip install -r requirements.txt
|
||||||
|
|
||||||
|
# use remote relay/bridge
|
||||||
|
torsocks python3 bot.py
|
||||||
|
```
|
10
requirements.txt
Normal file
10
requirements.txt
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
certifi==2020.6.20
|
||||||
|
chardet==3.0.4
|
||||||
|
idna==2.10
|
||||||
|
monero==0.7.3
|
||||||
|
pure-sasl==0.6.2
|
||||||
|
pydle==0.9.4
|
||||||
|
pysha3==1.0.2
|
||||||
|
requests==2.24.0
|
||||||
|
six==1.15.0
|
||||||
|
urllib3==1.25.9
|
Loading…
Reference in a new issue