Bitcoin Forum
April 25, 2024, 08:30:19 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 3 4 5 »
1  Other / Off-topic / Re: Worst mistake you did with Bitcoin? on: August 19, 2015, 08:25:23 AM
online investment http://btct.co, https://www.havelockinvestments.com/, https://cryptostocks.com/  Sad
2  Local / Pilipinas / Re: Pilipinas (Philippines) on: August 17, 2015, 02:45:35 AM
Guys,

i just want to share and maybe you can give me some feedbacks. Last night i joined in DevCup 2015 (a hackathon here in PH) and the theme for this year is about "Connect" (unfortunately i lose again lol). Usually kasi niLilive ko yung gawa ko same nung sinali ko last year. My name of my app is "Connect Chain", connecting people to blockchain. To make it simple its a website (can be access via mobile browser) wherein the user will just signup (email and sms) and enter a public address (bitcoin public address) and every time there is a new transaction (either your wallet is local bitcoin-qt or web wallet like blockchain) it will notify you in real time via email and sms. Medyo gastos lang sa domain+server+api fees so tatanong ko lang muna baka may nakagamit na sa inyo na ganon site/app...hoping for your feedback Smiley

Thanks,

Mike
3  Local / Pilipinas / Re: Pilipinas (Philippines) on: May 27, 2014, 01:51:09 PM
Guys,

Anyone tried to setup an exchange here in PH licensed? Law, company registration, CPA and bank accounts. Not sure where to start from but planning to go to nearest municipal.

TIA,

Mike
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ~~ [PHC] [PHCOIN] [X11] [SAVE Philippines][Grow Digital Currency Industry] ~~ on: May 27, 2014, 11:52:54 AM
Guys,

i tried this pool, http://phc.hashhot.com/index.php?page=gettingstarted

I used cgminer-4.3.4-x86_64-built.tar.bz2 from http://ck.kolivas.org/apps/cgminer/ but when i run on my centos or debian box im encountering this error

error while loading shared libraries libudev.so.1

any ideas?

TIA,

Mike
Its X11 algo bro, you ll need sgminer from darkcoin, cgminer wont work!

thanks kcanup, ill check it out Smiley
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: ~~ [PHC] [PHCOIN] [X11] [SAVE Philippines][Grow Digital Currency Industry] ~~ on: May 27, 2014, 05:48:11 AM
Guys,

i tried this pool, http://phc.hashhot.com/index.php?page=gettingstarted

I used cgminer-4.3.4-x86_64-built.tar.bz2 from http://ck.kolivas.org/apps/cgminer/ but when i run on my centos or debian box im encountering this error

error while loading shared libraries libudev.so.1

any ideas?

TIA,

Mike
6  Bitcoin / Development & Technical Discussion / Re: bitcoind sendmany vs. sendtoaddress on: May 14, 2014, 07:58:44 AM
Sendmany creates a single transaction with multiple outputs.
Sendtoaddress would be one transaction per address.

Outputs are relatively small, inputs are much larger so using sendmany reduces the average tx size on a per output basis.

thanks for the info.

It doesn't mean as well that there will be much lesser Transaction fee?

TIA

Mike
"Minimum" fee should be significantly reduced. If you're splitting a relatively large output into many outputs, there's a much greater savings. Outside of having all the outputs linked together in the blockchain (which may be a privacy concern), I don't know of any disadvantages to sendmany... maybe messier to deal with if manually entering it into the console?

thanks for info Smiley
7  Bitcoin / Development & Technical Discussion / Re: bitcoind sendmany vs. sendtoaddress on: May 14, 2014, 07:26:56 AM
Sendmany creates a single transaction with multiple outputs.
Sendtoaddress would be one transaction per address.

Outputs are relatively small, inputs are much larger so using sendmany reduces the average tx size on a per output basis.

thanks for the info.

It doesn't mean as well that there will be much lesser Transaction fee?

TIA

Mike
8  Bitcoin / Development & Technical Discussion / bitcoind sendmany vs. sendtoaddress on: May 14, 2014, 07:12:04 AM
Guys,

Any advantage if i gonna use sendmany over sendtoaddress?

Im planning to send payouts to many btc address so im thinking of looping to sendtoaddress OR single command of sendmany.

TIA

Mike
9  Bitcoin / Development & Technical Discussion / Re: ./bitcoind listtransactions from another wallet on: May 05, 2014, 04:56:32 AM
Guys,

Is it possible let say i have WALLET1(in my local PC/MAC/Cold storage) and WALLET2(a server which serves as a bitcoind)

Now can i run a bitcoin API on WALLET2 like ./bitcoind listtransactions that will return all transaction by WALLET1? Im planning to use WALLET1 for sending money while WALLET2 just on server generating BTC address for incoming payments. Is it possible?

Thanks,

Mike

Hi,

seems wont be possible.

Another question. Is it possible to get all transaction that is categorize as send on litecoind API? listtransactions returns all both receive and send. Possible just  send?

Thanks,

Mike
10  Bitcoin / Development & Technical Discussion / ./bitcoind listtransactions from another wallet on: May 05, 2014, 03:27:35 AM
Guys,

Is it possible let say i have WALLET1(in my local PC/MAC/Cold storage) and WALLET2(a server which serves as a bitcoind)

Now can i run a bitcoin API on WALLET2 like ./bitcoind listtransactions that will return all transaction by WALLET1? Im planning to use WALLET1 for sending money while WALLET2 just on server generating BTC address for incoming payments. Is it possible?

Thanks,

Mike
11  Economy / Service Discussion / Re: Bitfenix API authentication on: March 24, 2014, 11:18:36 PM
Hi,

ok i was able to figure out

Code:
<?php
$apiUrl 
'https://api.bitfinex.com/v1/margin_infos';
$apiKey 'xxx';
$apiSecret 'yyy';

$payload = array(
'request' => '/v1/margin_infos',
'nonce' => strval(time() * 100000),
);
$payload base64_encode(json_encode($payload));
$signature hash_hmac('sha384'$payload$apiSecret);
$headers = array(
"X-BFX-APIKEY : " $apiKey,
"X-BFX-PAYLOAD : " $payload,
"X-BFX-SIGNATURE : " $signature,
);

$curl curl_init();
curl_setopt($curlCURLOPT_POSTFIELDS'');
curl_setopt($curlCURLOPT_POST0);
curl_setopt($curlCURLOPT_HTTPHEADER$headers);      
curl_setopt ($curlCURLOPT_URL$apiUrl);
curl_setopt($curlCURLOPT_FOLLOWLOCATION1);
curl_setopt($curlCURLOPT_RETURNTRANSFER1);
$curlResult curl_exec ($curl);
curl_close($curl);

echo 
$curlResult;

solved.

Thanks,

Mike
12  Alternate cryptocurrencies / Altcoin Discussion / Re: List of all cryptocoins on: March 24, 2014, 08:21:34 AM
Guys,

Do you know a site which list all alt coins that has PoW Algorithm: Scrypt-N?

TIA
13  Economy / Service Discussion / Bitfenix API authentication on: March 24, 2014, 08:00:04 AM
Guys,

Any idea what im missing. Im using https://www.bitfinex.com/pages/api. unfortunately there authentication doesnt have any sample. I tried google but not too much .php example.

Code:
<?php
$apiUrl 
'https://api.bitfinex.com/v1/margin_infos';
$keyId 'xxxx';
$keySecret 'xxxxxx';

$payload = array(
'request' => '/v1/margin_infos',
'nonce' => time() * 100000,
);
$payload base64_encode(json_encode($payload));
$signature hash_hmac('sha384'$payload$keySecret);
$headers = array(
"X-BFX-APIKEY : " $keyId,
"X-BFX-PAYLOAD : " $payload,
"X-BFX-SIGNATURE : " $signature,
);

$curl curl_init();
curl_setopt($curlCURLOPT_HTTPHEADER$headers);      
curl_setopt ($curlCURLOPT_URL$apiUrl);
curl_setopt($curlCURLOPT_FOLLOWLOCATION1);
curl_setopt($curlCURLOPT_RETURNTRANSFER1);
$curlResult curl_exec ($curl);
curl_close($curl);

echo 
$curlResult;

Result/Error

{"message":"Could not find a key matching the given X-BFX-APIKEY."}

But i did pass X-BFX-APIKEY as header

TIA,

Mike
14  Economy / Service Discussion / Re: Blockchain.info Wallet API on: March 15, 2014, 02:13:39 AM
Guys,

many thanks for the help, i figure it out. What i did was i have a cron that checks the balance provided by Listing Addresses API by blockchain. Then from there i check each address balance.

Thanks.

Mike
15  Economy / Service Discussion / Blockchain.info Wallet API on: March 14, 2014, 09:25:33 AM
Guys,

I hope you can help me. Im working on a project and im using https://blockchain.info/api/blockchain_wallet_api. I know that the logic is that you create an address for every customer wherein they can send there payment. My question is how i can identify if the user paid on the created address?

I know the API has a callback but how can identify on what invoice reference it is. Can the blockchain API can send a custom variable for callback? I can see in there documentation Http Callbacks {Custom Parameters} but when you can pass it?

Thanks in advance,

Mike
16  Bitcoin / Project Development / Re: top rich address on: March 12, 2014, 12:58:17 AM
hi,

thanks for the help Smiley

by the way so at the end of the day i need compare btc address each to identify top N address right? Is there any way i can just query.

scrapping other site is my last option i guess.

Thanks,

Mike
17  Bitcoin / Project Development / Re: top rich address on: March 11, 2014, 07:27:12 AM
They manually check every aingle Bitcoin Address to see who has the most funds.

No seriously.  Smiley

i see, are they not using some sort of c++ bitcoin block parser?

TIA,

Mike
18  Bitcoin / Project Development / top rich address on: March 10, 2014, 03:29:42 AM
Guys,

any idea on how to get the top 100, top 1000,top 10000 or top N rich addresses. I saw some site was able to extract it i.e.

http://bitinfocharts.com/top-100-richest-bitcoin-addresses.html
http://btc.ondn.net/

Do they use an API or what do you think they scrap data?

TIA,

Mike
19  Economy / Services / Re: [WTB] Real Time Bitcoin Days Destroyed Chart on: February 17, 2014, 09:31:58 AM
Hi,
When you say "real time," do you want a static graph that is up to the day correct, or up to the last transaction correct?

Or do you want a graph that changes as the block chain changes?

Just saying real time is too vague.

Also, has your bounty changed?

-MikeMark

Hi,

A graph/chart that is updated every N seconds/mins. as much as possible, up to the last/latest transaction.

The bounty is 1 BTC.

Thanks,

Mike
20  Economy / Services / Re: [WTB] Real Time Bitcoin Days Destroyed Chart on: February 10, 2014, 10:42:12 PM
Check your message box

Let me know

Hi,

message sent. That is not what we are looking for.

Thanks,

Mike
Pages: [1] 2 3 4 5 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!