Pages:
Author

Topic: [ANN][YDA][POOL][CPU Mining] YadaCoin - 🔵 yadacoin.io LIVE! - page 10. (Read 26630 times)

hero member
Activity: 1484
Merit: 505
newbie
Activity: 198
Merit: 0
I've been checking on the application of YadaCoin in playstore, but why do the UI of the application is just look like that.
In my opinion, you will hardly get any user to download the app cause the UI is (sorry to say) it's not interesting at all.

Understood, this is very early software but also, YadaCoin is a protocol for developers to build social media applications that share content, users, and user relationships. This app is more like a mobile wallet and a demo of the fundamental features of YadaCoin. We want developers to make exciting apps using YadaCoin. We don't want to be the next Facebook. We want to come together to provide a better user experience than Facebook.
sr. member
Activity: 581
Merit: 250
I've been checking on the application of YadaCoin in playstore, but why do the UI of the application is just look like that.
In my opinion, you will hardly get any user to download the app cause the UI is (sorry to say) it's not interesting at all.
newbie
Activity: 198
Merit: 0
Which hashing algorithm does this coin use for mining?

sha256
hero member
Activity: 673
Merit: 500
Which hashing algorithm does this coin use for mining?
jr. member
Activity: 504
Merit: 3
Guys here is the guide on how to mine this coin STEP BY STEP.

HOW TO MINE GUIDE
OPEN PORT 8000 tcp/udp in your sever

sudo mkdir /data/db -p
sudo chmod 777 /data/db
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 2930ADAE8CAF5059EE73BB4B58712A2291FA4AD5

sudo echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.6 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-3.6.list

sudo apt update
sudo apt install -y mongodb-org
sudo systemctl enable mongod.service
sudo systemctl start mongod.service
sudo apt install libxml2-dev libxmlsec1-dev
cd ~
git clone https://github.com/pdxwebdev/yadacoin.git
cd yadacoin
sudo apt install python-pip
sudo pip install virtualenv
virtualenv venv
source venv/bin/activate
pip install -r requirements.txt

COPY THE PRIVATE KEY AND PUBLIIC KEY and address

python utils/generate_config.py > config/config.json


now CLOSE the actual instance and open THREE NEW ones

in the first one write this:

cd ~/yadacoin
source venv/bin/activate
./scripts/start_mine.sh


In the second write this

cd ~/yadacoin
source venv/bin/activate
./scripts/start_consensus.sh


In the third this

cd ~/yadacoin
source venv/bin/activate
./scripts/start_serve.sh

You are mining now.

If you want to run the 3 instances in abckground and also have them auto start when the system boot then follow this other add-on guide:

Open a new ssh

cd ~/yadacoin
source venv/bin/activate
git pull origin master
python utils/generate_services.py
sudo cp services/* /lib/systemd/system/.

sudo systemctl daemon-reload
sudo systemctl enable yadacoin-serve
sudo systemctl enable yadacoin-mine
sudo systemctl enable yadacoin-consensus
sudo service yadacoin-mine start
sudo service yadacoin-consensus start
sudo service yadacoin-serve start
newbie
Activity: 198
Merit: 0
What are your requirements for becoming a part of the development team of Yada Coin? Thanks in advance.

Knowledge of Python 2 and MongoDB. There's some diffie-hellman stuff but nothing crazy. I use alot of bitcoin libraries so any bitcoin development experience definitely helps!


Let's chat on discord. https://discord.gg/JEDJaFS
member
Activity: 193
Merit: 10
Do you need a French translation? I can help you with this. Write to me, please, if interested. Thanks.
member
Activity: 177
Merit: 10
What are your requirements for becoming a part of the development team of Yada Coin? Thanks in advance.
newbie
Activity: 198
Merit: 0
Managed to install the requirements by manually removing some python libs.

This: python p2p.py serve config.json peers.json
doesn't work, it doesn't recognize the parameters. The scripts do seem to work, but it looks like it hangs.

./start_serve.sh
/usr/local/lib/python2.7/dist-packages/cryptography/hazmat/primitives/constant_time.py:26: CryptographyDeprecationWarning: Support for your Python version is deprecated. The next version of cryptography will remove support. Please upgrade to a 2.7.x release that supports hmac.compare_digest as soon as possible.
  utils.DeprecatedIn23,

(11461) wsgi starting up on http://127.0.0.1:8000

is there a log somewhere?

I've revised the docs for the command to read:
Code:
python p2p.py serve config.json

You can get faster responses on discord if that's an option for you. Here's an invite link: https://discord.gg/JEDJaFS
newbie
Activity: 198
Merit: 0
how can we get tokens

You can get tokens by downloading the source and running the miner from terminal.

https://github.com/pdxwebdev/yadacoin

Open competitive mining is the only way to acquire coins until YadaCoin is listed on an exchange which will hopefully be happening soon.
legendary
Activity: 1453
Merit: 1030
Managed to install the requirements by manually removing some python libs.

This: python p2p.py serve config.json peers.json
doesn't work, it doesn't recognize the parameters. The scripts do seem to work, but it looks like it hangs.

./start_serve.sh
/usr/local/lib/python2.7/dist-packages/cryptography/hazmat/primitives/constant_time.py:26: CryptographyDeprecationWarning: Support for your Python version is deprecated. The next version of cryptography will remove support. Please upgrade to a 2.7.x release that supports hmac.compare_digest as soon as possible.
  utils.DeprecatedIn23,

(11461) wsgi starting up on http://127.0.0.1:8000

is there a log somewhere?
newbie
Activity: 86
Merit: 0
how can we get tokens
newbie
Activity: 198
Merit: 0
pip 18.0 from /usr/local/lib/python2.7/dist-packages/pip (python 2.7)

Try installing it into a virtualenv

Code:
sudo pip install virtualenv
Code:
virtualenv venv
Code:
source venv/bin/activate
Code:
pip install -r requirements.txt
legendary
Activity: 1453
Merit: 1030
pip 18.0 from /usr/local/lib/python2.7/dist-packages/pip (python 2.7)

edit: Hm..."not for serious use"

https://github.com/bradjasper/python-p2p
newbie
Activity: 198
Merit: 0
Tried it. It installs the requirements, and after manually adding a whole bunch of missing things via 'pip install', the generate_config.py worked.

It is unclear where config.py and peers.py have to be, but I'm guessing in the 'config' folder. Starting the server or the concensus errors with:

  File "p2p.py", line 14, in
    from socketIO_client import SocketIO, BaseNamespace
ImportError: No module named socketIO_client

I can't pip install this, because it gives this error:

Cannot uninstall 'urllib3'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.




When you do
Code:
pip --version
what do you get?
legendary
Activity: 1453
Merit: 1030
Tried it. It installs the requirements, and after manually adding a whole bunch of missing things via 'pip install', the generate_config.py worked.

It is unclear where config.py and peers.py have to be, but I'm guessing in the 'config' folder. Starting the server or the concensus errors with:

  File "p2p.py", line 14, in
    from socketIO_client import SocketIO, BaseNamespace
ImportError: No module named socketIO_client

I can't pip install this, because it gives this error:

Cannot uninstall 'urllib3'. It is a distutils installed project and thus we cannot accurately determine which files belong to it which would lead to only a partial uninstall.


newbie
Activity: 198
Merit: 0
What version of python is required? Using 3.5 in venv, getting this error.

Downloading/unpacking bitarray==0.8.2 (from -r requirements.txt (line 6))
  Could not find a version that satisfies the requirement bitarray==0.8.2 (from -r requirements.txt (line 6)) (from versions: 0.1.0, 0.2.0, 0.2.1, 0.2.2, 0.2.3, 0.2.4, 0.2.5, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4, 0.3.5, 0.4.0, 0.5.0, 0.5.1, 0.5.2, 0.6.0, 0.7.0, 0.8.0, 0.8.1, 0.8.2.1, 0.8.3)
Cleaning up...
No distributions matching the version for bitarray==0.8.2 (from -r requirements.txt (line 6))


Fixed. Update your repo
Code:
git pull origin master
then run
Code:
pip install -r requirements.txt
again.
newbie
Activity: 198
Merit: 0
What version of python is required? Using 3.5 in venv, getting this error.

Downloading/unpacking bitarray==0.8.2 (from -r requirements.txt (line 6))
  Could not find a version that satisfies the requirement bitarray==0.8.2 (from -r requirements.txt (line 6)) (from versions: 0.1.0, 0.2.0, 0.2.1, 0.2.2, 0.2.3, 0.2.4, 0.2.5, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4, 0.3.5, 0.4.0, 0.5.0, 0.5.1, 0.5.2, 0.6.0, 0.7.0, 0.8.0, 0.8.1, 0.8.2.1, 0.8.3)
Cleaning up...
No distributions matching the version for bitarray==0.8.2 (from -r requirements.txt (line 6))


Thanks, I'm looking into this now. Will have it fixed shortly, I'll let you know.
legendary
Activity: 1453
Merit: 1030
What version of python is required? Using 3.5 in venv, getting this error.

Downloading/unpacking bitarray==0.8.2 (from -r requirements.txt (line 6))
  Could not find a version that satisfies the requirement bitarray==0.8.2 (from -r requirements.txt (line 6)) (from versions: 0.1.0, 0.2.0, 0.2.1, 0.2.2, 0.2.3, 0.2.4, 0.2.5, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4, 0.3.5, 0.4.0, 0.5.0, 0.5.1, 0.5.2, 0.6.0, 0.7.0, 0.8.0, 0.8.1, 0.8.2.1, 0.8.3)
Cleaning up...
No distributions matching the version for bitarray==0.8.2 (from -r requirements.txt (line 6))
Pages:
Jump to: