Pages:
Author

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

full member
Activity: 255
Merit: 102
uBlock.it Admin
What is wrong with this address?

https://chainz.cryptoid.info/ric/extraction.dws?1178374.htm

Explorer still shows over 8M RIC on Poloniex. What will happen with that amount?

There is nothing wrong with RLGz address, that's a miner.

I think these are coins that were abandoned from disabled Poloniex users who did not complete KYC before the deadline. IMHO they are as good as burnt coins. Some people speculate Circle/Goldman sachs could dump them in the future all at once, but that would be illegal so it's very unlikely.
hero member
Activity: 819
Merit: 502
What is wrong with this address?

https://chainz.cryptoid.info/ric/extraction.dws?1178374.htm

Explorer still shows over 8M RIC on Poloniex. What will happen with that amount?
legendary
Activity: 2646
Merit: 1722
https://youtu.be/DsAVx0u9Cw4 ... Dr. WHO < KLF
Announcing Riecoin on Tor v3 v2 .onion addnode's ...

... and for the record - these 'dual stack' nodes are present for network security, freedom and privacy, not for illegality.

Riecoin nodes which cannot be easily discovered helps to preserve and to protect the network! i.e. It's more difficult to 'attack' something which one cannot find ... All .onion nodes below connect to each other over Tor and via clearnet to the rest of the Riecoin network ...

addnode=riem43hal2hz576t.onion:28333
addnode=riero35qziafoxqq.onion:28333
addnode=riernre4cnbx5onq.onion:28333
addnode=rieuhlgmgxcl3o62.onion:28333
addnode=riekqwd6zyadexge.onion:28333
addnode=rieqaeyrgah4ooty.onion:28333

Code:
## riecoin.conf example for Riecoin on Tor - gapcoin.club

## IMPORTANT - Running the Tor software is required with this config. !!!

## Operating System - Default riecoin datadir - Typical path to configuration file i.e.
## Windows - %APPDATA%\Riecoin\ - C:\Users\username\AppData\Roaming\Riecoin\riecoin.conf
## Linux - $HOME/.riecoin/ - /home/username/.riecoin/riecoin.conf

listen=0
port=28333
proxy=127.0.0.1:9150
maxconnections=8
onion=127.0.0.1:9150
addnode=riem43hal2hz576t.onion:28333
addnode=riero35qziafoxqq.onion:28333
addnode=riernre4cnbx5onq.onion:28333
addnode=rieuhlgmgxcl3o62.onion:28333
addnode=riekqwd6zyadexge.onion:28333
addnode=rieqaeyrgah4ooty.onion:28333

## For Tor Visit - https://www.torproject.org/download/download.html
## Tor Manual - https://www.torproject.org/docs/tor-manual.html.en

## [Notice] Tor can't help you if you use it wrong!
## Learn how to be safe at https://www.torproject.org/download/download#warning

IMPORTANT: Note your Tor SOCKS port (usually): 9150 (TBB).

I've set-up these services for other alt. coins in the past and then shut them down mainly due to lack of community support etc., However, these nodes are mostly running on gapcoin.club infrastructure and will therefore continue to operate in the long-term, whilst we continue to resurrect both Riecoin and Gapcoin math projects.

Onwards and upwards!

P.S. Riecoin / Bitcoin donation addresses for help with infrastructure (added soon) at gapcoin.club and on bitcointalk (new thread to be linked here), as I intend to re-instate v2 (v3) services for Bitcoin (BTC and the Lightning network + Howto guides), Litecoin, Zcash and a whole bunch of other viable altcoin privacy projects, many of which I have hosted nodes for in the past ...

EDIT: Reicoin blockchain synced on all nodes and P2P port 28333 is forwarded and/or accepting incoming connections.

Tips: TYpjP3pmA1fpvCqagAWcNWvsShZuuercLC

Cool
legendary
Activity: 2646
Merit: 1722
https://youtu.be/DsAVx0u9Cw4 ... Dr. WHO < KLF
I created a GMP branch that replaces bignum with GMP. This should eliminate compile errors when using newer versions of libssl. I have tested on Ubuntu 16.04 and 18.04 with libssl 1.1. I was able to sync from scratch and have been running for a couple days with no issues.

I haven't updated the build system. For now you need to compile using ./configure LIBS=-lgmp
Can someone help with this?

I have tested in my two vps, Ubuntu 18.04 with libssl 1.1.

$ git clone https://github.com/riecointeam/riecoin -b GMP riecoin-gmp
$ cd riecoin-gmp
$ ./autogen.sh
$ ./configure LIBS=-lgmp
$ make
$ ~/riecoin-gmp/src/riecoind

It's running with no issues.


Building riecoind on gapcoin.club nodes (currently running Ubuntu 16.04) ... above proved to be a bit 'tricky' ... hope to upgrade nodes to 18.04 before the year end though.  Wink

From:
- https://github.com/bitcoin/bitcoin/blob/master/doc/build-unix.md

Build requirements:

Code:
sudo apt-get install build-essential libtool autotools-dev automake pkg-config bsdmainutils python3
Code:
sudo apt-get install libssl-dev libevent-dev libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-test-dev libboost-thread-dev

+

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

Toolchain:

Code:
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
Code:
sudo apt-get update
Code:
sudo apt-get install gcc-4.9
Code:
sudo apt-get upgrade libstdc++6

Update and tidy up:

Code:
sudo apt-get update && sudo apt-get autoremove && sudo apt-get dist-upgrade && sudo apt-get autoremove && sudo ldconfig && sudo apt-get clean

Berkeley DB:

Code:
wget http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz
Code:
echo '12edc0df75bf9abd7f82f821795bcee50f42cb2e5f76a6a281b85732798364ef  db-4.8.30.NC.tar.gz' | sha256sum -c

Code:
tar -xvf db-4.8.30.NC.tar.gz
Code:
cd db-4.8.30.NC/build_unix
Code:
mkdir -p build
Code:
BDB_PREFIX=$(pwd)/build
Code:
../dist/configure --disable-shared --enable-cxx --with-pic --prefix=$BDB_PREFIX
Code:
make install
Code:
cd ../..

Useful link:
- https://bitzuma.com/posts/compile-bitcoin-core-from-source-on-ubuntu/

Riecoind (No GUI):

Code:
git clone https://github.com/riecointeam/riecoin
Code:
cd riecoin
Code:
./autogen.sh
Code:
./configure CPPFLAGS="-I${BDB_PREFIX}/include/ -O2" LDFLAGS="-L${BDB_PREFIX}/lib/" --without-gui --without-miniupnpc
Code:
make
Code:
./src/riecoind

etc., etc.,

Node list soon... Downloading the blockchain... Once complete I will enable Riecoin on Tor v3 .onions and fully port forward the nodes. I have to reset each iptables firewall as each node also has a unique Tor Bridge port. Announcement via gapcoin.club soon.

Cheers!
newbie
Activity: 6
Merit: 0
lzknr, I had same issue few months ago.
Here you can check latest node list:
https://chainz.cryptoid.info/ric/#!network

Just copy and paste that first node list from the top.

You can also download  latest blockchain from here:
https://riecoin.dev/download/
full member
Activity: 255
Merit: 102
uBlock.it Admin
Hi,

I am trying to solo mine with the rieminer recommended https://github.com/Pttn/rieMiner/releases

But I got the error when finding a 6-tuple:

Base prime: 3......
Sent: {"method": "submitblock", "params": ["2....."], "id": 0}
Submission rejected :| ! Received: {"result":"inconclusive","error":null,"id":0}  

Could you help understand what is going wrong here?

I generated 4 blocks yesterday all being rejected.

I suspect there is a problem with the so called soft fork.

Perhaps there is an issue with your configuration.
There is no issue with the softfork, as other miners are mining successfully using satoshi 0.16.3.1.
You're welcome to mine on uBlock.it or XpoolX, they are both 0% fee currently (ublock better if located in north america xpoolx better if located near EU)

Post a sample of your config for riecoin.conf and rieMiner.conf omitting any confidential details of course, and maybe someone can help you.

newbie
Activity: 20
Merit: 0
Hi,

I am trying to solo mine with the rieminer recommended https://github.com/Pttn/rieMiner/releases

But I got the error when finding a 6-tuple:

Base prime: 3......
Sent: {"method": "submitblock", "params": ["2....."], "id": 0}
Submission rejected :| ! Received: {"result":"inconclusive","error":null,"id":0} 

Could you help understand what is going wrong here?

I generated 4 blocks yesterday all being rejected.

I suspect there is a problem with the so called soft fork.
full member
Activity: 255
Merit: 102
uBlock.it Admin
thank you

This miner can run on ubuntu 32bits Huh?


Yes I believe there is a 32 bit binary as well.
newbie
Activity: 83
Merit: 0
The "gen =" function is not working in riecoin.conf .. is it anyway ??

The miner built into the wallet is not worth using anyway, it's quite slow.

you can use rieMiner for solo mining, or join a pool.

https://github.com/Pttn/rieMiner



thank you

This miner can run on ubuntu 32bits Huh?
newbie
Activity: 83
Merit: 0
thank you

This miner can run on ubuntu 32bits Huh?
full member
Activity: 255
Merit: 102
uBlock.it Admin
The "gen =" function is not working in riecoin.conf .. is it anyway ??

The miner built into the wallet is not worth using anyway, it's quite slow.

you can use rieMiner for solo mining, or join a pool.

https://github.com/Pttn/rieMiner
newbie
Activity: 83
Merit: 0
The "gen =" function is not working in riecoin.conf .. is it anyway ??
newbie
Activity: 7
Merit: 0
FreiExchange is happy to announce that Riecoin has just been listed. We are a small but trustworthy exchange. We are also very happy to list an excellent project like Riecoin. Please come and deposit, trade, and use FreiExchange.


https://freiexchange.com/market/RIC/BTC

I made a RIC deposit a few hours ago but nothing arrived in my account.


And with me too Angry Angry Angry

We made an error announcing the market too soon. The wallet is only at block 680000. Looks like it will need another 8 hours to sync. Not the best opening. Sorry.

Hi
My deposit is credited. I hope such delays will no longer be. Good trading !!!
jr. member
Activity: 80
Merit: 1
Block 793417...
Block 871662 ...
jr. member
Activity: 80
Merit: 1
FreiExchange is happy to announce that Riecoin has just been listed. We are a small but trustworthy exchange. We are also very happy to list an excellent project like Riecoin. Please come and deposit, trade, and use FreiExchange.


https://freiexchange.com/market/RIC/BTC

I made a RIC deposit a few hours ago but nothing arrived in my account.


And with me too Angry Angry Angry

We made an error announcing the market too soon. The wallet is only at block 680000. Looks like it will need another 8 hours to sync. Not the best opening. Sorry.
newbie
Activity: 7
Merit: 0
FreiExchange is happy to announce that Riecoin has just been listed. We are a small but trustworthy exchange. We are also very happy to list an excellent project like Riecoin. Please come and deposit, trade, and use FreiExchange.


https://freiexchange.com/market/RIC/BTC

I made a RIC deposit a few hours ago but nothing arrived in my account.


And with me too Angry Angry Angry
jr. member
Activity: 80
Merit: 1
FreiExchange is happy to announce that Riecoin has just been listed. We are a small but trustworthy exchange. We are also very happy to list an excellent project like Riecoin. Please come and deposit, trade, and use FreiExchange.


https://freiexchange.com/market/RIC/BTC

I made a RIC deposit a few hours ago but nothing arrived in my account.

Hmmm. I do not see any deposit on FreiExchange. Please make a ticket at helpdesk.freiexchange.com.

Do you see the transaction on the explorer?

Oh! I see the FreiExchange Riecoin wallet is not fully synched yet. I will check with the big guy. Sometimes he underestimates the time it takes a wallet to synch up.

newbie
Activity: 20
Merit: 0
FreiExchange is happy to announce that Riecoin has just been listed. We are a small but trustworthy exchange. We are also very happy to list an excellent project like Riecoin. Please come and deposit, trade, and use FreiExchange.


https://freiexchange.com/market/RIC/BTC

I made a RIC deposit a few hours ago but nothing arrived in my account.
member
Activity: 113
Merit: 51
Riecoin developer
FreiExchange is happy to announce that Riecoin has just been listed. We are a small but trustworthy exchange. We are also very happy to list an excellent project like Riecoin. Please come and deposit, trade, and use FreiExchange.


https://freiexchange.com/market/RIC/BTC

Thank you for supporting Riecoin. Feel free to join our Discord server in order to be part of our community and let us know about your exchange updates and projects.

Feedbacks about this exchange are welcome.
jr. member
Activity: 80
Merit: 1
FreiExchange is happy to announce that Riecoin has just been listed. We are a small but trustworthy exchange. We are also very happy to list an excellent project like Riecoin. Please come and deposit, trade, and use FreiExchange.


https://freiexchange.com/market/RIC/BTC
Pages:
Jump to: