Pages:
Author

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

newbie
Activity: 21
Merit: 0
now riecoin price 784 sats. very bad. why why why you dont do anything for your coin.  I say to GATRA. Where will use your coin and what is your aim?. why you dont do any update. For many coins creators  they sold coins to investors and run away. Very good world take million dollars and run away and only 0.5 BTC will give for update. I will give you 0.5 btc. please go and dont come anytime.

Gatra made millions how? This was launched years before these ICO scams.

I didnt say Gatra made millions. Now lots of token like riecoin has any update and didnt used any real world scenario. Why you create token? only trade?
if it is not only trade you must do something real worl use with your token and you must develop your  token. Yes now riecoin total value is 2.2 million. Before 2 months ago it was 10 million. It is big value and  someone takes millions doing any thing and only make speculation.
jr. member
Activity: 66
Merit: 3
now riecoin price 784 sats. very bad. why why why you dont do anything for your coin.  I say to GATRA. Where will use your coin and what is your aim?. why you dont do any update. For many coins creators  they sold coins to investors and run away. Very good world take million dollars and run away and only 0.5 BTC will give for update. I will give you 0.5 btc. please go and dont come anytime.

Gatra made millions how? This was launched years before these ICO scams.
sr. member
Activity: 1149
Merit: 347
This place remembers the darkness! I'll be looking for some at Poloniex and possibly some other exchange! Has anyone updated the wallet?
full member
Activity: 670
Merit: 130
this is going unexpectedly well. new exchange, core update and algo upgrade. i m gonna piss my pants from happiness  Grin
jr. member
Activity: 35
Merit: 2
dga, gatra
Sounds good. I'll take a look at updating the client. We can discuss specifics of algorithm updates later.
member
Activity: 62
Merit: 12
Do you have an API available?

You asked about APIs for market making a couple of weeks ago.  We've now added a way to do this into Zapple without needing to authenticate with your username and password and by restriction API keys to specific roles as you requested.  We've still not got formal docs for API written up but the below should help to give you enough for a market making bot.  Excuse the lack of formatting in the post - wanted to get something up before I get to bed today.

First login to Zapple, go to Settings and click on Manage API Keys.  Give it a name and an optional expiry.  For roles if you want the bot to be able to get balances you want "Account Info", to access information about trades (history, open trades, etc.) check "Trade History" and to open and close trades you want "Trading".  Click "Add" and you'll be given a long secret string.  Keep this safe.

For you bot to login it must make a PUT to https://zapple.com/api/auth/1/api-keys/authenticate

The body should be JSON object as below.

{
  "Username": "Your Username",
  "Key": "What You Got Above",
  "ApplicationName": "Name Of Your Bot Software - Can Be Anything"
}


You will get a response back which includes a few pieces of information.  The main one is "JsonWebToken".  You need this to authenticate against other methods.


For every other request you need to use this JsonWebToken (JWT) to authenticate.  To do so add the header:

Authorization: BEARAR YourJwtHere

Replacing YourJwtHere with what you got in the authenticate step.



Every 15 minutes the token you just got given will time out.  You can either log back in when you get a 401 or after 10 minutes or thereabout call a GET to https://zapple.com/api/auth/1/renew including the authorization header.  You'll get a new response back of the same format as authenticate but with a newly extended JWT valid for another 15 minutes.


You can test these methods out with a UI at: https://lts-api.com/dev/auth/1/_md/index#/ApiKey


You can view a list of all possible exchange API methods at https://zapple.io/exchange/1/_md/.  You authenticate against these in the same way - with the Authorization header.


The main methods you care about will be these below.  You can see example calls and full data returned at the above URL.

Get a list of balances: GET https://zapple.io/exchange/1/balances

Get the order-book for RICBTC: GET https://zapple.io/exchange/1/order-book/RICBTC

Get recent trades for RICBTC: GET https://zapple.io/exchange/1/trades/RICBTC

Get full details for one of your orders: GET https://zapple.io/exchange/1/orders/YourOrderId

Createa a new order: POST https://zapple.io/exchange/1/orders/NewOrderId
   The NewOrderId should be a UUID that you generate
   The body is as follows:
{
  "InstrumentId": 6,
  "QuantityOrdered": XXX,
  "Side": "Buy or Sell",
  "LimitPrice": XXX or null
}

Cancel an open order: DELETE https://zapple.io/exchange/1/orders/YourOrderId

Get a list of all orders you have open: GET https://zapple.io/exchange/1/orders?instrument=RICBTC
hero member
Activity: 583
Merit: 505
CTO @ Flixxo, Riecoin dev
There are several other things we could consider as well. If this was implemented properly we could probably break most of the records from 7 to 13 or 14. I could probably write this part of the code. I'm also willing to help out with the upgrade but I'm much less familiar with the wallet core. Let me know what you think.

I think we should first complete the upgrade -- making *more* changes to the old code before we get updated will just make future integration harder.

Thank you clo1.
I agree with dga, the priority should be updating the client. After that we can do a hard fork for larger prime sets.
I do have an idea for implementing this, it's no secret. It basically works analogous to shares like in mining, allowing for larger numbers. My plan is to implement that and also rotate between different constellation sizes. So for some blocks it would be 6-tuples, then move to 7-tuples, 8, 9, and so on. It can be done in one chain.
If you can't help with the update, maybe you can work with me on the mining algo update, but I don't want to start coding it until we have an updated version.
dga
hero member
Activity: 737
Merit: 511
Hi all. I've been mining Riecoin since January. It is good to see some interest in new exchanges and updating the wallet.

As much as I like Riecoin I have to say I'm a bit bored with finding 6-tuples at half the current record difficulty. If a major effort is going to be made to upgrade the wallet would you consider also changing the algorithm to make finding large clusters a lot easier? It is really a shame that 6-tuples were chosen. A 6-tuple cannot be part of a 7-tuple or any larger constellation. A 7-tuple on the other hand can be part of every constellation up to 15-tuple. lf we switched to looking for 7-tuple blocks then several blocks a day would also be 8-tuples. These would probably be in the range of the current 8-tuple record. Every couple weeks one of the 7-tuples would also be a 9-tuple. This would smash the current record. If the goal is to find large constellations then why stick with an algorithm that guarantees we never find one?

I think I would also add a second chain that looked for 10 or 11-tuples. This would be a GPU friendly chain that could bring in a lot of new interest in Riecoin.

There are several other things we could consider as well. If this was implemented properly we could probably break most of the records from 7 to 13 or 14. I could probably write this part of the code. I'm also willing to help out with the upgrade but I'm much less familiar with the wallet core. Let me know what you think.

That's a fun idea. 

I think we should first complete the upgrade -- making *more* changes to the old code before we get updated will just make future integration harder.

Gatra had a related idea for seeing if we could find longer tuples, but I don't want to share his thoughts without permission, so I'll let him chime in.  In any event, I think something that increases the flexibility of the tuples to enable us to break more records would be awesome.

jr. member
Activity: 35
Merit: 2
Hi all. I've been mining Riecoin since January. It is good to see some interest in new exchanges and updating the wallet.

As much as I like Riecoin I have to say I'm a bit bored with finding 6-tuples at half the current record difficulty. If a major effort is going to be made to upgrade the wallet would you consider also changing the algorithm to make finding large clusters a lot easier? It is really a shame that 6-tuples were chosen. A 6-tuple cannot be part of a 7-tuple or any larger constellation. A 7-tuple on the other hand can be part of every constellation up to 15-tuple. lf we switched to looking for 7-tuple blocks then several blocks a day would also be 8-tuples. These would probably be in the range of the current 8-tuple record. Every couple weeks one of the 7-tuples would also be a 9-tuple. This would smash the current record. If the goal is to find large constellations then why stick with an algorithm that guarantees we never find one?

I think I would also add a second chain that looked for 10 or 11-tuples. This would be a GPU friendly chain that could bring in a lot of new interest in Riecoin.

There are several other things we could consider as well. If this was implemented properly we could probably break most of the records from 7 to 13 or 14. I could probably write this part of the code. I'm also willing to help out with the upgrade but I'm much less familiar with the wallet core. Let me know what you think.
dga
hero member
Activity: 737
Merit: 511
now riecoin price 784 sats. very bad. why why why you dont do anything for your coin.  I say to GATRA. Where will use your coin and what is your aim?. why you dont do any update. For many coins creators  they sold coins to investors and run away. Very good world take million dollars and run away and only 0.5 BTC will give for update. I will give you 0.5 btc. please go and dont come anytime.

Let's try not to be jerks in this thread.  Gatra offered to pay someone a fairly decent amount of money to bring the coin up to modern standards.  I know there's one person who's been working on it, though I don't know how far along it is at this point. 

I'm pretty sure nobody has made a million dollars from RIC, and if anyone has, it's not Gatra -- I've been watching this coin since the start, and he did a legitimately fair launch.  Of the people who jumped in and created early miners for it, I'm pretty sure none of us made more than a few thousand dollars.  jh00 probably had the best chance, but he opened his miner on his pool quite quickly.

If you want to see more progress, offer to contribute to the bounty.  I've offered 0.1 BTC on top of Gatra's offer -- will you join me and offer your own 0.1 BTC?

(and on an unrelated note, @guytp - thanks for being so responsive to bugs on the exchange.  Very excited to see you're making such progress, even if RIC is very underpriced on zapple compared to polo.  But with more volume, they'll hopefully get closer.)

  -Dave
newbie
Activity: 21
Merit: 0
now riecoin price 784 sats. very bad. why why why you dont do anything for your coin.  I say to GATRA. Where will use your coin and what is your aim?. why you dont do any update. For many coins creators  they sold coins to investors and run away. Very good world take million dollars and run away and only 0.5 BTC will give for update. I will give you 0.5 btc. please go and dont come anytime.
member
Activity: 62
Merit: 12
All buy orders now disappear as "Price must be at least 0.00001"

This is a bug, please fix.

This is fixed and apologies for the inconvenience with the display rounding issue.  Please let me know if any other problems.

If anyone has any issues please e-mail support at zapple.com or submit via Support link on the site.  With something like this it gets escalated to me pretty quickly and generally quicker than me noticing on this thread.

Thanks
member
Activity: 224
Merit: 10
Is it true that Riecoin is supported by whales bots? Why is this coin untouchable and uninvolved? Not always the volume is in agreement, I will buy many RIC.
member
Activity: 62
Merit: 12
All buy orders now disappear as "Price must be at least 0.00001"

This is a bug, please fix.

On this today.  Will update shortly.
dga
hero member
Activity: 737
Merit: 511
RIC is now live on Zapple.com.

The site should be working - if anybody has any particular problems please let me know - either a direct message here or via a support request on Zapple's website and I'll look straight into it for you.  Hopefully this will now give everyone an opportunity to have somewhere to trade RIC.

Thanks,

Guy

All buy orders now disappear as "Price must be at least 0.00001"

This is a bug, please fix.

Confirmed.  And existing sell orders seem to have all been increased to 0.00001 as well, even though there were many on the book for less than that.
newbie
Activity: 20
Merit: 0
RIC is now live on Zapple.com.

The site should be working - if anybody has any particular problems please let me know - either a direct message here or via a support request on Zapple's website and I'll look straight into it for you.  Hopefully this will now give everyone an opportunity to have somewhere to trade RIC.

Thanks,

Guy

All buy orders now disappear as "Price must be at least 0.00001"

This is a bug, please fix.
jr. member
Activity: 55
Merit: 1
Thank you community. I have sold all my riecoin and
I loss 40÷ my portfolio in riecoin. I hope you can win.
In this procees ı found Gatra from telegram and he cane here.
I wanted to help but Gatra dont be willing develop riecoin.
Now ı didnt want to wait anymore. Thanks all of riecoin beleivers

You deserved to lose 40 % by clearing the buy order book and selling at a very low price dude! All you had to do is to hold a bit longer and profit with a new wallet release which would likely rise Riecoin interest, or at least not dumping all in once and wait that new buy walls form (which are already here, although the price is still lower thanks to you).

The Gatra inactivity is not really an issue (except for the Poloniex problem, which is "fixed" now with Zapple), and you still had plenty of options to help. You were even ready to pay the riecoin.org hosting, so why not create yourself a community website? Advertise yourself the project and attract more miners, investors and developers who have free time? You could try to help lzknr to update the wallet too.
newbie
Activity: 21
Merit: 0
Thank you community. I have sold all my riecoin and
I loss 40÷ my portfolio in riecoin. I hope you can win.
In this procees ı found Gatra from telegram and he cane here.
I wanted to help but Gatra dont be willing develop riecoin.
Now ı didnt want to wait anymore. Thanks all of riecoin beleivers
newbie
Activity: 28
Merit: 2
Hello Riecoin believers,

Our aim is to add value to the whole crypto community by giving the best user experience to analyse cryptocurrencies.

It would be really great help from your side if you can spend 60 seconds of your time and give us your valuable feedback for our two recent updates 1) Snapshot and 2) Colourful interface of Riecoin at: https://cointopper.com/coin/riecoin

Constructive criticisms are always welcome at CoinTopper.  Thank you!!
dga
hero member
Activity: 737
Merit: 511
I think riecoin dead. Gatra only gives 0.5 BTC. I think it is anything. Gatra must do everything and merge from bitcoin. Gatra says that he didnt any time for riecoin. Why poloniex has disabled wallet. I think somebody dont want other riecoins on poloniex. Because they sell their coins. I dont beleive Gatra.

polo disabled their wallet because there was a fork that went beyond the wallet limit, so they auto-disabled.

... now, that leaves the question why they haven't turned their wallet back on yet, but I suspect that says more about Polo's support, unfortunately.
Pages:
Jump to: