Bitcoin Forum
May 25, 2024, 07:15:29 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 [403] 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 ... 844 »
  Print  
Author Topic: BiblePay | 10% to Orphan-Charity | RANDOMX MINING | Sanctuaries (Masternodes)  (Read 243167 times)
This is a self-moderated topic. If you do not want to be moderated by the person who started this topic, create a new topic. (345 posts by 1+ user deleted.)
smbbm
Sr. Member
****
Offline Offline

Activity: 258
Merit: 250


View Profile
June 08, 2018, 09:04:45 AM
 #8041

Guys, Yobit haven't reacted/responded to paid premium add coin request for almost three weeks (although BBP should have been added in 4-7 days since the request) so I canceled this effort with Yobit as I don't consider this exchange useful and trustworthy anymore. Let's look elsewhere.
znffal
Full Member
***
Offline Offline

Activity: 364
Merit: 102


View Profile
June 08, 2018, 09:34:46 AM
 #8042

New BiblePay News Article:
"Charity Profile: BLOOM"

https://medium.com/biblepay-news/charity-profile-bloom-9c968e92a45a


Additionally, I started a Steemit account. I will mirror the articles that I post on Medium to the Steemit account to try to reach a wide audience as possible.
https://steemit.com/@biblepay

Please let me know if you have any article ideas, or if you want to write something for BiblePay news.
Suggestions always welcome!
 
noxpost
Jr. Member
*
Offline Offline

Activity: 235
Merit: 3


View Profile
June 08, 2018, 10:22:23 AM
 #8043

seems like BiblePay crashes randomly every few weeks,
(Anyone know how I can automate it to restart Biblepay if BiblePay crashes and to delete the explorer/tmp/index.pid file as well?)
This is a bit "rough" in that I should have parameterized the working directory, or at least made it a variable, but here you go:

#!/bin/bash
fname="/home/biblepay/explorer/tmp/index.pid"
if [[ -f "$fname" ]];
then
        pid=$(</home/biblepay/explorer/tmp/index.pid)
        echo $pid
        ps -p $pid > /dev/null
        r=$?
        echo $r
        if [ $r -eq 0 ]; then
                exit 1
        else
                rm $fname
        fi
fi


I added this to crontab to run periodically. In cases where the index.pid is still there but the process is gone, it simply removes the index.pid file. Hope this helps.

I dont know bash at all (nor do I barely know any linux haha), but just to be sure I understand:

-f is checking if the file exists
index.pid is the indexing lock file with its process ID number inside of it
ps -p checks if the process is running
$? is the value of the last output that ran and since the previous value is going to dev/null, its the exit code status
"0 for successful executions and 1 or higher for failed executions."
and so if the process is still running, the bash script just exits, otherwise the process is done and the index.pid file gets removed

COOL!

So looks like the file doesnt need a .sh extension, if you have "#!/bin/bash" at the top then linux knows its a bash script
chmod +x to set it as executable

===

Also I successfully used nginx to forward nodejs port 3001 to port 80
https://eladnava.com/binding-nodejs-port-80-using-nginx/

===

Now I just need to figure out how to restart biblepayd if it crashes, systemd seemed a little complicated,
I may just use an infinite while loop bash script LOL

Have you considered using forever on biblepayd? Just like you can use "forever start bin/cluster" from your iquidus directory to keep the explorer running... I haven't tried that but I'd assume it would work. Just have to figure out pushing parameters to it. If you don't do that, then a crontab job that tries to kick it off periodically. If biblepayd is running the job will fail because it can't get a lock on the directory, I believe, so that would probably be a low risk option
togoshigekata
Full Member
***
Offline Offline

Activity: 1260
Merit: 115



View Profile
June 08, 2018, 10:26:47 AM
Last edit: June 08, 2018, 10:42:13 AM by togoshigekata
 #8044

Looks like you can put daemon=1 and txindex=1 in ~/.biblepaycore/biblepay.conf file
I think forever is nodejs only, I just tested using a crontab to run biblepayd every minute, and it works!

noxpost
Jr. Member
*
Offline Offline

Activity: 235
Merit: 3


View Profile
June 08, 2018, 12:35:27 PM
 #8045

Looks like you can put daemon=1 and txindex=1 in ~/.biblepaycore/biblepay.conf file
I think forever is nodejs only, I just tested using a crontab to run biblepayd every minute, and it works!

Sweet! I don't have any experience with forever and don't know nodejs very well (I work in a very different tech stack), but I'm glad you got it working with option #2 Smiley
bible_pay (OP)
Full Member
***
Offline Offline

Activity: 1176
Merit: 215


Jesus is the King of Kings and Lord of Lords


View Profile WWW
June 08, 2018, 02:27:48 PM
 #8046

Hello,

I'm trying to withdraw from pool.biblepay.org but it responds the following.

Sorry, Invalid Destination Address (Code: 65002)

Is there any problem with the pool?

It also shows the same PCs as working and missing...

Thanks in advance

Its up now Smiley.


🕇 BiblePay 🕇
🕇  Announcement | ForumSlackDiscordRedditTwitter | SouthXChange  🕇
🕇 A Christian cryptocurrency | Supporting orphans through a decentralized autonomous charity 🕇
togoshigekata
Full Member
***
Offline Offline

Activity: 1260
Merit: 115



View Profile
June 08, 2018, 05:38:11 PM
Last edit: June 08, 2018, 05:55:21 PM by togoshigekata
 #8047

New Block Explorer is up!

http://explorer.biblepay.org/

- upgraded from 2 CPU to 4 CPU
- setup nginx port 80 forwarding
- cron command to start BiblePay daemon every 1 minute
- cron command and bash script to restart indexing if its complete every 2 minutes

Thank you Licht and Noxpost for the help! and thank you Rob for the DNS update!

I posted all the notes publicly on the iquidus explore guide on Reddit:
https://www.reddit.com/r/BiblePay/comments/7elm7r/iquidus_block_explorer_guide/

togoshigekata
Full Member
***
Offline Offline

Activity: 1260
Merit: 115



View Profile
June 09, 2018, 01:21:01 PM
 #8048

I contacted CoinMarketCap and requested them to add this information:

1. Max Supply:
5,200,000,000 BBP
ANN Thread - "TOTAL CIRCULATION: 5.2 BILLION BY 2050"
https://bitcointalk.org/index.php?topic=2042657.0

2. Message Board:
Message Board - http://forum.biblepay.org
 
3. Explorers:
Explorer - http://explorer.biblepay.org
Explorer 2 - https://explorer.biblepay-central.org/
Explorer 3 - https://explorebiblepay.com/

4. Chat:
Chat - https://discordapp.com/invite/yWgbKdM

thesnat21
Jr. Member
*
Offline Offline

Activity: 490
Merit: 4


View Profile WWW
June 09, 2018, 08:28:55 PM
 #8049

With the next mandatory,  is there going to be another poll on the staking requirement?

Or is everyone happy with how things are currently?
znffal
Full Member
***
Offline Offline

Activity: 364
Merit: 102


View Profile
June 09, 2018, 09:26:54 PM
 #8050

With the next mandatory,  is there going to be another poll on the staking requirement?

Or is everyone happy with how things are currently?
I like how Sanctuaries + PoDC is locking up over 75% of our circulation. And the current stake seems to be working fine.

There is also the option for newbies to use the community developed PoDC pool

https://www.bbppool.com

I think it's still in beta
slovakia
Full Member
***
Offline Offline

Activity: 770
Merit: 100



View Profile
June 09, 2018, 09:39:29 PM
 #8051

With the next mandatory,  is there going to be another poll on the staking requirement?

Or is everyone happy with how things are currently?
it looks that our option 20bbp/1rac was/is optimal

SVK Noko
Newbie
*
Offline Offline

Activity: 267
Merit: 0


View Profile
June 10, 2018, 07:03:33 AM
 #8052

With the next mandatory,  is there going to be another poll on the staking requirement?

Or is everyone happy with how things are currently?

No everyone. But last poll showed that majority is happy. And its showing it was a great move in general. Its not possible and completely not good for the stability of the coin to have poll for the same thing more time in short time period. In my opinion staking system was good choice and Im happy we have it.
Donwoods001
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
June 10, 2018, 07:45:13 AM
 #8053

With the next mandatory,  is there going to be another poll on the staking requirement?

Or is everyone happy with how things are currently?

No everyone. But last poll showed that majority is happy. And its showing it was a great move in general. Its not possible and completely not good for the stability of the coin to have poll for the same thing more time in short time period. In my opinion staking system was good choice and Im happy we have it.

Of course the staking system is a wonderful choice mate
Dimarzio123
Newbie
*
Offline Offline

Activity: 75
Merit: 0


View Profile
June 10, 2018, 10:30:12 AM
 #8054

With the next mandatory,  is there going to be another poll on the staking requirement?

Or is everyone happy with how things are currently?

Staking @ 20BBP / RAC is good in general.

I would like to see an exception for small users / new comers up to 500 RAC maxi - where they would have to stake only 1 BBP
This would make it easy to get newcomers onboard.
The more users / supporters / followers we bring in - the better will be the prospects for BBP.

IMO: making multiple accts that have to stay below 500RAC is just not worth the effort - so would not be a workaround to avoid staking.

PM
 
znffal
Full Member
***
Offline Offline

Activity: 364
Merit: 102


View Profile
June 10, 2018, 10:41:54 AM
 #8055

With the next mandatory,  is there going to be another poll on the staking requirement?

Or is everyone happy with how things are currently?

Staking @ 20BBP / RAC is good in general.

I would like to see an exception for small users / new comers up to 500 RAC maxi - where they would have to stake only 1 BBP
This would make it easy to get newcomers onboard.
The more users / supporters / followers we bring in - the better will be the prospects for BBP.

IMO: making multiple accts that have to stay below 500RAC is just not worth the effort - so would not be a workaround to avoid staking.

PM
 


Just a note, people can mine on ARM mobile devices for no stake. Also, there is the option for people to use the community developed PoDC pool

https://www.bbppool.com

I have not used it myself.
jaapgvk
Full Member
***
Offline Offline

Activity: 574
Merit: 104



View Profile
June 10, 2018, 11:07:19 AM
 #8056

With the next mandatory,  is there going to be another poll on the staking requirement?

Or is everyone happy with how things are currently?

Staking @ 20BBP / RAC is good in general.

I would like to see an exception for small users / new comers up to 500 RAC maxi - where they would have to stake only 1 BBP
This would make it easy to get newcomers onboard.
The more users / supporters / followers we bring in - the better will be the prospects for BBP.

IMO: making multiple accts that have to stay below 500RAC is just not worth the effort - so would not be a workaround to avoid staking.

PM
 


Just a note, people can mine on ARM mobile devices for no stake. Also, there is the option for people to use the community developed PoDC pool

https://www.bbppool.com

I have not used it myself.

I think that the bbppool is a potentially awesome addition to our project Smiley It should give newcomers the ability to build up enough bbp so they can stake on their own without having to infest a lot of money from the get go.

This pool also releases me of the concerns I had with the 20BBP/RAC maybe being too high for newcomers. If it gets out of beta and proves to be fraud resistant, I think it could help us grow Smiley

🕇 BiblePay (BBP) | Reddit - Twitter - Forum - Discord | SouthXchange | Love one another, be a good Samaritan, help those in distress and spread the gospel 🕇
thesnat21
Jr. Member
*
Offline Offline

Activity: 490
Merit: 4


View Profile WWW
June 10, 2018, 12:44:37 PM
 #8057

Fair nuff, figured I'd ask the question Smiley


I think that the bbppool is a potentially awesome addition to our project Smiley It should give newcomers the ability to build up enough bbp so they can stake on their own without having to infest a lot of money from the get go.

This pool also releases me of the concerns I had with the 20BBP/RAC maybe being too high for newcomers. If it gets out of beta and proves to be fraud resistant, I think it could help us grow Smiley

My concern with this pool is the 35% fee(was said to climb to 65% earlier, I hope this doesn't happen). but otherwise I agree its a good start.
tomasarun
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
June 10, 2018, 02:04:57 PM
 #8058

Is it a coin for Marmons and for some sectarians?
jaapgvk
Full Member
***
Offline Offline

Activity: 574
Merit: 104



View Profile
June 10, 2018, 03:30:30 PM
 #8059

Fair nuff, figured I'd ask the question Smiley


I think that the bbppool is a potentially awesome addition to our project Smiley It should give newcomers the ability to build up enough bbp so they can stake on their own without having to infest a lot of money from the get go.

This pool also releases me of the concerns I had with the 20BBP/RAC maybe being too high for newcomers. If it gets out of beta and proves to be fraud resistant, I think it could help us grow Smiley

My concern with this pool is the 35% fee(was said to climb to 65% earlier, I hope this doesn't happen). but otherwise I agree its a good start.


I would like to see verifiable openness in the way these fees are being used. In the beginning I can imagine that most of the fees will be used to grow the stake (the pool needs to stake a lot of BBP in order to be able to work). Also, of course, some fees go to development, maintenance and 'profit' (and some of the fees will be used to repay people who have seeded the BBP needed for starting up). Besides that I would like to see excess BBP being used in lines with the spirit of BiblePay, preferably being sent to the orphan-wallet.

The high fees are needed though, because I think not having high fees will make it easier for botnets to find their way to our network.

Having said that, I see the pool as an experimental thing, but I'm curious what the future will bring Smiley

🕇 BiblePay (BBP) | Reddit - Twitter - Forum - Discord | SouthXchange | Love one another, be a good Samaritan, help those in distress and spread the gospel 🕇
slovakia
Full Member
***
Offline Offline

Activity: 770
Merit: 100



View Profile
June 10, 2018, 05:31:27 PM
 #8060

Is it a coin for Marmons and for some sectarians?
yes

Pages: « 1 ... 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 [403] 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 ... 844 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!