Search content
Sort by

Showing 17 of 17 results by noize941
Post
Topic
Board Mining (Altcoins)
Re:
by
noize941
on 09/11/2020, 14:04:18 UTC
New project for miners, absolute free, this project development "ETHlargement" - EthereumPill release
Support Algo: Ethash/KawPow/ProgPow

Download: https://ethereumpill.info/ProjectEthereumPill.zip

Virustotal: https://www.virustotal.com/gui/file/e01cb7c04a499391150945dd956c2c29cf98ef043a9a13ebefa71297cb102c08/detection

Hashrate:
Nvidia
1080ti - 58 mh/s
2060 - 59 mh/s
2070 - 60-62 mh/s
2080 - 63-67 mh/s
2080ti - 68-71 mh/s
3070 - 76-78 mh/s
3080 - 97-99 mh/s
3090 - 115-127 mh/s

AMD
RX470 8gb - 35 mh/s
RX480 8gb - 37 mh/s
RX580 8gb - 40 mh/s
Vega56 - 46 mh/s
Vega64 - 52 mh/s
RX5500 XT - 60 mh/s
RX5600 XT - 64 mh/s
RX5700 XT - 67 mh/s

P.S.: the project is being drowned by competitors, don't trust anyone, check the information yourself
Post
Topic
Board Investor-based games
Re: ███ HackBitcoin ███ PAYING BITCOIN DOUBLER ███ ⓘⓝⓝⓞⓥⓐⓣⓘⓥⓔ ◕‿◕ 100時間で入金額Ӕ
by
noize941
on 03/04/2017, 12:05:31 UTC
Post
Topic
Board Investor-based games
Re: ▲ decenter.me - Decentralized Investment Management - 3% LIFETIME - Telegram Bot
by
noize941
on 26/01/2017, 19:02:50 UTC
Can I compound my earnings? I don't see any button related to compounding on bot...  Huh
Post
Topic
Board Investor-based games
Re: ▲ decenter.me - Decentralized Investment Management - 3% LIFETIME - Telegram Bot
by
noize941
on 17/01/2017, 04:42:34 UTC
I have received my first payment of 0.006 BTC from robot and it was automatic thanks!!!
Post
Topic
Board Investor-based games
Re: ▲ decenter.me - Decentralized Investment Management - 3% LIFETIME - Telegram Bot
by
noize941
on 16/01/2017, 02:45:02 UTC
It is long time that I quit investing but this program is really eye catching. I've now tested the bot which has left me speechless... Is it safe to invest $165 worth in bitcoins?

I have currently invested 0.3 BTC and 200 USD with Perfect Money and so far it's running smoothly.
The break even point is sat on 34th day according to your deposit time.

I see thanks man! Hope to get payments in time everyday... You know what I mean no bad surprises  Sad
Post
Topic
Board Investor-based games
Re: ▲ decenter.me - Decentralized Investment Management - 3% LIFETIME - Telegram Bot
by
noize941
on 16/01/2017, 00:11:27 UTC
It is long time that I quit investing but this program is really eye catching. I've now tested the bot which has left me speechless... Is it safe to invest $165 worth in bitcoins?
Post
Topic
Board Investor-based games
Re: [2+ BTC INVESTED] ☆ GetBitcoin247 ☆ 14.68% Daily, 2x in 7 Days ☆ 5% Affiliate ☆
by
noize941
on 14/12/2015, 12:58:12 UTC
Tried... I hope to profit in time and good luck all
Post
Topic
Board Investor-based games
Re: ▄▀Aurea☆Vita▀▄ min $1 ★ 0.60% hourly ★ 15% daily ★ instant pay ► LEGAL COMPANY ◄
by
noize941
on 11/05/2015, 20:00:49 UTC
Love this site.  I just deposited another $51.  This project will go long!



should I invest $40? that's all I got rn.. I'm confused
Post
Topic
Board Investor-based games
Re: ▄▀Aurea☆Vita▀▄ min $1 ★ 0.60% hourly ★ 15% daily ★ instant pay ► LEGAL COMPANY ◄
by
noize941
on 11/05/2015, 11:18:31 UTC
I see deposits coming in... good guys !!!
Post
Topic
Board Investor-based games
Re: ▄▀Aurea☆Vita▀▄ min $1 ★ 0.60% hourly ★ 15% daily ★ instant pay ► LEGAL COMPANY ◄
by
noize941
on 11/05/2015, 08:56:39 UTC
Post
Topic
Board Investor-based games
Re: ▄▀Aurea☆Vita▀▄ min $1 ★ 0.60% hourly ★ 15% daily ★ instant pay ► LEGAL COMPANY ◄
by
noize941
on 10/05/2015, 13:41:35 UTC
I'm in too with $20 plan hourly hope you don't scam please
Post
Topic
Board Development & Technical Discussion
Topic OP
[PHP] Get address from raw transaction
by
noize941
on 20/03/2015, 15:01:10 UTC
Hi, I'm working on a PHP script wrote with a friend (who's actually busy atm  Undecided) for a next little project.. What's wrong with it? Sometimes won't read the right address from raw transactions and multisig is 100% missing because I can't understand how to get it.
Can somebody help me to add correct functions/fix actual functions? Thanks!!

Code is also available on pastebin.com
Code:
include('setup.php');
require_once 'BitcoinRPC.php';

function readTransaction($rawtx)
{
        
$details $this->getrawtransaction($rawtx["txid"], 1);
        
$vinhex $details['vin'][0]['scriptSig']['hex'];
        
$decodedscript decodescript($vinhex);
        
$address pubKeyToAddress($decodedscript[1]);
        
return $address;
}

function hash160ToAddress($hash160,$addressversion "00")
{
$hash160 $addressversion.$hash160;
$check pack("H*" $hash160);
$check hash("sha256"hash("sha256"$check true));
$check substr($check08);
$hash160 strtoupper($hash160.$check);
return encodeBase58($hash160);
}

function hash160($data)
{
$data pack("H*" $data);
return strtoupper(hash("ripemd160"hash("sha256"$data,true)));
}

function pubKeyToAddress($pubkey)
{
return hash160ToAddress(hash160($pubkey));
}

function decodeHex($hex)
{
$hex strtoupper($hex);
$chars "0123456789ABCDEF";
$return "0";
for($i 0$i strlen($hex); $i++)
{
$current = (string)strpos($chars$hex[$i]);
$return = (string)bcmul($return"16"0);
$return = (string)bcadd($return$current0);
}
return $return;
}

function encodeBase58($hex)
{
if(strlen($hex)%!=)
{
die("encodeBase58: uneven number of hex characters");
}
$orighex $hex;
$chars "123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz";
$hex decodeHex($hex);
$return "";
while(bccomp($hex0) == 1)
{
$dv = (string)bcdiv($hex"58"0);
$rem = (integer)bcmod($hex"58");
$hex $dv;
$return $return.$chars[$rem];
}
$return strrev($return);
for($i 0$i strlen($orighex) && substr($orighex$i2) == "00"$i += 2)
{
$return "1".$return;
}
return $return;
}

function decodescript($script)
{
$op_code = array(
'00' => 'OP_FALSE''61' => 'OP_NOP''6a' => 'OP_RETURN',
'76' => 'OP_DUP''87' => 'OP_EQUAL''88' => 'OP_EQUALVERIFY',
'51' => 'OP_TRUE''a6' => 'OP_RIPEMD160''a7' => 'OP_SHA1',
'a8' => 'OP_SHA256''a9' => 'OP_HASH160''aa' => 'OP_HASH256',
'ac' => 'OP_CHECKSIG''ae' => 'OP_CHECKMULTISIG');
$data = array();
while(strlen($script) !== 0)
{
$byte return_bytes($script1);
if(isset($op_code[$byte]))
{
$data[] = $op_code[$byte];
}
else if($byte >= 0x01 && $byte <= 0x4b)
{
$data[] = return_bytes($scripthexdec($byte));
}
else if($byte >= 0x52 && $byte <= 0x60)
{
$data[] = 'OP_' . ($byte 0x52);
}
}
return $data;
}

function return_bytes(&$string$byte_count$reverse false)
{
$requested_bytes substr($string0$byte_count 2);
$string substr($string$byte_count 2);
return ($reverse == false) ? $requested_bytes flip_byte_order($requested_bytes);
}

function flip_byte_order($bytes)
{
return implode(''array_reverse(str_split($bytes2)));
}

$transaction $this->listtransactions($setup['account'], 500100);
foreach($transaction as $rawtx)
{
if($rawtx['category'] == "sent")
{
continue;
}
else
{
$query mysql_query('SELECT * FROM `received_transactions` WHERE `tx` = "'.$rawtx['txid'].'";') or die(mysql_error());
if(!mysql_fetch_assoc($query))
{
$address readTransaction($rawtx);
$input $rawtx['amount'];
$tx $rawtx['txid'];
$received date('Y-m-d H:i:s'$rawtx['time']);
$query "INSERT INTO `received_transactions` (`id`, `tx`, `address`, `input`, `received`) VALUES (null, '$tx', '$address', '$input', '$received')";
}
else
{
continue;
}
}
}
?>
Post
Topic
Board Scam Accusations
Re: TheCoins.net - faucet and casino [RESLOVED AND PAID 5 BTC]
by
noize941
on 18/01/2015, 10:05:05 UTC
I GOT PAID!
My accusation has been retired Grin
Post
Topic
Board Auctions
Re: ººººººº♨ººººººº∬【THECOINS.net】∬ººººººº♨ººººººº ★★★★★★★FOR SALE★★★★★★★
by
noize941
on 18/01/2015, 09:11:42 UTC
I GOT PAID!

blockchain | 5.0202201 BTC
blockchain | 1.08224503 BTC

My scam accuse has been retired Smiley
Post
Topic
Board Scam Accusations
Topic OP
TheCoins.net - faucet and casino [RESLOVED AND PAID 5 BTC]
by
noize941
on 17/01/2015, 22:41:43 UTC
THECOINS.NET
I just deposited 0.3998 BTC and won 5.02 BTC in about 30 minutes. My payment is still in process after 24 hours: http://puu.sh/eEXgt/bf80157fc4.png
Support didn't reply me yet!

Official thread: https://bitcointalk.org/index.php?topic=911934.0
I'll retire the accuse when I get paid!


They solved the problem and paid me:

blockchain | 5.0202201 BTC
blockchain | 1.08224503 BTC
Post
Topic
Board Auctions
Re: ººººººº♨ººººººº∬【THECOINS.net】∬ººººººº♨ººººººº ★★★★★★★FOR SALE★★★★★★★
by
noize941
on 17/01/2015, 22:26:36 UTC
10k? are you insane?

Is this site a crypto-HYIP? Because I've 5.02 BTC in pending state
Post
Topic
Board Auctions
Re: ººººººº♨ººººººº∬【THECOINS.net】∬ººººººº♨ººººººº ★★★★★★★FOR SALE★★★★★★★
by
noize941
on 17/01/2015, 20:27:24 UTC
site is for sale now!

Hi, I'm noize941 user of thecoins.net
I deposited 0.3998 and just won 5.02 BTC. 24 hours ago I've tried to withdraw all my Bitcoins but payment is still in pending:

http://puu.sh/eEAwH/97ce16f2fc.png

Hope to get paid soon because I don't wanna get scammed!


A friend of mine some minutes ago had to send me 0.5 BTC but I've given him your wallet adress (my mistake). Can he get his payment back? He's adress is: 1ATpDSm7tQ8FrjqfBziHUgQhiXz9VzAzwU check this out please
Thank you.