Pages:
Author

Topic: [ANN] [QRK] Quark | Core 0.10 upgrade - page 30. (Read 1031025 times)

legendary
Activity: 2688
Merit: 1240
January 25, 2016, 11:05:36 PM
Hey guys, I am now finally and ultimately closing the suprnova quark pool.

If you still want to mine this coin, please move elsewhere.

Please stop mining and withdraw your remaining funds

Thanks
hero member
Activity: 611
Merit: 500
Anglo Saxon Crypto Enthusiast
January 25, 2016, 11:01:46 PM
Ok I will do that Wink
However this is strange, coin is so "old", has remarkable properties,
had some beautiful moments, keeps it's prices (more or less), has some volume on btc38, etc. ...
So why it is not available on many different Exchanges?


Weak network due to super low rewards for miners because the creators of this coin decided the majority of the coins should go to the first few people.

People had months to get mining before the block reward became 1 quark, and there has been plenty of time since then to discover the coin and purchase a share. The network works and will scale when the interest is there. If you care at all about fundamentals in this crypto market you should own some.
sr. member
Activity: 637
Merit: 250
January 25, 2016, 05:43:06 PM
If there was a mac wallet available for Quark I would mine it all day long, but there isn't.  
At least one that can sync beyond the last PC update.
legendary
Activity: 966
Merit: 1052
January 25, 2016, 04:57:07 PM
Ok I will do that Wink
However this is strange, coin is so "old", has remarkable properties,
had some beautiful moments, keeps it's prices (more or less), has some volume on btc38, etc. ...
So why it is not available on many different Exchanges?


Weak network due to super low rewards for miners because the creators of this coin decided the majority of the coins should go to the first few people.
sr. member
Activity: 355
Merit: 250
January 25, 2016, 04:08:17 PM
Ok I will do that Wink
However this is strange, coin is so "old", has remarkable properties,
had some beautiful moments, keeps it's prices (more or less), has some volume on btc38, etc. ...
So why it is not available on many different Exchanges?
legendary
Activity: 1155
Merit: 1174
https://keybase.io/lasergun
January 25, 2016, 12:05:55 PM
Did it also, is there such a voting also for bittrex? ;-)

Unfortunately, there is no such voting for bittrex, but I think we should submit our requests to add QRK to the exchange via their support system: https://bittrex.zendesk.com/hc/en-us/requests/new.
sr. member
Activity: 355
Merit: 250
January 24, 2016, 05:33:03 AM
Did it also, is there such a voting also for bittrex? ;-)
newbie
Activity: 38
Merit: 0
January 24, 2016, 05:21:32 AM
Did my bit with Poloniex  Grin
sr. member
Activity: 392
Merit: 250
my magic is growing strong[er]
January 23, 2016, 07:50:54 PM


QRK will be added on Cryptopia soon. Regarding other exchanges we need more support...


I've added mine.
legendary
Activity: 1155
Merit: 1174
https://keybase.io/lasergun
January 23, 2016, 05:50:00 PM
It seems that there is no Community to fight for it ...

QRK will be added on Cryptopia soon. Regarding other exchanges we need more support...
sr. member
Activity: 355
Merit: 250
January 23, 2016, 05:10:15 PM
It seems that there is no Community to fight for it ...
legendary
Activity: 1155
Merit: 1174
https://keybase.io/lasergun
January 23, 2016, 03:52:55 PM
yep I know that one, however there is no volume there...

If you want QRK to be listed  @ Poloniex, fill up this form https://poloniex.com/coinRequest (everybody);
                                        @ Yobit.net, donate to 1CKomTpF4j1Cgj1DpxPUjP5wEjDHCjWjhw (0.1 goal);
                                        @ Cryptopia, vote here https://www.cryptopia.co.nz/Home/Voting.
                                     
sr. member
Activity: 355
Merit: 250
January 23, 2016, 03:41:49 PM
yep I know that one, however there is no volume there...
legendary
Activity: 1155
Merit: 1174
https://keybase.io/lasergun
January 23, 2016, 03:29:34 PM
Is there any chance for quark to be on some exchanges other than btc38?? poloniex, bittrex?

https://bter.com/trade/qrk_btc
sr. member
Activity: 355
Merit: 250
January 23, 2016, 03:19:19 PM
Is there any chance for quark to be on some exchanges other than btc38?? poloniex, bittrex?
member
Activity: 63
Merit: 10
January 22, 2016, 07:18:56 AM
When was the hard fork? And what did it do? What was the purpose of the fork?
I can't see any easy to find discussion on it.

bump question?
newbie
Activity: 38
Merit: 0
January 20, 2016, 04:54:44 AM
Thanks. Will look into it this weekend, need a quiet house I feel.  Wink
member
Activity: 87
Merit: 10
January 19, 2016, 07:41:30 PM
Current Quarkcoin sources have a bug if compiling with Boost 1.58 libraries, getting a error like this:
Code:
/usr/include/boost/variant/get.hpp:178:5: error: invalid application of 'sizeof' to incomplete type 'boost::STATIC_ASSERTION_FAILURE

For Boost 1.58, a modification is needed in src/rpctransaction.cpp at line 299 where
Code:
const CScriptID& hash = boost::get(address);
should be
Code:
const CScriptID& hash = boost::get(address);


Make sure your packages aren't too old, do a dist-upgrade to newer Ubuntu version first to get newer packages.

I'm compiling well on Debian 9 with parameter --with-incompatible-bdb, having installed db5.3 and db5.3++ libraries and their dev packages db5.3-dev & db5.3++-dev.

Compile in next order, if building is done with autotools:
Code:
./autogen.sh
./configure --with-incompatible-bdb
make
After compilation the completed build is found at /quark/src/ in this case. Stripping the freshly built binaries is advised, some makefiles will include stripping though.
Code:
strip 
Then move binaries to location where want to run them from, f.e. coin's base directory.

I've had successful wallets builds with BDB 5.1, but recommend to use known working BDB 4.8 manual build or 5.3 from repositories.
Heard that 5.1 had problems, 4.8 does work with old wallets, 5.3 works with incompatible bdb parameter.

BDB 4.8 manual install, install for example under /opt:
Code:
wget http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz
tar -xvf db-4.8.30.NC.tar.gz
cd db-4.8.30.NC/build_unix
mkdir -p build
BDB_PREFIX=$(pwd)/build
../dist/configure --disable-shared --enable-cxx --with-pic --prefix=$BDB_PREFIX
make install
newbie
Activity: 38
Merit: 0
January 19, 2016, 07:39:41 AM
Ok I give up trying to get this wallet to compile in Ubuntu 15.04

Is it possible to get a linux wallet download on the official quark web site, please?
hero member
Activity: 1064
Merit: 500
MOBU
January 14, 2016, 08:54:02 AM
Yea....it wasn't gonna budge.   Huh   Got rid of what I needed too, but could sure use a bootstrap. The chain is ~2.5 yrs. old. It'll take forever.  Angry  

Thanks!

Here is: quarkcoin-blockchain-13012016.zip.

Thanks, appreciated!!
Pages:
Jump to: