Bitcoin Forum
May 14, 2024, 08:07:21 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 [479] 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 »
  Print  
Author Topic: [ANN] Qora | Released 16 May | 100% POS | New Source  (Read 748197 times)
snuffish
Sr. Member
****
Offline Offline

Activity: 259
Merit: 250


View Profile
October 29, 2014, 08:42:17 PM
 #9561

Now I have struggled with this coin as a developer for 2-3 days.. so this is my "final solution" to post in this thread.
This coin has the worst documentation for developers I have encounter in a long time. I hope they will release a better one when they have released the Source code.

I'm struggling with the HTTP api requests atm.. it seems that I can't execute POST commands and only GET commands through the HTTP requests.
Ex.
Quote
$transactions = file_get_contents("http://localhost:9085/transactions");

But I can't "post" transactions like this:
Quote
$payment = file_get_contents("http://localhost:9085/payment/" . $json_array);

Since all "POST" commands results in a "Method not allowed".

Anyone got any idea how to go around this?



Code:
function httpRequest($host, $port, $method, $path, $params, $jsonparams) {

  $paramStr = "";

  if($jsonparams == 1)
  {
    $paramStr = json_encode($params);
  }
  else
  {
    $paramStr = $params;
  }
  
  if (empty($method)) {
    $method = 'GET';
  }
  $method = strtoupper($method);
  if (empty($port)) {
    $port = 80;
  }

  $sock = fsockopen($host, $port, $errno, $errstr, 5);
  if($sock)
  {
 fputs($sock, "$method $path HTTP/1.1\r\n");
 fputs($sock, "Host: $host\r\n");
 fputs($sock, "Content-type: " .
  "application/x-www-form-urlencoded\r\n");
 if ($method == "POST") {
fputs($sock, "Content-length: " .
strlen($paramStr) . "\r\n");
 }
 fputs($sock, "Connection: close\r\n\r\n");
 if ($method == "POST") {
fputs($sock, $paramStr);
 }

 $result = "";
 while (!feof($sock)) {
$result .= fgets($sock,1024);
 }

 $result2 = strstr($result, "\r\n\r\n");
 
 fclose($sock);
 $result3 = json_decode($result2 , true);
 
 return $result3;
  }
  else
  {
    return 'down';
  }
}


  $buf = httpRequest("127.0.0.1",
    9085, "GET", "/addresses/validate/".$addr, '');  

  $buf = httpRequest("127.0.0.1",
    9085, "POST", "/wallet/unlock", 'sfdPASSfds3', 0);  
  
  $buf = httpRequest("127.0.0.1",
    9085, "POST", "/payment", array('amount' => $amount, 'fee' => '1.0', 'sender' => 'QXbn5VKQLUCbpHbmaQKRRpouTGXLtyWTut', 'recipient' => $addr), 1);  


Try it.

Thanks, but I just solved this "mystery" with curl_init() Smiley

Quote
$url = "http://localhost:9085/payment";
$data = array(
         "amount" => $amount,
         "fee" => "1",
         "sender" => $sender,
         "recipient" => $recipient
      );
      $data_string = json_encode($data);

      $ch = curl_init($url);                                                                      
      curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");                                                                    
      curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);                                                                  
      curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);                                                                      
      curl_setopt($ch, CURLOPT_HTTPHEADER, array(                                                                          
         'Content-Type: application/json',                                                                                
         'Content-Length: ' . strlen($data_string))                                                                      
      );                                                                                                                  
      
      echo curl_exec($ch);

1715674041
Hero Member
*
Offline Offline

Posts: 1715674041

View Profile Personal Message (Offline)

Ignore
1715674041
Reply with quote  #2

1715674041
Report to moderator
1715674041
Hero Member
*
Offline Offline

Posts: 1715674041

View Profile Personal Message (Offline)

Ignore
1715674041
Reply with quote  #2

1715674041
Report to moderator
1715674041
Hero Member
*
Offline Offline

Posts: 1715674041

View Profile Personal Message (Offline)

Ignore
1715674041
Reply with quote  #2

1715674041
Report to moderator
"The nature of Bitcoin is such that once version 0.1 was released, the core design was set in stone for the rest of its lifetime." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
rabbiter
Full Member
***
Offline Offline

Activity: 168
Merit: 100



View Profile
October 29, 2014, 08:55:24 PM
 #9562

This shouldn't be something new if you read my last post, but I found out more things on top of them.

thnx for pointing us to your previous post...  I'm not sure how but for some reason I missed it...   Undecided

Welcome to my Ignore List!   Grin


 Cheesy

Edit: some people just wanna get cheap qora or
         Some nxt people are afraid of qoras success
           Or some wanna quick btc to get some cash?

Which one is true?




There is no one answer, stakeholders were over 100 people.

One thing I believe is that while Qora supporters like to say the price never mattered but the truth is Qora was never a threat to NXT or anyone while it stayed stuck in a low price. If the community had pushed the price up like I suggested we could be in the top 10 coins and no one would be able to ignore us. Now people can say oh your 50th on Coinmarketcap so You're irrelevant, oh your closed source no one will invest in you. I did my best for this coin I really did, personally I gave up in the end.
snuffish
Sr. Member
****
Offline Offline

Activity: 259
Merit: 250


View Profile
October 29, 2014, 09:35:06 PM
 #9563

Now Qora have been added to flippoker Smiley
http://qora.flippoker.net/

twistelaar
Legendary
*
Offline Offline

Activity: 1148
Merit: 1000


View Profile
October 29, 2014, 10:02:01 PM
 #9564

When goes QORA OS? We need to do something.. QORA DEV whats the plan?
wizzardTim
Legendary
*
Offline Offline

Activity: 1708
Merit: 1000


Reality is stranger than fiction


View Profile
October 29, 2014, 10:25:27 PM
 #9565

Now Qora have been added to flippoker Smiley
http://qora.flippoker.net/

Great!

Finally, services are being developed!

Behold the Tangle Mysteries! Dare to know It's truth.

- Excerpt from the IOTA Sacred Texts Vol. I
visual111
Hero Member
*****
Offline Offline

Activity: 493
Merit: 500


View Profile
October 30, 2014, 12:14:23 AM
 #9566

fake walls? only 10 BTC traded up to 15 sats, there was around 20 BTC between 13/14 earlier this morning.







██████████████████████████████████████████████████████████████████████████████████████████████
██████████████████████████████████████████████████████████████████████████████████████
███████████████████████████████████████████████████████████████████████▄▄▄███████████████████████
███████████████████████████████████████████████████████████████████████▀▀▀████████████████████████
██████████████████████████████████████████████████████████████████████████████████████████████████
█████████████████████████████████████████████████████████████████████████████████████████████████





INTRODUCING WAVES
ULTIMATE ASSET/CUSTOM TOKEN BLOCKCHAIN PLATFORM







flankliu
Sr. Member
****
Offline Offline

Activity: 334
Merit: 250


View Profile
October 30, 2014, 01:11:36 AM
 #9567

Now Qora have been added to flippoker Smiley
http://qora.flippoker.net/
Thank you, i like texas hold'em, i will try some.

pigheadbig
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500



View Profile
October 30, 2014, 08:22:51 AM
 #9568

fake walls? only 10 BTC traded up to 15 sats, there was around 20 BTC between 13/14 earlier this morning.


yeah, someone just want to buy some qora at low price,
hold on your coins.
twospirit
Hero Member
*****
Offline Offline

Activity: 502
Merit: 500


View Profile
October 30, 2014, 03:26:33 PM
 #9569

fake walls? only 10 BTC traded up to 15 sats, there was around 20 BTC between 13/14 earlier this morning.


yeah, someone just want to buy some qora at low price,
hold on your coins.
hodl'em!
pigheadbig
Hero Member
*****
Offline Offline

Activity: 742
Merit: 500



View Profile
October 30, 2014, 03:53:29 PM
 #9570

the hell sell order shows up again...
it's the chance for big whale to get qora.
nextgencoin
Legendary
*
Offline Offline

Activity: 1106
Merit: 1000


View Profile
October 30, 2014, 04:04:26 PM
 #9571

what's the hell sell order?
who want to out can contact renat0  Grin
He's not replying.  I think he's just trying to spread optimism so he can cash out.  Rumor has it whales (renat0, dzarmush, agran, rabbiter etc) and Qora are dumping.  Insider information?
I don't wanna point fingers, just posting what I heard and got to know by analysing the blockchain.  Look at that huge sell wall on bter! You take your own conclusions.

Information for those people that are not following the chat:

http://qora.co.in/chat/logs/2014/10/27.html

[22:14:50] <Qora> Anyone that wants to talk about things can always do it here or by pm.
He doesn't reply anybody either.

I'm selling qora for 12 satoshi! We may use escrow!


I got this guy at 99% likely of just creating FUD but I admit I'm a little bit wondering what is going on, someone is selling 23btc! Worth, could Qora be dumping? Does the guy really know something we don't?
Skerberus
Hero Member
*****
Offline Offline

Activity: 909
Merit: 663


View Profile
October 30, 2014, 04:45:23 PM
 #9572

what's the hell sell order?
who want to out can contact renat0  Grin
He's not replying.  I think he's just trying to spread optimism so he can cash out.  Rumor has it whales (renat0, dzarmush, agran, rabbiter etc) and Qora are dumping.  Insider information?
I don't wanna point fingers, just posting what I heard and got to know by analysing the blockchain.  Look at that huge sell wall on bter! You take your own conclusions.

Information for those people that are not following the chat:

http://qora.co.in/chat/logs/2014/10/27.html

[22:14:50] <Qora> Anyone that wants to talk about things can always do it here or by pm.
He doesn't reply anybody either.

I'm selling qora for 12 satoshi! We may use escrow!

I got this guy at 99% likely of just creating FUD but I admit I'm a little bit wondering what is going on, someone is selling 23btc! Worth, could Qora be dumping? Does the guy really know something we don't?
Keep cool, probably someone wants to buy some Blocknet!
As stated by Qora himself he does not own any Qora! And I see no reason for qora to put so much good work into this product and leave Smiley! Look at his actions and you know he is very trustful!
Moreover you can talk to him nearly every evening in the chat if you want!
zanzibar
Hero Member
*****
Offline Offline

Activity: 715
Merit: 500



View Profile
October 30, 2014, 04:59:23 PM
 #9573

There is no one answer, stakeholders were over 100 people.

One thing I believe is that while Qora supporters like to say the price never mattered but the truth is Qora was never a threat to NXT or anyone while it stayed stuck in a low price. If the community had pushed the price up like I suggested we could be in the top 10 coins and no one would be able to ignore us. Now people can say oh your 50th on Coinmarketcap so You're irrelevant, oh your closed source no one will invest in you. I did my best for this coin I really did, personally I gave up in the end.

File this one under "No One Cares".  Please keep your word and stop posting, you've done your damage to Qora.
TwinWinNerD
Legendary
*
Offline Offline

Activity: 1680
Merit: 1001


CEO Bitpanda.com


View Profile WWW
October 30, 2014, 07:16:26 PM
 #9574


As stated by Qora himself he does not own any Qora!

if you really beleive that....

PondSea
Legendary
*
Offline Offline

Activity: 1428
Merit: 1000


View Profile
October 30, 2014, 07:19:11 PM
 #9575


As stated by Qora himself he does not own any Qora!

if you really beleive that....

Why wouldnt we believe it? We have no proof either way so we can take his word for it or not. I personally will take his word for it.





░░░░░░░░░▀▀▀█████████
░░░░░░░░░░░░░░░████████
░░░░▄███████▄░░░░████████
░░░░███████████░░░░██████
░░░▀███████████░░░░████░░
███▄░░░░░░░░░░▀████░░░███░░██
█████▄▄▄▄▄▄▄▄▄▄▄████░░░██░░██
█████████████▄░░████░░░░░
░░█████████████░░█████
░░░░█████████▀░░░██████▌
░░░░░░░▀▀▀▀░░░░▄████████▌
░░░░░░░░░░▄▄▄▄███████
SuperNET.org
..BarterDEX..
.
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
DECENTRALIZED CRYPTOCURRENCY EXCHANGE
Developed to Unite Coin Communities | ✔ SECURE ✔ FREE ✔ VISIBILITY ✔ EASY INTEGRATION |

▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬

Skerberus
Hero Member
*****
Offline Offline

Activity: 909
Merit: 663


View Profile
October 30, 2014, 07:51:16 PM
 #9576

Latest Chat news Smiley

http://qora.co.in/chat/logs/2014/10/29.html

[19:09:12] <twospirit> @Vrontis: do you know how is the AT implementation going? Smiley
[19:09:43] <twospirit> I have nothing to tweet about Sad
[19:16:55] <Vrontis> @twospirit: yes, integration has already started and actually right now both devs are working on it
[19:17:10] <Vrontis> but I cannot tell exactly where we are Smiley
[19:18:32] <Vrontis> but I guess AT is getting into the testnet's core right now ( from what I do actually see now )
PondSea
Legendary
*
Offline Offline

Activity: 1428
Merit: 1000


View Profile
October 31, 2014, 07:49:46 PM
 #9577

Now Qora have been added to flippoker Smiley
http://qora.flippoker.net/

Great!

Finally, services are being developed!

I think we should show some love to this. If people are making stuff for Qora and we dont show any interest devs wont make things for Qora any more....

snuffish can you provide a donation address so we can donate some Qora to you.





░░░░░░░░░▀▀▀█████████
░░░░░░░░░░░░░░░████████
░░░░▄███████▄░░░░████████
░░░░███████████░░░░██████
░░░▀███████████░░░░████░░
███▄░░░░░░░░░░▀████░░░███░░██
█████▄▄▄▄▄▄▄▄▄▄▄████░░░██░░██
█████████████▄░░████░░░░░
░░█████████████░░█████
░░░░█████████▀░░░██████▌
░░░░░░░▀▀▀▀░░░░▄████████▌
░░░░░░░░░░▄▄▄▄███████
SuperNET.org
..BarterDEX..
.
▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
DECENTRALIZED CRYPTOCURRENCY EXCHANGE
Developed to Unite Coin Communities | ✔ SECURE ✔ FREE ✔ VISIBILITY ✔ EASY INTEGRATION |

▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬

dzarmush
Legendary
*
Offline Offline

Activity: 1806
Merit: 1001


View Profile
October 31, 2014, 10:14:23 PM
 #9578

Alert

Don't trade with renat0. He's a scammer. He approached me with an offer of buying 100M Qora for 13 BTC. I sent first and he disappeared for 3 days. The last PM I got from him is: "Sorry for what I've done to you. I'll pay you, just don't know if in 1 week or 1 year.". It shows that nothing unexpected happened. He intended to scam me right from the start.

If anyone has any info about his real life name/address, please PM me. Few months ago he told me that he's 24 years old from Brazil. That's the only info I've got at the moment.

bonipper
Sr. Member
****
Offline Offline

Activity: 246
Merit: 250


View Profile
October 31, 2014, 11:03:42 PM
 #9579

That might explain some of the massive dumps. What date did he get your coins?
dzarmush
Legendary
*
Offline Offline

Activity: 1806
Merit: 1001


View Profile
October 31, 2014, 11:26:50 PM
 #9580

That might explain some of the massive dumps. What date did he get your coins?

He didn't dump.

Actually the whole story is crazy, he's the biggest Qora holder and one of the biggest Nxt holders. The guy has hundreds of BTC. Maybe he's a junky or something.

Pages: « 1 ... 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 [479] 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!