Bitcoin Forum
June 22, 2024, 04:55:25 PM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
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 ... 107 »
281  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][OC] Orangecoin v2.0.1 ✦ PoS ✦ Anon Tx ✦ Masternodes Reloaded ✦ Get Juiced! on: November 24, 2015, 05:34:01 AM
new wallet looks great!

Question: The "recent transactions" on the front of the wallet have not changed since 6/29/15 and even then all transactions are not posted.

What is causing this and how to fix?

thanks,
john

I will look into bringing a fix on this on the next update.

Warm Regards,
~SoopY~


Thank you Soop!

You're welcome mate.

Also Masternodes will be implemented and be fully functional by Christmas , my gift to you for Christmas. Wink

Warm Regards,
~SoopY~
282  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][OC] Orangecoin v2.0.1 ✦ PoS ✦ Anon Tx ✦ Masternodes Reloaded ✦ Get Juiced! on: November 24, 2015, 04:43:23 AM
new wallet looks great!

Question: The "recent transactions" on the front of the wallet have not changed since 6/29/15 and even then all transactions are not posted.

What is causing this and how to fix?

thanks,
john

I will look into bringing a fix on this on the next update.

Warm Regards,
~SoopY~
283  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][OC] Orangecoin v2.0.1 ✦ PoS ✦ Anon Tx ✦ Masternodes Reloaded ✦ Get Juiced! on: November 22, 2015, 09:08:50 PM
Soft Update v2.0.2

- Incorporates new logo design
- Checkpointed at 333853
- Version bump
- Errors fixed, cleaned up files

Mac 2.0.2: https://www.dropbox.com/s/18lkgkewpcvolbx/OrangeCoin-Qt%281%29.dmg?dl=0
Windows 2.0.2: https://www.dropbox.com/s/2rd5134u1ev8qk3/OrangeCoin%202.0.2%20Windows%20Wallet.zip?dl=0
github: https://github.com/sherlockcoin/Orangecoin

Stop by orangecoin.weebly.com for all your download needs. Smiley

Big thanks to our team, for developing and testing.

Well done guys! Good job! Expect something that will blow you away before Christmas. Smiley
Santa is already in Town! Tongue

Cheers!
~SoopY~
284  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★[ANN] [NAV] NAVAJO COIN - EVENT IN TAIPEI ● NEW ROADMAP ● ANONYMOUS TECH. ● CHAT ● on: November 22, 2015, 07:58:21 PM

If you did look at github you might have noticed something , the team is testing the compiles.
Please keep an eye for the update.


I'm seeing a version bump and some changes related to blockchain wide network time.  

Many Thanks Soopy.  It seems to me a step in the right direction.

It is now clear that the black sheep, does not read this forum, or it do
not want to collaborate, so this is the only way to improve the situation.

Best Regard

Special Thanks goes to Remy_5 for providing us with weekly updates , keeping the community updated as well as keeping an eye on the blockchain related aspects as well as the black sheep *codenamed by Remy himself. Indeed thank you for pushing us in the right direction all the same , on behalf of the community as well as the development team , you deserve all the credit my friend! Smiley

Warm Regards,
~SoopY~
285  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★[ANN] [NAV] NAVAJO COIN - EVENT IN TAIPEI ● NEW ROADMAP ● ANONYMOUS TECH. ● CHAT ● on: November 21, 2015, 05:45:16 PM
Approximately around 14th November, 2015

I don't mind you miss an approximated date I Do mind that you just don't Comment on it .. need a few more days etc etc .. how much time does it take to post that ?

Anon and decent should have main priority over Everything else imo.


If you did look at github you might have noticed something , the team is testing the compiles.

Please keep an eye for the update.

Warm Regards,
~SoopY~
286  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★[ANN] [NAV] NAVAJO COIN - EVENT IN TAIPEI ● NEW ROADMAP ● ANONYMOUS TECH. ● CHAT ● on: November 13, 2015, 06:48:23 PM
Why does Navajo's Anon Code have an API attached to it? (api.navajocoin.org:443)

More specifically, https://github.com/sherlockcoin/navajocoin/commit/b288c987314233005a9893d7cf11859dd8e2dd3a#diff-c33d3ce1a2a004536aaf1b90f6458900

If it does use a centralized service, which it [CLEARLY DOES!, AGAIN, IDK] - would be kinda risky

The doubt code:

Code:
+ void SendCoinsDialog::on_sendButton_clicked()
+{
+    //test
+
+    if(ui->anonCheckBox->checkState() == 0){
+        QString node = QString("");
+        this->sendCoins(node);
+    }else{
+
+        QMessageBox::warning(this, tr("Anonymous Transaction"),
+        tr("Anonymous transactions are disabled until hardfork stabilization is achieved."),
+        QMessageBox::Ok, QMessageBox::Ok);
+
+        /*
+        QSslSocket *socket = new QSslSocket(this);
+        socket->setPeerVerifyMode(socket->VerifyNone);
+        //connect(socket, SIGNAL(encrypted()), this, SLOT(sslRequest()));
+
+        socket->connectToHostEncrypted("api.navajocoin.org", 443);
+
+        if(!socket->waitForEncrypted()){
+            qDebug() << socket->errorString();
+        }else{
+
+            socket->write("GET /api/select-incoming-node HTTP/1.1\r\n" \
+                          "Host: api.navajocoin.org\r\n" \
+                          "Connection: Close\r\n\r\n");
+
+            while (socket->waitForReadyRead()){
+
+                while(socket->canReadLine()){
+                    //read all the lines
+                    QString line = socket->readLine();
+                }
+
+                QString rawReply = socket->readAll();
+                QJsonDocument jsonDoc =  QJsonDocument::fromJson(rawReply.toUtf8());
+                QJsonObject jsonObject = jsonDoc.object();
+                QString type = jsonObject["type"].toString();
+
+                if(type == "SUCCESS"){
+
+                    QString address = jsonObject["address"].toString();
+                    QString publicKey = jsonObject["public_key"].toString();
+                    minAmount = jsonObject["min_amount"].toDouble();
+                    maxAmount = jsonObject["max_amount"].toDouble();
+                    double txFee = jsonObject["transaction_fee"].toDouble();
+
+                    model->setAnonDetails(minAmount, maxAmount, publicKey);
+
+
+                        QString messageString = QString("Are you sure you want to send these coins throug the Navajo Anonymous Network? There will be a %1% transaction fee.").arg(txFee);
+
+                        QMessageBox::StandardButton reply;
+                        reply = QMessageBox::question(this, "Anonymous Transaction", messageString, QMessageBox::Yes|QMessageBox::No);
+
+                        if(reply == QMessageBox::Yes){
+                            this->sendCoins(address);
+                        }
+
+
+                }else{
+                    QMessageBox::warning(this, tr("Anonymous Transaction"),
+                    tr("We were unable to locate an active Anonymous node, please try again later."),
+                    QMessageBox::Ok, QMessageBox::Ok);
+                }//not success
+
+
+            }//wait for ready read
+
+        }//no socket error
+        */
+
+    }//else
+
+
+}//sendButton

If anyone can explain this, I will be really happy

Hi Mate,

We've been through and through with this hehe, you are not the first person to ask this and this is not the first time its being explained but thank you for putting out your inquiries,let me explain what this is.This is the api that acts as the gateway or the entrance to the ANONYMOUS part of the network , it decides on which node that the transaction will be channelled through ,it would be lovely if you could take your time to go through the whitepaper here: http://www.navajocoin.org/files/navajocoin.pdf , it has been clearly stated that this System is a Hybrid Anonymous Crypto System and is a hybrid of with Centralized and Decentralized
Operations.

Everything from the wallet is encrypted and encrypted again and the transactions channeled through sub-chains further on and encrypted within as well.  We haven't been hiding anything or anything there to do so , nor there is a risk of any sorts. Please do not hesitate to pm me or ask me in anyway if your have any further inquiries.

Warm Regards,
~SoopY~


287  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BEE2] [BEECOIN V2] POW X11/POS Hybrid - Now With CLIENT CHAT Feature! on: November 12, 2015, 06:05:28 PM
I hope we catch them and probably make a publicity stunt of the whole situation.

A publicity stunt will cause us to trade in Satoshi, not Litoshi  Cheesy

And maybe Bittrex or another good Exchange will list us. Smiley
288  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BEE2] [BEECOIN V2] POW X11/POS Hybrid - Now With CLIENT CHAT Feature! on: November 12, 2015, 01:25:54 PM
I m running an assessment about the AllCoin situation , How much funds did you guys have in there?
289  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BEE2] [BEECOIN V2] POW X11/POS Hybrid - Now With CLIENT CHAT Feature! on: November 12, 2015, 01:20:57 PM
The Hard-Node has been moved to a new server , you should have more connectivity.

Cheers!

Warm Regards,
~SoopY~
290  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★[ANN] [NAV] NAVAJO COIN - EVENT IN TAIPEI ● NEW ROADMAP ● ANONYMOUS TECH. ● CHAT ● on: November 09, 2015, 04:52:22 AM
Why Minerjoes post was deleted? People want real proof (and now, after 1y of waiting, real results) of devs work, not only empty promises. Specially at many of investors put more than 1k$ into that project.... Maybe his objection about possibility of scam was to hard, but he have right about shorter reaction time needed to realize promises by other devs  compare to NAV devs.
I will still holding my Navs,, but like others investors I dont want see only propaganda without real action.
Btw. How we can talking about PR and promote NAV if devs ignore investors and their worries...

His post was deleted becouse the only thing he's trying to do is hurt this coin. He's not an investor. He sold his coins months ago in the worst time possible, that's why he's so angry - becouse he missed the uptrend.
I'm not deleting posts of real investors and people interested in helping NAV. But I will not tolerate attempts to hurt us from people which are here only to fud and complain about everything.
Best Regards

~ Strugg

In struggs defence, He hasn't deleted any of my posts and some of mine have been very fruity. Like he said he hasn't deleted any from real investors like me that are voicing concerns. Hopefully, soon I can start posting better supportive posts and its looking like that may be the case. I am looking forward to the next few weeks as we are now getting posts from the devs along with some positive actions which of course speak much more than any words. That said I still haven't sold any of my Nav Smiley

Thank you very much for understanding the intentions of the Team mate , please do voice your concerns and uplift us with your motivations , whenever you see its needed.

Warm Regards,
~SoopY~
291  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★[ANN] [NAV] NAVAJO COIN - EVENT IN TAIPEI ● NEW ROADMAP ● ANONYMOUS TECH. ● CHAT ● on: November 09, 2015, 04:39:29 AM
Why Minerjoes post was deleted? People want real proof (and now, after 1y of waiting, real results) of devs work, not only empty promises. Specially at many of investors put more than 1k$ into that project.... Maybe his objection about possibility of scam was to hard, but he have right about shorter reaction time needed to realize promises by other devs  compare to NAV devs.
I will still holding my Navs,, but like others investors I dont want see only propaganda without real action.
Btw. How we can talking about PR and promote NAV if devs ignore investors and their worries...

Sometimes extremes measure will have to be taken to protect something you so dearly love , everything is being done to protect the community , its integrity as well as in the best interests of the community.

Warm Regards,
~SoopY~
292  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★[ANN] [NAV] NAVAJO COIN - EVENT IN TAIPEI ● NEW ROADMAP ● ANONYMOUS TECH. ● CHAT ● on: November 09, 2015, 04:25:54 AM
A nice start but , the things id really like to know about are:

When are the Masternodes and Decentralized Anon coming ?

I would also really like a more dressed down pure Staking wallet that could run on the PI2 nav wallet is kind of a recouces hog.
(PI2 would allow people to keep it staking 24/7)
For a Pos coin Imo you cant really go lower then 12% a year if u want to keep people motivated to keep staking.



Ps "http://www.navajocoin.org/" is down atm someone working on that ?


" It's not just you! http://www.navajocoin.org looks down from here. "

Why Minerjoes post was deleted? People want real proof (and now, after 1y of waiting, real results) of devs work, not only empty promises. Specially at many of investors put more than 1k$ into that project.... Maybe his objection about possibility of scam was to hard, but he have right about shorter reaction time needed to realize promises by other devs  compare to NAV devs.
I will still holding my Navs,, but like others investors I dont want see only propaganda without real action.
Btw. How we can talking about PR and promote NAV if devs ignore investors and their worries...

His post was deleted becouse the only thing he's trying to do is hurt this coin. He's not an investor. He sold his coins months ago in the worst time possible, that's why he's so angry - becouse he missed the uptrend.
I'm not deleting posts of real investors and people interested in helping NAV. But I will not tolerate attempts to hurt us from people which are here only to fud and complain about everything.
Best Regards

~ Strugg

In struggs defence, He hasn't deleted any of my posts and some of mine have been very fruity. Like he said he hasn't deleted any from real investors like me that are voicing concerns. Hopefully, soon I can start posting better supportive posts and its looking like that may be the case. I am looking forward to the next few weeks as we are now getting posts from the devs along with some positive actions which of course speak much more than any words. That said I still haven't sold any of my Nav Smiley

They have time to Delete his post .. and skip right over my questions .. Navajocoin.org down should be simple answer the Master nodes Decent anon ive been waiting for since Fing march .. He's not far off in what hes saying weren't we promised "something" in October rather show then talk .. Nothing just a post now about a Christmas pressent that's another 6 weeks away no dates nothing. If they have time to delete posts they can answer some questions to. I'm also still holding my Nav but I'm starting to question the point of doing so and I'm most definatly not buying anymore.
as an investor I feel we got a lot of promises since march with Very Little result.
Maybe that's just me but these page filling picture posts getting fully quoted over and over doesn't replace the need for actual shit being done.


Okay Sluppy , I think they missed your question not on purpose but due to it going up on the thread and really not seeing it , let me answer them for you.

Masternodes are one of the main things we have in mind and all that we are doing is keeping that target in our mind , it's the ultimate target or destination for us.
So yes Masternodes are our main concern and will come into being and focused on right after we get upto the Web Wallet and Mobile Wallet , please bear with us.
We always work in the best interest of the community and their well being.

Please do not hesitate to send me over a pm whenever you have a concern.

Warm Regards,
~SoopY~




293  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★[ANN] [NAV] NAVAJO COIN - EVENT IN TAIPEI ● NEW ROADMAP ● ANONYMOUS TECH. ● CHAT ● on: November 06, 2015, 06:33:49 PM
Hello All,

Just wanted to drop in and talk to you guys about the new update and clear out a bit of confusion that has been giving you a bit of sleepless nights atleast that's what I've been quite not(enjoying) the last few days/weeks anyway let me get to the point directly.

The 3-step implementation plan was put in place , keep in mind the best interests of the community.

1st Update was to setup a base or rather a foundation for us to work on bringing about the more important updates and yes I understand the frustration you guys have/had when you went through the git but truth be told and I have nothing to hide nor be mysterious , just honest and upfront with you , so yes Ginger and some great community members were rather unhappy and quite aggressive with their claims and I understand that but please sit tight and let the flower bloom , we cannot give a name to it if we do not see its true beauty as such please do not jump to conclusions before it happens anyway since that's out of the way and we are all now best of friends , let me talk about the next steps and what we have put together for the next coming days/weeks. (Approximately around 14th November, 2015)

2nd & 3rd Update will be a Security update , this update will re-evaluate all the security protocols that we have set in , it will bring about many important and serious changes to the blockchain and verify that there are no block creation issues , pos issues or anything to do with staking , the purpose of this update is to ensure and pave way to the next update that's coming , which will be the implementation of the BIP 32 protocols fully on the blockchain , which itself will provide Hierarchical Deterministic Wallet functionality and address generation to the NavajoCoin Wallet itself , so we need to have everything in line and no breaks in order for us to bring the Web Wallet and the Mobile wallet as when bringing them there should not be any , I repeat any mishaps in their operations in anyway. (Approximately around 28th November, 2015)

4th Update which has not been shared here yet , is the Web Wallet functionalities that we have been waiting all this time and all that has been done in keeping that goal in mind and we will get there despite all. (Our very own NAV Christmas Present)

I would like to kindly request from the community , to support us , encourage us and strive with us towards the ultimate goals that we have set forth to achieve and to achieve them together.

Together We Stand , United We Stand Stronger. Smiley

I will be available on the forum for the next few days please be kind to send my way any inquiries or questions that might be bugging you in anyway.

I will be  continuously monitoring the wellbeing of the network as well as all aspects of NAV as always.

Warm Regards,
~SoopY~
294  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★[ANN] [NAV] NAVAJO COIN - EVENT IN TAIPEI ● NEW ROADMAP ● ANONYMOUS TECH. ● CHAT ● on: October 11, 2015, 04:39:16 AM
Hello All,

Hope you guys are having a great time at NAV.

Enjoy those cheap coins when you can. Wink

Thank you all for your kind words of encouragement and support. Love you all! Smiley

Warm Regards,
~SoopY~
295  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★[ANN] [NAV] NAVAJO COIN - EVENT IN TAIPEI ● NEW ROADMAP ● ANONYMOUS TECH. ● CHAT ● on: October 11, 2015, 04:37:46 AM
0.0000006.... Huh Huh Huh Huh Huh Huh Huh Huh

Dream on... Smiley
296  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★[ANN] [NAV] NAVAJO COIN - EVENT IN TAIPEI ● NEW ROADMAP ● ANONYMOUS TECH. ● CHAT ● on: October 04, 2015, 05:55:51 AM
Let me clear another thing , please do not confuse masternodes which are more or so related to staking and such context with decentralized anonymity. Smiley

If you any questions whatsoever please do not hesitate to shoot them away and I will do my best to answer them to the best of my ability.

297  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★[ANN] [NAV] NAVAJO COIN - EVENT IN TAIPEI ● NEW ROADMAP ● ANONYMOUS TECH. ● CHAT ● on: October 04, 2015, 05:50:21 AM
Thank you all for your kind words and support and positivity during these dark times , we will keep pushing thanks to you all and your encouragements. Smiley GO NAVAJO!
298  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★[ANN] [NAV] NAVAJO COIN - EVENT IN TAIPEI ● NEW ROADMAP ● ANONYMOUS TECH. ● CHAT ● on: October 03, 2015, 10:58:58 AM
The point is that if sombody ( i dont care my account is new, im NAV investor for year) say something about delayes, promises etc. is called fudder or something.
As an real investor, who is feeded by all this promises i just get mad. Do you remember first roadmap? That promises about fast updates?
So now lets count how many days elapsed since that? We still dont have even this online wallet.
And please, stop saying about unique anon system if its not even decentralized.
Instead of writing nice words, with this fat type, please show us what did you done. And im not asking about showing % on site which you are probably created for your own gain.
Please update Github, thanks.

People that make valid points are not called Fudders , but ones trying hard to make a gain and hype the same for their own gain are. There is a clear demarcation of who and when. Anyhow thank you very much for your support being an investor , also referring to your last comment on our gain , well currently I do not see any gain whatsoever misleading the community or as such. And NAVAJO ANONYMOUS SYSTEM is indeed unique and cannot stop stressing that fact and too bad you haven't seen it for what it is. Please refer to my previous reply regards to your github inquiry.

Thank you very much.

Warm Regards,
~SoopY~
299  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★[ANN] [NAV] NAVAJO COIN - EVENT IN TAIPEI ● NEW ROADMAP ● ANONYMOUS TECH. ● CHAT ● on: October 03, 2015, 10:51:42 AM
...

If you have anything you are always open to ask me a out it openly and as always I will answer you , there no need to create a hype or fud regarding a certain issue , there will always be questions and them answered. I am here , the team is here , the work is going and that won't stop despite anything. Smiley

...
This is starting to piss me off.. Instead of writing the same bullshit story over and over again, actually DO answer our questions:


...

We have been working on great things and even great things prepared to be released within the month of October and I'd would rather show them to you , than talk to you about it. Smiley

...
As much as I want to believe this, there's no sign of development on the Navajocoin GitHub whatsoever. Unless you moved development elsewhere? I hate to say this, but it feels like this is becoming a dead end. If not, I would love to be proven wrong.. No worries, I'm a serious investor as well but I'm just very curious to hear from you guys WHERE this so called development is taking place.


This is not the some bullshit story that I write over and over again mate , it's the hard truth and I've trying to get it across for a while and yes I do answer questions.
We haven't committed all the changes to github , you will see them in the coming days. We usually only commit changes with a certified compiling wallet and them applied to the new wallet , thus with the new update coming , you will such changes we made.

300  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ★[ANN] [NAV] NAVAJO COIN - EVENT IN TAIPEI ● NEW ROADMAP ● ANONYMOUS TECH. ● CHAT ● on: October 03, 2015, 06:29:48 AM
WOW Navcoin and Orangecoin seem to be clones except script/x13 & 200M/50M ?!
omg is it a joke ?!

i begin to lose faith in NAV when i see copy-clone OC orangecoin with Anon Transactions Masternodes...
ORANGECOIN use the same technologies of anon & masternodes for NAVJOCOIN ?!

I thought  navajocoin was unique ...
 Sad  Embarrassed Sad Angry

Have you ever read the NAV WHITEPAPER or used the advanced features of NavajoCoin apart from FUDDING around? That's what NAVAJOCOIN has that no other coin has and will never have. Where in the hell did you get those ideas about OC and NAV , its ANON OR MASTERNODES were not our announcements but the announcements of its original developer and has nothing to do with NAVAJOCOIN , Now you can calm down. We created NAVAJOCOIN ANONYMOUS TECHNOLOGY ,if you did pay attention I have put it out over and over again and made it clear to the community that no other coin will have what NavajoCoin has and will have and that is why it's closed source. This is how I preserve something that took us the team quite an effort and time to implement and bring it to perfection.

Please get your facts straight before making such atrocious statements.

Warm Regards,
~SoopY~

PS: Claims by the original developer of OrangeCoin.

[ANN][OC] Orangecoin ★★ POS ★★ Anon Transactions ★★ Masternodes
https://bitcointalk.org/index.php?topic=581894.0

And no they have nothing to do with us , please pay attention to dates and the one making those claims.

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 ... 107 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!