Bitcoin Forum
July 08, 2024, 02:13:15 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1] 2 »
1  Economy / Investor-based games / Re: [ANN] BitCred.Club - Earn up to 2.5% Weekly. on: August 27, 2017, 12:48:30 PM
Hello,

Allright, all guys have a right to thing this a ponzy.

Some improvments will be inserted in this week:

1º Support Ticket system - You can open a ticket for any information or help you need.
2º Expire time contracts - Yes, lifetime contracts dont exist. The time of our contrats are for 24 months. So by our calc if you earn up to 2.5% week you will have all your investment in 10 months back. After expire your contract, the investment go back to your balance and you can reinvest or withdraw.
3º Monthly stats of our operation, so you will can see anithing we did with your investment and return. ( Will placed on your user dashboard ).

If you saw our site, we dont refferal system. Ponzi need news users to keep paying the other users, but, like you will in our reports, we dont need this.

We can implement, but not will pay nothing for reffers.

Any suggestion will be received with successfull.

Translations will be comming soon.
2  Economy / Investor-based games / Re: [ANN] BitCred.Club - Earn up to 2.5% Weekly. on: August 25, 2017, 08:58:15 PM
Sorry for post in wrong place.

Ps.: Dear user VOD (https://bitcointalk.org/index.php?action=profile;u=30747) . Before accusing any, use the service and prove. It is easy to be denigrating the images of others with false accusation.
3  Economy / Investor-based games / [ANN] BitCred.Club - Earn up to 2.5% Weekly. on: August 25, 2017, 06:56:32 PM
Hello,

Do you know BitCred.Club? They pay 2.5%.


Go to : www.bitcred.club and start win now.

Min investment: 15US$
Earn in % : 2.5/Week
Withdraw: Every when you want, you only need st a bitcoin address and have balance.

Try this.
4  Local / Desenvolvimento & Discussões Técnicas / [ALTCOIN] Transação não é transmitida. on: July 22, 2017, 11:25:59 PM
Boa noite pessoal,

Criei uma altcoin para fins de estudo do código, consegui gerar genesis novo, compilar windows e linux.

Até o dnsseed consegui montar tudo.

Porém tem dois problemas que me esbarrei é o seguinte:

1º Se eu minerar grandes quantidades, exemplo 2 blocos com 100m, e depois diminuir a recompensa e recompilar, os outros clientes não conseguem baixar os blocos, dá erro de CheckBlock: error proof-of-work.

2º Se caso eu desativar o check block, as carteiras conseguem sincronizar normalmente, porém algumas vezes ao fazer alguns envios, ele cria o hash porém não propaga a transação, e tenho que usar zapwallettxxs.

Alguém poderia me ajudar?

Código base utlizado foi da NovaCoin.

Grato.
5  Bitcoin / Bitcoin Technical Support / Re: [Help] Create raw transaction PHP on: July 22, 2017, 10:58:09 PM
It looks like you might not constructing the $json_where variable correctly... Specifically... What is this attempting to do?

Code:
$where[''] = 0.00400000;

Are you trying to set the fee? If so, don't... The fee is automatically calculated as the difference between inputs and specified outputs... You don't explicitly list it in the transaction.

Thanks man, i deleted this variable and works well.

Send me your address i will send some tips....
6  Bitcoin / Bitcoin Technical Support / [Help] Create raw transaction PHP on: July 19, 2017, 06:46:11 PM
Hello everybody,

I having some problems to create a raw transaction, bellow my code:

Code:
    $client  = new \Nbobtc\Http\Client('http://user:ext12561244@localhost:18332');
    $send_amount = 0.00100000;
    $amount = 0;
    $i = 0;
    $j = 1;
    $command = new \Nbobtc\Command\Command('listunspent', $j,$j + 50);
    $response = $client->sendCommand($command);
    $output   = json_decode($response->getBody()->getContents(), true);
    $system_return = new \Nbobtc\Command\Command('getaddressesbyaccount', array('testes'));
    $response2 = $client->sendCommand($system_return);
    $system_output   = json_decode($response2->getBody()->getContents(), true);
   

    while($amount < $send_amount){
    foreach($output['result'] as $trans){
//var_dump($trans['amount']);
$translist[$i]['txid'] = $trans['txid'];
$translist[$i]['vout'] = $trans['vout'];
//$translist[$i]['scriptPubKey'] = $trans['scriptPubKey'];
$addr[$i] = $trans['address'];
$amount += $trans['amount'];
$i++;
if($amount > $send_amount)break;

}
        $j += 50;
    }
    //echo $amount . "\n\n";
    $address_return = $system_output['result']['0'];
    $rest = $amount - $send_amount;
    $where['mwCwTceJvYV27KXBc3NJZys6CjsgsoeHmf'] = $send_amount;
    $where["'" .$address_return. "'"] = $rest;
    $where[''] = 0.00400000;
    $json_translist = $translist;
    //echo $json_translist . "\n\n";
    $json_where = $where;
    //echo $json_where . "\n\n";

    $bitcoind = new BitcoinClient([
    'scheme' => 'http',                 // optional, default http
    'host'   => 'localhost',            // optional, default localhost
    'port'   => 18332,                   // optional, default 8332
    'user'   => 'user',              // required
    'pass'   => 'ext12561244',          // required
    ]);
    $raw= $bitcoind->request('createrawtransaction', $json_translist,$json_where);
    var_dump($raw);


Everytime i run the code i receive the folowing error:

Code:
createrawtransaction [{"txid":"id","vout":n},...] {"address":amount,"data":"hex",...} ( locktime ) ( optintorbf )

Create a transaction spending the given inputs and creating new outputs.
Outputs can be addresses or data.
Returns hex-encoded raw transaction.
Note that the transaction's inputs are not signed, and
it is not stored in the wallet or transmitted to the network.

Arguments:
1. "inputs" (array, required) A json array of json objects
[
{
"txid":"id", (string, required) The transaction id
"vout":n, (numeric, required) The output number
"sequence":n (numeric, optional) The sequence number
}
,...
]
2. "outputs" (object, required) a json object with outputs
{
"address": x.xxx, (numeric or string, required) The key is the bitcoin address, the numeric value (can be string) is the BTC amount
"data": "hex" (string, required) The key is "data", the value is hex encoded data
,...
}
3. locktime (numeric, optional, default=0) Raw locktime. Non-0 value also locktime-activates inputs
4. optintorbf (boolean, optional, default=false) Allow this transaction to be replaced by a transaction with higher fees. If provided, it is an error if explicit sequence numbers are incompatible.

Result:
"transaction" (string) hex string of the transaction

Examples:
> bitcoin-cli createrawtransaction "[{\"txid\":\"myid\",\"vout\":0}]" "{\"address\":0.01}"
> bitcoin-cli createrawtransaction "[{\"txid\":\"myid\",\"vout\":0}]" "{\"data\":\"00010203\"}"
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "createrawtransaction", "params": ["[{\"txid\":\"myid\",\"vout\":0}]", "{\"address\":0.01}"] }' -H 'content-type: text/plain;' http://127.0.0.1:8332/
> curl --user myusername --data-binary '{"jsonrpc": "1.0", "id":"curltest", "method": "createrawtransaction", "params": ["[{\"txid\":\"myid\",\"vout\":0}]", "{\"data\":\"00010203\"}"] }' -H 'content-type: text/plain;' http://127.0.0.1:8332/

Someone ca give a help?


thanks in advance
7  Economy / Currency exchange / [EXCHANGE] Coins 2 Trade - BTC / LTC on: November 18, 2016, 09:34:15 PM
Hello,

I came here to announce we are open to Beta test, in the start will only operate with BTC/LTC, soon will add more markets to our users.


FEES

0.25% / 0.25% ( First 100 users no fees by a month )

No Withdraw fees, only blockchain fee.



If you want see one of these coins, please vote ( donate ):

DASH           14aXgrngtt82KT4SzxayvC7nDLduZorRcr
DOGE           1KZqXGgPEZTAufD6e33TURgqYvKnw8Ho8w
VCASH         13k82uqFXNWjtptUFE8zMk6MQeWX87oq8N
ETH             17h7aRQMh3bgccCwUdN861RVuQgsfA1BoN


Coming soon fiat Markets

BTC / USD   BTC  / BRL.



If you want suggest anything you can send a message to system@coins2.trade



Website: www.coins2.trade


See you soon.
8  Alternate cryptocurrencies / Service Announcements (Altcoins) / [ANN] Coins 2 Trade - Exchange BTC/LTC on: November 18, 2016, 04:13:28 PM
Hello,

I came here to announce we are open to Beta test, in the start will only operate with BTC/LTC, soon will add more markets to our users.


FEES

0.25% / 0.25%

No Withdraw fees, only blockchain fee.



If you want see one of these coins, please vote ( donate ):

DASH           14aXgrngtt82KT4SzxayvC7nDLduZorRcr
DOGE           1KZqXGgPEZTAufD6e33TURgqYvKnw8Ho8w
VCASH         13k82uqFXNWjtptUFE8zMk6MQeWX87oq8N
ETH             17h7aRQMh3bgccCwUdN861RVuQgsfA1BoN


Coming soon fiat Markets

BTC / USD   BTC  / BRL.



If you want suggest anything you can send a message to system@coins2.trade



Website: www.coins2.trade


See you soon.
9  Economy / Investor-based games / Re: [ANN] Double my Coins. - 24hs on: October 14, 2016, 05:38:30 PM
Hello,

Try our website, www.[Suspicious link removed]

Double your coins in 24 hs.

Go go go
At least as an op, you can read your thread by yourself and see that the link you are trying to promote have been removed but as a point of reference ponzi scam could leave you with a negative trust.

Solved!
10  Economy / Investor-based games / [ANN] Double my Coins. - 24hs on: October 14, 2016, 11:53:07 AM
Hello,

Try our website, http://goo. gl/XhT2CM

Double your coins in 24 hs.

Go go go
11  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN] CloudHash.info [/ANN] on: June 29, 2016, 07:04:25 PM
Implement please. Affiliate program is good for marketing.

The users asked, we did. Now we have a refferal system, for each reffered user you will receive 5 KHS.

Thanks for your suggestion.

Regards
12  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN] CloudHash.info [/ANN] on: June 28, 2016, 04:06:58 PM
Do you have an affiliate program?

Sorry, but right now we do not. Maybe in the next few days, if our users want, we can implement.

Cheers
13  Alternate cryptocurrencies / Service Announcements (Altcoins) / Re: [ANN] CloudHash.info [/ANN] on: June 27, 2016, 08:01:58 PM
Hello Guys and Girls,

You will are invite to know CloudHash.info, we will offer services like:

* Cloud Mining
* Co-location
* Rent Miner.


Signup now and earn 15 KHS, try our platform, and see results.

So don't waste time, access www.cloudhash.info

We will be waiting for you.

Hello Guys,

Bellow you can see, our little hack mining, we start with a little DC for mining, we spect increase on way the users came to use our platform.  Sorry for not made better apresentation, some pictures of your hacks and rigs can be viewed on your site.

Our Mining farm - http://www.cloudhash.info/aboutus.php

<iframe src="https://player.vimeo.com/video/172455529" width="640" height="474" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
<p>This video was made to show our small starter farm.</p>

If we pass over 2k users, we will be going to better place and open our ports for all users that can check personally.

Regards.
14  Local / Mineração em Geral / [ANN] Cloud Hash.info [ANN] - Free 15 KHS on: June 27, 2016, 07:07:55 PM
Olá a todos,

Gostaria de apresentar-lhes, a mais nova plataforma de cloud mineração. A CloudHash.info, com estimativa de investimento entre 6 a 9 meses, garantimos o pagamento diário a todos os usuários, e para testes você terá direito a 15 KHS que lhe serão cedidos no momento da ativação de sua conta.

Aos usuários que não gostarem de plataforma ou que verem não atende suas necessidades, poderão solicitar o reembolso de seu investimento que ocorrerá em até 12hs após a sua solicitação.

Aproveite e visite agora mesmo nosso site: www.cloudhash.info

Agradecemos a sua atenção.

Ps.: Todas as suas opiniões serão bem vindas. Pode nos cotactar por este post, pm ou pelo email contact@cloudhash.info ou pelo nosso site.
15  Economy / Service Announcements / Re: [ANN] CloudHash.info [/ANN] on: June 27, 2016, 06:45:00 PM
Hello Guys,

Bellow you can see, our little hack mining, we start with a little DC for mining, we spect increase on way the users came to use our platform.  Sorry for not made better apresentation, some pictures of your hacks and rigs can be viewed on your site.

Our Mining farm - http://www.cloudhash.info/aboutus.php

<iframe src="https://player.vimeo.com/video/172455529" width="640" height="474" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
<p>This video was made to show our small starter farm.</p>

If we pass over 2k users, we will be going to better place and open our ports for all users that can check personally.

Regards.
16  Economy / Service Announcements / Re: [ANN] CloudHash.info [/ANN] on: June 27, 2016, 03:16:24 PM
Hello everybody,

You will are invite to know CloudHash.info, we will offer services like:

* Cloud Mining
* Co-location ( coming soon )
* Rent Miner ( comiing soon )


So don't waste time, access www.cloudhash.info

We will be waiting for you.
17  Economy / Service Announcements / Re: [ANN] CloudHash.info [/ANN] on: May 04, 2016, 12:45:37 AM
Hello dear users,

After your suggestion, will be rebranded our site, with more infos about mining specs , coins, and offering free hash to test and know how works our platform.

We are based on Brazil and our mining equipments are located on Paraguay, because power have low cost.

Feel free to ask us.

Thanks,

Patrick
18  Alternate cryptocurrencies / Service Announcements (Altcoins) / [ANN] CloudHash.info [/ANN] on: April 29, 2016, 03:18:45 PM
Hello Guys and Girls,

You will are invite to know CloudHash.info, we will offer services like:

* Cloud Mining
* Co-location
* Rent Miner.


Now we only offer Pré Launch package, our platform will be completely open for all in 30/05/16.

Until the date some buyers will be invited to make tests and give us a feedback. And making money of course.

So don't waste time, access www.cloudhash.info

We will be waiting for you.
19  Economy / Service Announcements / Re: [ANN] CloudHash.info [/ANN] on: April 29, 2016, 03:15:58 PM
Thanks my friend,

We expect offer the best possible service for all.
20  Economy / Service Announcements / [ANN] CloudHash.info [/ANN] on: April 29, 2016, 03:00:46 PM
Hello Guys and Girls,

You will are invite to know CloudHash.info, we will offer services like:

* Cloud Mining
* Co-location
* Rent Miner.


Now we only offer Pré Launch package, our platform will be completely open for all in 30/05/16.

Until the date some buyers will be invited to make tests and give us a feedback. And making money of course.

So don't waste time, access www.cloudhash.info

We will be waiting for you.
Pages: [1] 2 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!