Bitcoin Forum
June 17, 2024, 04:15:35 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 [38] 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 ... 1041 »
  Print  
Author Topic: [ANN][Main] Bitcore- BTX - 1:1 Backed BSC Bridge BTX <->SBTX  (Read 729111 times)
Limx Dev (OP)
Copper Member
Legendary
*
Offline Offline

Activity: 2324
Merit: 1348



View Profile
June 04, 2017, 04:26:19 PM
 #741

Where can I find the after-6-months distribution formula in the source code ?

We make some payouts after 6 months. We have planned some rounds for that. We will send the amount to every BTX address.

Bitcore BTX - a UTXO fork of Bitcoin - since 2017
___██ WebSite
██ Telegram
___██ Github
██ Github - Releases/ Wallets
___██ SBTX Pancakeswap
██ ChainzID Explorer
___██ UTXO fork
██ Coinmarketcap.com
Wexlike
Legendary
*
Offline Offline

Activity: 1473
Merit: 1086



View Profile
June 04, 2017, 04:43:08 PM
 #742

Where can I find the after-6-months distribution formula in the source code ?

We make some payouts after 6 months. We have planned some rounds for that. We will send the amount to every BTX address.

Sorry if this was already asked: Are mined/bought coins included for the distribution rounds or only the claimed coins ?
Mrbates
Sr. Member
****
Offline Offline

Activity: 546
Merit: 250

Maybe a fed.


View Profile
June 04, 2017, 04:46:20 PM
 #743

Where can I find the after-6-months distribution formula in the source code ?

We make some payouts after 6 months. We have planned some rounds for that. We will send the amount to every BTX address.

Sorry if this was already asked: Are mined/bought coins included for the distribution rounds or only the claimed coins ?

I asked the same and the reply was along the lines of all btx holders will be in the final distribution round.

ltcnim
Legendary
*
Offline Offline

Activity: 914
Merit: 1001



View Profile
June 04, 2017, 04:50:30 PM
 #744

Reading through the chat I don't find people with wallet-installation-problems, so I'm reposting this:

I've been trying to get this wallet running for a while now. I'm not sure what I'm doing wrong.
It comes with a bitcore-qt binary, when I run it, I get this:
Code:
./bitcore-qt: error while loading shared libraries: libboost_system.so.1.58.0: cannot open shared object file: No such file or directory
I did what should have solved this (according to Google), but I get the same results.
When all else fails, read the instructions, so I did the ./autogen.sh, ./configure and make. It all runs fine, but in the end I still have the same binaries I had already.

I'm running in a VM anyway, I'd be happy to install a different Linux distribution if that means it works out of the box. Any recommendations?

Additional question: do I get it right BitCore uses the same address format as Bitcoin? If so, can I let it airdrop to an Bitcoin address I just hold the private key to, until I get the wallet working

First make sure you have the complete boost package

Code:
sudo apt-get install libboost-all-dev

And make sure, the system can find your boost libs:

Code:
sudo ldconfig
Thank you for your reply Smiley
I have libboost-all-dev installed already, and ldconfig doesn't output anything, so I assume that's okay too.

Hmm...thats strange...but you do have the mentioned file in your lib path somewhere, right? Can you do a

Quote
locate libboost_system.so

?

LoyceV
Legendary
*
Offline Offline

Activity: 3346
Merit: 16832


Thick-Skinned Gang Leader and Golden Feather 2021


View Profile WWW
June 04, 2017, 06:13:54 PM
 #745

Reading through the chat I don't find people with wallet-installation-problems, so I'm reposting this:

I've been trying to get this wallet running for a while now. I'm not sure what I'm doing wrong.
It comes with a bitcore-qt binary, when I run it, I get this:
Code:
./bitcore-qt: error while loading shared libraries: libboost_system.so.1.58.0: cannot open shared object file: No such file or directory
I did what should have solved this (according to Google), but I get the same results.
When all else fails, read the instructions, so I did the ./autogen.sh, ./configure and make. It all runs fine, but in the end I still have the same binaries I had already.

I'm running in a VM anyway, I'd be happy to install a different Linux distribution if that means it works out of the box. Any recommendations?

Additional question: do I get it right BitCore uses the same address format as Bitcoin? If so, can I let it airdrop to an Bitcoin address I just hold the private key to, until I get the wallet working

First make sure you have the complete boost package

Code:
sudo apt-get install libboost-all-dev

And make sure, the system can find your boost libs:

Code:
sudo ldconfig
Thank you for your reply Smiley
I have libboost-all-dev installed already, and ldconfig doesn't output anything, so I assume that's okay too.

Hmm...thats strange...but you do have the mentioned file in your lib path somewhere, right? Can you do a

Quote
locate libboost_system.so

?
I have this:
Code:
bitcore@desktop:~$ ls -l `locate libboost_system.so`
lrwxrwxrwx 1 root root    25 aug  3  2016 /usr/lib/x86_64-linux-gnu/libboost_system.so -> libboost_system.so.1.61.0
-rw-r--r-- 1 root root 14496 aug  3  2016 /usr/lib/x86_64-linux-gnu/libboost_system.so.1.61.0
Is there a recommended Linux-distribution that works easier or even out of the box? In that case I can just install that distro.

ltcnim
Legendary
*
Offline Offline

Activity: 914
Merit: 1001



View Profile
June 04, 2017, 09:56:09 PM
 #746

well...as you can see, you don't have the needed lib. You need 1.58, but you have 1.61. So there are two possible solutions:

1. depending on your system (ubuntu etc.) check if the repositories have the 1.58 still available (maybe remove your current version first, if you don't need them anymore):

Code:
sudo apt-get install libboost1.58-all-dev


2. Build 1.58 yourself:

Code:
wget http://sourceforge.net/projects/boost/files/boost/1.58.0/boost_1_58_0.tar.gz
tar xvf boost_1_58_0.tar.gz
cd boost_1_58_0
./bootstrap.sh
./b2 install


I don't think that there is a big difference which exact linux you use. I have ubuntu, mint and debian, and they are more or less the same. Ubuntu seems to have the best repositories.

LoyceV
Legendary
*
Offline Offline

Activity: 3346
Merit: 16832


Thick-Skinned Gang Leader and Golden Feather 2021


View Profile WWW
June 05, 2017, 08:15:48 AM
 #747

well...as you can see, you don't have the needed lib. You need 1.58, but you have 1.61.
Indeed, I didn't check the version number. Thanks!

Quote
1. depending on your system (ubuntu etc.) check if the repositories have the 1.58 still available (maybe remove your current version first, if you don't need them anymore):

Code:
sudo apt-get install libboost1.58-all-dev
This is no longer available.

Quote
2. Build 1.58 yourself:

Code:
wget http://sourceforge.net/projects/boost/files/boost/1.58.0/boost_1_58_0.tar.gz
tar xvf boost_1_58_0.tar.gz
cd boost_1_58_0
./bootstrap.sh
./b2 install
This works, but "skips 6 targets". I get this:
Code:
gcc.archive bin.v2/libs/test/build/gcc-6.2.0/release/link-static/threading-multi/libboost_test_exec_monitor.a
common.copy /usr/local/lib/libboost_test_exec_monitor.a
...failed updating 2 targets...
...skipped 6 targets...
...updated 12639 targets..

Trying to run the wallet gives the same error:
Code:
./bitcore-qt 
./bitcore-qt: error while loading shared libraries: libboost_system.so.1.58.0: cannot open shared object file: No such file or directory
Back to ldconfig and try again:
Code:
./bitcore-qt 
./bitcore-qt: error while loading shared libraries: libprotobuf.so.9: cannot open shared object file: No such file or directory
Here too, I have a newer version: /usr/lib/x86_64-linux-gnu/libprotobuf.so.10.0.0

Quote
I don't think that there is a big difference which exact linux you use. I have ubuntu, mint and debian, and they are more or less the same. Ubuntu seems to have the best repositories.
Is there an Ubuntu-version that has it work out of the box, with older libraries?

ocminer
Legendary
*
Offline Offline

Activity: 2660
Merit: 1240



View Profile WWW
June 05, 2017, 08:18:31 AM
 #748

Is there any problem with suprnova pool? It seems it doesn't update and I have connection problems with web page  Huh

The server borked yesterday somehow... It's fixed now !

suprnova pools - reliable mining pools - #suprnova on freenet
https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
kbs1
Jr. Member
*
Offline Offline

Activity: 107
Merit: 1


View Profile
June 05, 2017, 12:31:07 PM
 #749

LoyceV: just compile it from source.. works a treat (with qt5 gui).

https://xdag.org - reliable World-Wide XDAG mining pool with automatic failover and extra mining rewards!
coinstash
Full Member
***
Offline Offline

Activity: 179
Merit: 100


G'day!


View Profile WWW
June 05, 2017, 12:40:57 PM
 #750

You guys do know that the symbol BTX is already in use, right?

https://bitcointalk.org/index.php?topic=1051266

HOdlcoin tip jar: HHodLxkjawXxt86EnDB1i8hCxkC4exGvab
Limx Dev (OP)
Copper Member
Legendary
*
Offline Offline

Activity: 2324
Merit: 1348



View Profile
June 05, 2017, 12:54:45 PM
 #751

You guys do know that the symbol BTX is already in use, right?

https://bitcointalk.org/index.php?topic=1051266


Hello, yes we know that. It is not perfect. Kind Regards Christian

Bitcore BTX - a UTXO fork of Bitcoin - since 2017
___██ WebSite
██ Telegram
___██ Github
██ Github - Releases/ Wallets
___██ SBTX Pancakeswap
██ ChainzID Explorer
___██ UTXO fork
██ Coinmarketcap.com
ltcnim
Legendary
*
Offline Offline

Activity: 914
Merit: 1001



View Profile
June 05, 2017, 01:13:48 PM
 #752

well...as you can see, you don't have the needed lib. You need 1.58, but you have 1.61.
Indeed, I didn't check the version number. Thanks!

Quote
1. depending on your system (ubuntu etc.) check if the repositories have the 1.58 still available (maybe remove your current version first, if you don't need them anymore):

Code:
sudo apt-get install libboost1.58-all-dev
This is no longer available.

Quote
2. Build 1.58 yourself:

Code:
wget http://sourceforge.net/projects/boost/files/boost/1.58.0/boost_1_58_0.tar.gz
tar xvf boost_1_58_0.tar.gz
cd boost_1_58_0
./bootstrap.sh
./b2 install
This works, but "skips 6 targets". I get this:
Code:
gcc.archive bin.v2/libs/test/build/gcc-6.2.0/release/link-static/threading-multi/libboost_test_exec_monitor.a
common.copy /usr/local/lib/libboost_test_exec_monitor.a
...failed updating 2 targets...
...skipped 6 targets...
...updated 12639 targets..

Trying to run the wallet gives the same error:
Code:
./bitcore-qt 
./bitcore-qt: error while loading shared libraries: libboost_system.so.1.58.0: cannot open shared object file: No such file or directory
Back to ldconfig and try again:
Code:
./bitcore-qt 
./bitcore-qt: error while loading shared libraries: libprotobuf.so.9: cannot open shared object file: No such file or directory
Here too, I have a newer version: /usr/lib/x86_64-linux-gnu/libprotobuf.so.10.0.0

Quote
I don't think that there is a big difference which exact linux you use. I have ubuntu, mint and debian, and they are more or less the same. Ubuntu seems to have the best repositories.
Is there an Ubuntu-version that has it work out of the box, with older libraries?

Well, you would need to build libprotobuf 9 then. Other possibilities: Try ubuntu 16.04 LTS, or, and that would be a simpler thing maybe: build the wallet yourself with your own dependencies. So you can use boost1.61 etc.

LoyceV
Legendary
*
Offline Offline

Activity: 3346
Merit: 16832


Thick-Skinned Gang Leader and Golden Feather 2021


View Profile WWW
June 05, 2017, 01:31:56 PM
 #753

Well, you would need to build libprotobuf 9 then. Other possibilities: Try ubuntu 16.04 LTS, or, and that would be a simpler thing maybe: build the wallet yourself with your own dependencies. So you can use boost1.61 etc.
Building myself was the other thing that failed. I'll try some different Ubuntu-versions first, and will report back here if it works or not.

kbs1
Jr. Member
*
Offline Offline

Activity: 107
Merit: 1


View Profile
June 05, 2017, 02:00:38 PM
 #754

Just follow this and you're good:

https://michael.mckinnon.id.au/2016/05/13/building-a-namecoin-server-with-ubuntu-16-04/

worked for me on ubuntu server 16.04 lts. The only thing you really need to compile as a dependency is berkeleydb, other stuff can be simply installed via apt-get, and the autoconf and configure will succeed, and you can build. Post your configure output where it failed if any trouble.

https://xdag.org - reliable World-Wide XDAG mining pool with automatic failover and extra mining rewards!
vingaard
Legendary
*
Offline Offline

Activity: 1246
Merit: 1011



View Profile
June 05, 2017, 03:32:57 PM
 #755

Is there any problem with suprnova pool? It seems it doesn't update and I have connection problems with web page  Huh

The server borked yesterday somehow... It's fixed now !

Probably a silly question but I can't conect btx.suprnova.cc with chrome browser (miner connects fine), the only way to connect is using the TOR network... I don't have any problem with other suprnova pools... only with btx pool... any ideas?
ocminer
Legendary
*
Offline Offline

Activity: 2660
Merit: 1240



View Profile WWW
June 06, 2017, 01:11:20 PM
 #756

Is there any problem with suprnova pool? It seems it doesn't update and I have connection problems with web page  Huh

The server borked yesterday somehow... It's fixed now !

Probably a silly question but I can't conect btx.suprnova.cc with chrome browser (miner connects fine), the only way to connect is using the TOR network... I don't have any problem with other suprnova pools... only with btx pool... any ideas?

Should be fixed now, had a superhysteric firewall setting there which probably blocked some legit requests as well

suprnova pools - reliable mining pools - #suprnova on freenet
https://www.suprnova.cc - FOLLOW us @ Twitter ! twitter.com/SuprnovaPools
vingaard
Legendary
*
Offline Offline

Activity: 1246
Merit: 1011



View Profile
June 06, 2017, 02:37:09 PM
 #757

Is there any problem with suprnova pool? It seems it doesn't update and I have connection problems with web page  Huh

The server borked yesterday somehow... It's fixed now !

Probably a silly question but I can't conect btx.suprnova.cc with chrome browser (miner connects fine), the only way to connect is using the TOR network... I don't have any problem with other suprnova pools... only with btx pool... any ideas?

Should be fixed now, had a superhysteric firewall setting there which probably blocked some legit requests as well

Ok... all is working fine now... thanks  Wink
andrew24p
Sr. Member
****
Offline Offline

Activity: 378
Merit: 250



View Profile
June 06, 2017, 10:06:53 PM
 #758

accumulate for 6 months, and then get a shitload BTX, THAT is my plan.

█▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█
█                                                                                                                         █
█                                                                                                                         █
█          ██     ██       ▄█▄        ██        ██     ▄██████▄    ██████████    ████████    ██████▄                      █
█          ██     ██       ███        ██        ██     ██     ██       ██        ██          ██    ██                     █
█          ██     ██      ██ ██       ███      ███     ██     ██       ██        ██          ██    ██                     █
█          ██     ██     ▄██ ██▄      ████    ████     ██              ██        ██          ██    ██                     █
█          █████████     ██   ██      ██ ██  ██ ██      ▀█████▄        ██        ███████     ██   ▄█▀                     █
█          ██     ██     ██   ██      ██  █▄▄█  ██            ██       ██        ██          █████                        █
█          ██     ██    ▄███████▄     ██  ████  ██     ██     ██       ██        ██          ██   ██                      █
█          ██     ██    ██     ██     ██   ██   ██     ██     ██       ██        ██          ██    ██                     █
█          ██     ██    ██     ██     ██   ██   ██     ▀██████▀        ██        ████████    ██     ██                    █
█▄▄▄▄▄▄▄▄
M   A   R   K   E   T   P   L  A   C   E  ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█

 
                     The first token offering total buyback
─────❯❯❯ICO Starts : 28th of November 2017❮❮❮─────

 
❖TWITTER
❖TELEGRAM
❖WHITEPAPER
❖FACEBOOK
❖ANN THREAD
SLACK
Bombardier
Sr. Member
****
Offline Offline

Activity: 588
Merit: 264



View Profile
June 06, 2017, 11:18:39 PM
 #759

Can u please post your GPUs hash rates, because I want to buy second video card and i want to pay around $200 for it.

Currently I'm using for BTX MSI GTX 1050Ti 4gb at 6200 kh/s

thanks
LoyceV
Legendary
*
Offline Offline

Activity: 3346
Merit: 16832


Thick-Skinned Gang Leader and Golden Feather 2021


View Profile WWW
June 07, 2017, 12:02:19 PM
 #760

After some fiddling, I finally got the BitCore-wallet to work in Ubuntu 16 LTS. It just didn't work in my Lubuntu.
I can now confirm Bitcore-private-keys are just completely the same format as Bitcoin keys.

Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 [38] 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 ... 1041 »
  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!