Author

Topic: [ANN][RIC] Riecoin: constellations POW *CPU* HARD FORK successful, world record - page 171. (Read 685207 times)

hero member
Activity: 583
Merit: 505
CTO @ Flixxo, Riecoin dev
hi people!

I've been very busy these days... a couple of exchanges added support for RIC since last weekly update but I didn't find the time to update the website yet. They are in the OP though.
I'm the middle of a transition that is keeping me very busy. I quit my daily job: I'll be an entrepreneur and sometimes freelancer instead of an employee. I expect this means I'll have more time for RIC soon.

My immediate to-do list:

- new core release
- stratum miners/proxy
- and now, open source xpt pool server

And right after that:

- the paper!
- gpu miner

yours truly,
gatra
sr. member
Activity: 308
Merit: 250
Riecoin and Huntercoin to rule all!
Anyone know if we have a block explorer that can search by address?

Try this one: https://darmstadt.goxadidi.dk/cgi-bin/block/block_crawler.py/
doesn't show tx for an address, but dows show balance...

Doesn't work for me. Trying to create a lookup address wallet on faucet to show how much are left in faucet.
hero member
Activity: 583
Merit: 505
CTO @ Flixxo, Riecoin dev
Anyone know if we have a block explorer that can search by address?

Try this one: https://darmstadt.goxadidi.dk/cgi-bin/block/block_crawler.py/
doesn't show tx for an address, but dows show balance...
sr. member
Activity: 308
Merit: 250
Riecoin and Huntercoin to rule all!
sr. member
Activity: 308
Merit: 250
Riecoin and Huntercoin to rule all!
newbie
Activity: 39
Merit: 0
YPOOL will need to figure out a better way of handling developer's fees. Some form of client-side data encryption maybe necessary.
I believe the current solution is already good enough if you do it right.
My advice for anyone who wants to hide the fee: Read the comment for the method xptClient_addDeveloperFeeEntry() in xptMiner. The function's output is static so you can pass your fee address once and write down the output. Then you hardcode the same output directly in the network functions and skip the call to xptClient_addDeveloperFeeEntry(). This will stop 99.9% of people that try to mess with the developer fee as they can't find the address in cleartext anymore. Additional measures can always be taken, like storing the address encrypted and only decrypting it on-demand.

Keep in mind that the developer fee was designed to work with any xpt pool without requiring the pool operator to interfere. At the moment only ypool supports it though.
sr. member
Activity: 420
Merit: 250
trying to build the xptMiner in Debian now, but the compile instructions isn't at all that readable as it's all in one line.

Quote
wget http://mirrors.kernel.org/gnu/gmp/gmp-5.1.3.tar.bz2 tar xjvf gmp-5.1.3.tar.bz2 cd gmp-5.1.3 ./configure --enable-cxx make -j4 && sudo make install cd git clone https://github.com/clintar/xptMiner.git cd xptMiner LD_LIBRARY_PATH=/usr/local/lib make -j4 ./xptminer -u username.riecoinworkername -p workerpassword

Please, someone tell me where the CRLF's should have been?

I'm getting lost where it says " ./configure --enable-cxx make -j4 && sudo make install cd git clone https://github.com/clintar/xptMiner.git" as there isn't any git directory in gmp-5.1.3

I believe it is:

...


Thank you! This is how I made it work in the end:
Code:
wget http://mirrors.kernel.org/gnu/gmp/gmp-5.1.3.tar.bz2
tar xjvf gmp-5.1.3.tar.bz2
cd gmp-5.1.3
./configure --enable-cxx
make -j4 && sudo make install
cd ~
git clone https://github.com/dave-andersen/fastrie.git
cd fastrie/xptMiner
LD_LIBRARY_PATH=/usr/local/lib
make -j4
./xptminer -o ricpool.upcpu.com -u walletAddress.do1 -p x

To make it work with digitalocean I also had to do this before make -j4 :
Quote
nano Makefile

uncomment the compiler settings containing word native to keep only the last one with corei7 ...

It works!  Cheesy
sr. member
Activity: 378
Merit: 250
trying to build the xptMiner in Debian now, but the compile instructions isn't at all that readable as it's all in one line.

Quote
wget http://mirrors.kernel.org/gnu/gmp/gmp-5.1.3.tar.bz2 tar xjvf gmp-5.1.3.tar.bz2 cd gmp-5.1.3 ./configure --enable-cxx make -j4 && sudo make install cd git clone https://github.com/clintar/xptMiner.git cd xptMiner LD_LIBRARY_PATH=/usr/local/lib make -j4 ./xptminer -u username.riecoinworkername -p workerpassword

Please, someone tell me where the CRLF's should have been?

I'm getting lost where it says " ./configure --enable-cxx make -j4 && sudo make install cd git clone https://github.com/clintar/xptMiner.git" as there isn't any git directory in gmp-5.1.3

I believe it is:

Code:
wget http://mirrors.kernel.org/gnu/gmp/gmp-5.1.3.tar.bz2
tar xjvf gmp-5.1.3.tar.bz2
cd gmp-5.1.3
./configure --enable-cxx
make -j4 && sudo make install
cd
git clone https://github.com/clintar/xptMiner.git
cd xptMiner
LD_LIBRARY_PATH=/usr/local/lib make -j4
./xptminer -u username.riecoinworkername -p workerpassword
sr. member
Activity: 420
Merit: 250
trying to build the xptMiner in Debian now, but the compile instructions isn't at all that readable as it's all in one line.

Quote
wget http://mirrors.kernel.org/gnu/gmp/gmp-5.1.3.tar.bz2 tar xjvf gmp-5.1.3.tar.bz2 cd gmp-5.1.3 ./configure --enable-cxx make -j4 && sudo make install cd git clone https://github.com/clintar/xptMiner.git cd xptMiner LD_LIBRARY_PATH=/usr/local/lib make -j4 ./xptminer -u username.riecoinworkername -p workerpassword

Please, someone tell me where the CRLF's should have been?

I'm getting lost where it says " ./configure --enable-cxx make -j4 && sudo make install cd git clone https://github.com/clintar/xptMiner.git" as there isn't any git directory in gmp-5.1.3
sr. member
Activity: 278
Merit: 250
An open source pool server for Primecoin - x.pushthrough (XPT) protocol:

http://www.peercointalk.org/index.php?topic=2647.0
https://github.com/traffiq/candypool

It does not seem to have Riecoin miner support but can be added.

You can now setup your own private pool server and use your favorite XPT miner. YPOOL will need to figure out a better way of handling developer's fees. Some form of client-side data encryption maybe necessary.
sr. member
Activity: 308
Merit: 250
Riecoin and Huntercoin to rule all!
Anyone know if we have a block explorer that can search by address?

sr. member
Activity: 308
Merit: 250
Riecoin and Huntercoin to rule all!
riecoin foundation  only accept bitcoin or bitcoin and riecoin

We only accept Riecoin for now but a Bitcoin Multi-sig address is in the works as soon as enough members in the foundation provide their information to create the multisig address.
sr. member
Activity: 364
Merit: 250
riecoin foundation  only accept bitcoin or bitcoin and riecoin
sr. member
Activity: 251
Merit: 250
5 days behind..from the 9 days..from when i 1st posted complaining..lmao..what a bummer-__-

We're so used to instant lives it kills us these days. I know the feeling!
jr. member
Activity: 59
Merit: 10
5 days behind..from the 9 days..from when i 1st posted complaining..lmao..what a bummer-__-
legendary
Activity: 1151
Merit: 1003
well, im syncing on my laptop i7 980m, and its using 15% of my CPU to sync, and maybe i exagerated..maybe 6 hours 2 days..so 12 hours and still not synced -__-

I think it is a major flaw of RIC. Riecoin violates main rule for blockchain - "hard to find - easy to check". Dev team should do attention to optimizing wallet blockhain performance.
jr. member
Activity: 59
Merit: 10
well, im syncing on my laptop i7 980m, and its using 15% of my CPU to sync, and maybe i exagerated..maybe 6 hours 2 days..so 12 hours and still not synced -__-
sr. member
Activity: 560
Merit: 250
"Trading Platform of The Future!"
I think what you're really saying is that a BTC donation is more efficient given that you currently hold BTC and don't hold RIC.
No, I hold 5,000 RIC (RUiN6gZ6jPU4B9SYGydhbVAK8a2bGvDMnK). I believe in this coin and want to support it.

I suggest to accept bitcoin because it's much easier to convert BTC into USD and spend for marketing, etc.

~7000 here waiting for my wallet to update never used it once..8 weeks behind..its been around 2 days already 12 hours..each day and still not done updating...sigh..slowest thing in the world..5 days left to update.
Huh
Update, syncing shouldn't take longer than 10 minutes.
sr. member
Activity: 308
Merit: 250
Riecoin and Huntercoin to rule all!
I think what you're really saying is that a BTC donation is more efficient given that you currently hold BTC and don't hold RIC.
No, I hold 5,000 RIC (RUiN6gZ6jPU4B9SYGydhbVAK8a2bGvDMnK). I believe in this coin and want to support it.

I suggest to accept bitcoin because it's much easier to convert BTC into USD and spend for marketing, etc.

~7000 here waiting for my wallet to update never used it once..8 weeks behind..its been around 2 days already 12 hours..each day and still not done updating...sigh..slowest thing in the world..5 days left to update.
You should try Huntercoin...3 weeks and it took me 4 days..
jr. member
Activity: 59
Merit: 10
I think what you're really saying is that a BTC donation is more efficient given that you currently hold BTC and don't hold RIC.
No, I hold 5,000 RIC (RUiN6gZ6jPU4B9SYGydhbVAK8a2bGvDMnK). I believe in this coin and want to support it.

I suggest to accept bitcoin because it's much easier to convert BTC into USD and spend for marketing, etc.

~7000 here waiting for my wallet to update never used it once..8 weeks behind..its been around 2 days already 12 hours..each day and still not done updating...sigh..slowest thing in the world..5 days left to update.
Jump to: