Bitcoin Forum
April 25, 2024, 01:29:37 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Alternate cryptocurrencies / Altcoin Discussion / Unikoingold (UKG) now disfunct - compensation for "injured investors" on: September 16, 2020, 09:48:12 AM
After this press release, UKG ICO from september 2017 ( https://bitcointalk.org/index.php?topic=2206150.0 ) is declared illegal by the SEC:

https://www.sec.gov/news/press-release/2020-211

Bottom line: 31 million USD collected with the ICO, 6.1 million USD will be in a Fair Fund by the SEC.  "The order establishes a Fair Fund to return this money to injured investors."

From CMC:
Circulating Supply   149,397,371 UKG
Market Cap   $1,640,790 USD

If the distrubution of the funds is 1 on 1 linked to tokens that would mean a reimbursement of about 4.08 USD per 100 UKG. So far I couldn't find news on the Fair Fund, whether you'd need to register or that they'll simply look at the tokens at a certain date/time.
2  Economy / Service Discussion / Trade API check? BTC-e on: January 22, 2014, 11:10:19 AM
Hi all,

I'm trying to get a POST command to work on BTC-e, but keep getting an "invalid sign" response. My GET on the public API works like a charm. So I'm wondering if my SHA512 calculation is messed up (working in VBA/Excel) or if I'm doing something else wrong? My main question would be: with APIKey "MyApiKey", SecretKey "MySecretKey" and postdata being "method=getInfo&nonce=1390391080", is my Sign correct?

For test purposes:
APIkey = "MyApiKey" (yes, this should be something else)
SecretKey = "MySecretKey" (this too)
TradeApiSite = "https://btc-e.com/tapi"
postData= "method=getInfo&nonce=1390391080"

And the resulting calculated Sign:
Sign (SHA512): 6DmHCo3HxkiSZSC577vx7pycF2bKvRHP4JATBxpxiGAyqVSFFeUuKlteJ6l2GyZ0XwJfffU/nZnJmWAtPrmvHA==

And the bit of code I use:
Code:
Set objHTTP = CreateObject("WinHttp.WinHttpRequest.5.1")
objHTTP.Open "POST", TradeApiSite, False
objHTTP.SetRequestHeader "Content-Type", "application/x-www-form-urlencoded"
objHTTP.SetRequestHeader "Key", APIkey
objHTTP.SetRequestHeader "Sign", Sign
objHTTP.Send (postData)

And the result:
{"success":0,"error":"invalid sign"}

Thanks for any pointers,

Koen
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!