Bitcoin Forum
April 28, 2024, 10:19:04 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Warning: One or more bitcointalk.org users have reported that they strongly believe that the creator of this topic is a scammer. (Login to see the detailed trust ratings.) While the bitcointalk.org administration does not verify such claims, you should proceed with extreme caution.
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 ... 89 »
  Print  
Author Topic: BTC-E.com exchange Bitcoin, Litecoin, Namecoin <-> USD\BTC (fee 0.2%)  (Read 264859 times)
EnergyVampire
Full Member
***
Offline Offline

Activity: 210
Merit: 100



View Profile
August 02, 2012, 06:18:50 PM
 #241

Great recovery from the hack, BTC-e.

Cheers!

1714299544
Hero Member
*
Offline Offline

Posts: 1714299544

View Profile Personal Message (Offline)

Ignore
1714299544
Reply with quote  #2

1714299544
Report to moderator
1714299544
Hero Member
*
Offline Offline

Posts: 1714299544

View Profile Personal Message (Offline)

Ignore
1714299544
Reply with quote  #2

1714299544
Report to moderator
1714299544
Hero Member
*
Offline Offline

Posts: 1714299544

View Profile Personal Message (Offline)

Ignore
1714299544
Reply with quote  #2

1714299544
Report to moderator
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714299544
Hero Member
*
Offline Offline

Posts: 1714299544

View Profile Personal Message (Offline)

Ignore
1714299544
Reply with quote  #2

1714299544
Report to moderator
1714299544
Hero Member
*
Offline Offline

Posts: 1714299544

View Profile Personal Message (Offline)

Ignore
1714299544
Reply with quote  #2

1714299544
Report to moderator
1714299544
Hero Member
*
Offline Offline

Posts: 1714299544

View Profile Personal Message (Offline)

Ignore
1714299544
Reply with quote  #2

1714299544
Report to moderator
PoorGirl
Newbie
*
Offline Offline

Activity: 30
Merit: 0



View Profile
August 04, 2012, 01:58:02 AM
 #242

Anyone got the API to work with C++ or C# ?

I get this result:

{"success":0,"error":"invalid nonce parameter"}  Huh


Code:
        private void button1_Click(object sender, EventArgs e)
        {
           
        NameValueCollection query = new NameValueCollection();

        string apikey = "*****";
        string secret = "*****";

        HttpWebRequest req = (HttpWebRequest)WebRequest.Create("https://btc-e.com/tapi");
        req.Method = "POST";

        query.Add("nonce", "100"); // INCREASE BY 1 ON NEXT CALL
        query.Add("method", "getInfo");
       
        String post_data = "";
        for (int i = 0; i < query.Count; i++)
        {
            post_data += "&";
            post_data += query.Keys[i];
            post_data += "=";
            post_data += query[i];
        }
        post_data = post_data.Substring(1);
        richTextBox1.AppendText(post_data); // CHECKIN POST DATA
     
        HMACSHA512 hmac = new HMACSHA512(Convert.FromBase64String(secret));
        String sign = Convert.ToBase64String(hmac.ComputeHash(Encoding.UTF8.GetBytes(post_data)), Base64FormattingOptions.None);

        req.Headers.Add("Key", apikey);
        req.Headers.Add("Sign", sign);

        req.UserAgent = "PoorGirl";
        req.ContentType = "application/x-www-form-urlencoded";

        StreamWriter reqStream = new StreamWriter(req.GetRequestStream());
        reqStream.Write(post_data);
        reqStream.Close();

        HttpWebResponse resp = (HttpWebResponse)req.GetResponse();

        StreamReader respStream = new StreamReader(resp.GetResponseStream());
        richTextBox1.AppendText(respStream.ReadToEnd()); // SHOW RESPONSE
        respStream.Close();
           
        }

btc-e.com (OP)
Legendary
*
Offline Offline

Activity: 1694
Merit: 1002


View Profile WWW
August 04, 2012, 05:38:48 AM
 #243

nix way, фaйлы key и secret - ключ из пpoфиля

echo -n "`date '+%s'`">nonce && echo -n "method=getInfo&nonce=`cat nonce`" | openssl dgst -sha512 -hmac `cat secret` > sign && curl -d "method=getInfo&nonce=`cat nonce`" -H "Key:`cat key`" -H "Sign:`cat sign`" https://btc-e.com/tapi

php:

<?php
$t = time();
$h = hash_hmac('sha512','method=getInfo&nonce='.$t, 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'); //xx...xx secret

$url='https://btc-e.com/tapi';

$data = "method=getInfo&nonce=$t";
$tuCurl = curl_init();
curl_setopt($tuCurl, CURLOPT_URL, $url);
curl_setopt($tuCurl, CURLOPT_VERBOSE, 1);
curl_setopt($tuCurl, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($tuCurl, CURLOPT_POST, 1);
curl_setopt($tuCurl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($tuCurl, CURLOPT_POSTFIELDS, $data);
curl_setopt($tuCurl, CURLOPT_HTTPHEADER,
 array("Key: AAAAAAAA-AAAAAAAA-AAAAAAAA-AAAAAAAA-AAAAAAAA",
 "Sign: $h"));

$tuData = curl_exec($tuCurl);
curl_close($tuCurl);

echo $tuData;
?>

Bitcoin \ Litecoin \ Namecoin \ Novacoin <-> Exchange btc-e.com

BTC-E.com // Биpжa пo aвтoмaтичecкoй тopгoвлe Bitcoin \ Litecoin \ Namecoin \ Novacoin <-> Exchange btc-e.com
btc-e.com (OP)
Legendary
*
Offline Offline

Activity: 1694
Merit: 1002


View Profile WWW
August 04, 2012, 01:58:15 PM
 #244

Last updated
https://btc-e.com/news/84

Bitcoin \ Litecoin \ Namecoin \ Novacoin <-> Exchange btc-e.com

BTC-E.com // Биpжa пo aвтoмaтичecкoй тopгoвлe Bitcoin \ Litecoin \ Namecoin \ Novacoin <-> Exchange btc-e.com
btc-e.com (OP)
Legendary
*
Offline Offline

Activity: 1694
Merit: 1002


View Profile WWW
August 05, 2012, 09:20:19 AM
 #245

Added examples of trade API

https://btc-e.com/api/documentation

PHP: http://pastebin.com/DDqAx7VU

Python: http://pastebin.com/ec11hxcP by miraclemax

Java: http://pastebin.com/jyd9tACF by dApZoKntut

C#: http://pastebin.com/TSdGbfBs by DmT

Bitcoin \ Litecoin \ Namecoin \ Novacoin <-> Exchange btc-e.com

BTC-E.com // Биpжa пo aвтoмaтичecкoй тopгoвлe Bitcoin \ Litecoin \ Namecoin \ Novacoin <-> Exchange btc-e.com
btc-e.com (OP)
Legendary
*
Offline Offline

Activity: 1694
Merit: 1002


View Profile WWW
August 06, 2012, 10:20:57 PM
 #246

https://btc-e.com/news/85

Dear Btc-e.com Members,

Today we celebrate our One Year Anniversary!

A lot of things have been done during this year. As a result we have become Exchange No. 2 according to http://bitcoincharts.com/markets with the monthly volume of $900,000.

We have proved able to overcome the crisis related to the recent problems on the Exchange.

Thank you for your support and trust. We hope we managed to live up to your trust.

To celebrate our Anniversary, today on August 7, 2012 the trade fee will be 0%.

Sincerely yours,

Support

Bitcoin \ Litecoin \ Namecoin \ Novacoin <-> Exchange btc-e.com

BTC-E.com // Биpжa пo aвтoмaтичecкoй тopгoвлe Bitcoin \ Litecoin \ Namecoin \ Novacoin <-> Exchange btc-e.com
btc-e.com (OP)
Legendary
*
Offline Offline

Activity: 1694
Merit: 1002


View Profile WWW
August 07, 2012, 02:45:43 PM
 #247

Hi dear BTC-E Team.

I just tried to log in to my account named "Ban4na" and got this wonderful message.

Quote
You has been banned. (IP XXX.XXX.XXX.XXX)

I couldn't even open the FAQ or something like that anymore.

I have BTC and NMC on BTC-E.

I travel a lot and so i log in from various IP addresses. Can you please unban my account or give me a chance to authenticate who i am to get it unbanned. I want my coins back.

Thanks in advance

~
Ban4na

Please send your IP to support@btc-e.com

Bitcoin \ Litecoin \ Namecoin \ Novacoin <-> Exchange btc-e.com

BTC-E.com // Биpжa пo aвтoмaтичecкoй тopгoвлe Bitcoin \ Litecoin \ Namecoin \ Novacoin <-> Exchange btc-e.com
zyk
Full Member
***
Offline Offline

Activity: 224
Merit: 101


View Profile
August 08, 2012, 08:42:04 AM
 #248


Whats about the Sepa account data....would you please show me where i can find your IBAN and BIC ??

If setting up an account is a hassle for you.....please feel free to use mine in the meantime :

Petzel
IBAN: DE73 5084 0005 0360 5870 00
BIC: COBADEFFXXX

I´ll PM you the amount a user has sent under his name and after you accomplished your Sepa account i sent you the funds !!

Alright?

Thank you Zyk
btc-e.com (OP)
Legendary
*
Offline Offline

Activity: 1694
Merit: 1002


View Profile WWW
August 08, 2012, 12:38:22 PM
 #249


Whats about the Sepa account data....would you please show me where i can find your IBAN and BIC ??

If setting up an account is a hassle for you.....please feel free to use mine in the meantime :

Petzel
IBAN: DE73 5084 0005 0360 5870 00
BIC: COBADEFFXXX

Iґll PM you the amount a user has sent under his name and after you accomplished your Sepa account i sent you the funds !!

Alright?

Thank you Zyk

You need to send questions in support@btc-e.com

Bitcoin \ Litecoin \ Namecoin \ Novacoin <-> Exchange btc-e.com

BTC-E.com // Биpжa пo aвтoмaтичecкoй тopгoвлe Bitcoin \ Litecoin \ Namecoin \ Novacoin <-> Exchange btc-e.com
zyk
Full Member
***
Offline Offline

Activity: 224
Merit: 101


View Profile
August 08, 2012, 06:00:01 PM
 #250

i did already speak to support...they said just yesterday that there would be some account today .....

and what i posted here is a proposal, a  suggestion to make you quicklier the number one in the world!! Cool Wink

Don´t you like the idea?

Thanks Zyk
btc-e.com (OP)
Legendary
*
Offline Offline

Activity: 1694
Merit: 1002


View Profile WWW
August 09, 2012, 09:09:14 AM
 #251

Update

- Withdrawal  USD :

  Webmoney WMZ  (fee 4.8%)
  LibertyReserve  (fee of 3%)
  Paypal  (fee 6%)
  Perfect Money  (5% fee)
  Privat Bank  (fee 5%)
  QIWI  (5% fee)
  LiqPay  (3% fee)
  Yandex RUB  (5% fee)
  RBK money  (5% fee)
  BTC-e CODE  (0% fee)
  SberBank RUB  (6% fee)
  Telebank RUB  (5% fee)
  Alfa Bank RUB  (5% fee)
  Wire Transfer  (1.5% fee)

Bitcoin \ Litecoin \ Namecoin \ Novacoin <-> Exchange btc-e.com

BTC-E.com // Биpжa пo aвтoмaтичecкoй тopгoвлe Bitcoin \ Litecoin \ Namecoin \ Novacoin <-> Exchange btc-e.com
iCEBREAKER
Legendary
*
Offline Offline

Activity: 2156
Merit: 1072


Crypto is the separation of Power and State.


View Profile WWW
August 10, 2012, 10:04:47 PM
 #252

When BTC started jumping up to $50 on BTC-E, it seem like this trend had finally started accelerating.   Shocked


I quickly created an account and deposited a block o' BTC to sell into the spike.  Cheesy

It turned out LibertyReserve was hacked and flooding BTC-E with fake dollars.   Undecided

So of course my Paypal withdrawal was never processed, and I thought the BTC50 were gone forever.   Cry

But BTC-E kept its promise and refunded my lost coins!   Grin

/coolstorybro   Cool


tldr:
BTC-E is the best (high volume LTC friendly) exchange because they care about their users and doing the right thing. 
I'll be a customer forever
!
    Kiss


██████████
█████████████████
██████████████████████
█████████████████████████
████████████████████████████
████
████████████████████████
█████
███████████████████████████
█████
███████████████████████████
██████
████████████████████████████
██████
████████████████████████████
██████
████████████████████████████
██████
███████████████████████████
██████
██████████████████████████
█████
███████████████████████████
█████████████
██████████████
████████████████████████████
█████████████████████████
██████████████████████
█████████████████
██████████

Monero
"The difference between bad and well-developed digital cash will determine
whether we have a dictatorship or a real democracy." 
David Chaum 1996
"Fungibility provides privacy as a side effect."  Adam Back 2014
Buy and sell XMR near you
P2P Exchange Network
Buy XMR with fiat
Is Dash a scam?
btc-e.com (OP)
Legendary
*
Offline Offline

Activity: 1694
Merit: 1002


View Profile WWW
August 14, 2012, 12:59:18 AM
 #253

When BTC started jumping up to $50 on BTC-E, it seem like this trend had finally started accelerating.   Shocked


I quickly created an account and deposited a block o' BTC to sell into the spike.  Cheesy

It turned out LibertyReserve was hacked and flooding BTC-E with fake dollars.   Undecided

So of course my Paypal withdrawal was never processed, and I thought the BTC50 were gone forever.   Cry

But BTC-E kept its promise and refunded my lost coins!   Grin

/coolstorybro   Cool


tldr:
BTC-E is the best (high volume LTC friendly) exchange because they care about their users and doing the right thing. 
I'll be a customer forever
!
    Kiss

Thank you!

http://bitcoincharts.com/markets/btceUSD.html - 30-day Volume (Currency) 1,010,634.50 USD

Bitcoin \ Litecoin \ Namecoin \ Novacoin <-> Exchange btc-e.com

BTC-E.com // Биpжa пo aвтoмaтичecкoй тopгoвлe Bitcoin \ Litecoin \ Namecoin \ Novacoin <-> Exchange btc-e.com
sethsethseth
Sr. Member
****
Offline Offline

Activity: 257
Merit: 250


Not trusting third parties with my private keys


View Profile
August 17, 2012, 06:34:25 AM
 #254

I need to send $200 to a friend in Ukraine.  Can she cash out through btc-e if I send her bitcoins?  What would she need to do?

SealsWithClubs poker room has  over 400 players online. Buy in from .01 to 60btc.      BTCSportsMatch lets you bet sports with vig free lines!  Best kept secret in bitcoin....          LocalBitcoins.com is very user-friendly now for bank transfers.  You don't have to live close to trade when in the same currency area.           
Electrum client is awesome. Try it. And please stop sending bitcoins to sites run by security newbies, or don't complain when you lose everything.
btc-e.com (OP)
Legendary
*
Offline Offline

Activity: 1694
Merit: 1002


View Profile WWW
August 18, 2012, 09:37:19 AM
 #255

I need to send $200 to a friend in Ukraine.  Can she cash out through btc-e if I send her bitcoins?  What would she need to do?

yes it is possible

Bitcoin \ Litecoin \ Namecoin \ Novacoin <-> Exchange btc-e.com

BTC-E.com // Биpжa пo aвтoмaтичecкoй тopгoвлe Bitcoin \ Litecoin \ Namecoin \ Novacoin <-> Exchange btc-e.com
sethsethseth
Sr. Member
****
Offline Offline

Activity: 257
Merit: 250


Not trusting third parties with my private keys


View Profile
August 20, 2012, 11:26:20 PM
 #256

I need to send $200 to a friend in Ukraine.  Can she cash out through btc-e if I send her bitcoins?  What would she need to do?

yes it is possible

Can you explain what she would need to do to cash out?  I must make sure it is not too complicated for her.

SealsWithClubs poker room has  over 400 players online. Buy in from .01 to 60btc.      BTCSportsMatch lets you bet sports with vig free lines!  Best kept secret in bitcoin....          LocalBitcoins.com is very user-friendly now for bank transfers.  You don't have to live close to trade when in the same currency area.           
Electrum client is awesome. Try it. And please stop sending bitcoins to sites run by security newbies, or don't complain when you lose everything.
Mitchow
Full Member
***
Offline Offline

Activity: 210
Merit: 100


View Profile
August 24, 2012, 06:35:08 PM
 #257

Is there something wrong with the site at the moment or is it just me that's getting either a "Bad Gateway" or "Error: The database server is not available now, so the page cannot be displayed correctly."?
556j
Sr. Member
****
Offline Offline

Activity: 252
Merit: 250


View Profile
August 24, 2012, 06:54:27 PM
 #258

Same, need to cancel some sells and site is down Sad
btc-e.com (OP)
Legendary
*
Offline Offline

Activity: 1694
Merit: 1002


View Profile WWW
August 24, 2012, 06:59:48 PM
 #259

ddos  Sad

Bitcoin \ Litecoin \ Namecoin \ Novacoin <-> Exchange btc-e.com

BTC-E.com // Биpжa пo aвтoмaтичecкoй тopгoвлe Bitcoin \ Litecoin \ Namecoin \ Novacoin <-> Exchange btc-e.com
ThiagoCMC
Legendary
*
Offline Offline

Activity: 1204
Merit: 1000

฿itcoin: Currency of Resistance!


View Profile
August 24, 2012, 07:04:06 PM
 #260

ddos  Sad

Damn...   =(
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 ... 89 »
  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!