Bitcoin Forum
May 07, 2024, 07:57:11 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Local / Барахолка / Re: Куплю базу Биткоин-адресов on: October 20, 2018, 03:08:25 PM
Topic Starter can not google? He He!

catch (Pyhon script):
import sys
import base58
from bitcoinrpc.authproxy import AuthServiceProxy

RPC_ADDRESS="you-ip:8332"
RPC_USER="you-username"
RPC_PASSWORD="you passwd"

def connect(address, user, password):
    return AuthServiceProxy("http://%s:%s@%s"%(user, password, address))

def extract_block_addresses(rpc, block_hash):
    block = rpc.getblock(block_hash)
    addresses = []
    for tx in block[u'tx']:
        raw_tx = rpc.getrawtransaction(tx, True)
        if not raw_tx.has_key('vout'):
            sys.stderr.write("Transaction %s has no 'vout': %s\n"%(tx, raw_tx))
            break
        for vout in raw_tx[u'vout']:
            if not vout.has_key("scriptPubKey"):
                sys.stderr.write("Vout %s of Transaction %s has no 'scriptPubKey'\n"%(vout, tx))
                break
            if vout["scriptPubKey"]["type"] == "nulldata":
                # arbitrary data
                break
            elif vout['scriptPubKey'].has_key('addresses'):
                addresses.extend(vout['scriptPubKey']['addresses'])
            else:
                sys.stderr.write("Can't handle %s transaction output type in transaction %s\n"%(vout["scriptPubKey"]["type"], raw_tx))
    return addresses
if __name__ == "__main__":
    if len(sys.argv) > 1:
        start_block = int(sys.argv[1])
    else:
        start_block = 1

    if len(sys.argv) > 2:
        end_block = int(sys.argv[2])
    else:
        end_block = 0

    rpc = connect(RPC_ADDRESS, RPC_USER, RPC_PASSWORD)
    if end_block == 0:
        end_block = rpc.getblockcount()

    b = start_block

    for b in xrange(start_block, end_block+1):
        print(b)
        try:
            block_hash = rpc.getblockhash(b)
            for addr in extract_block_addresses(rpc, block_hash):
                print(addr + "," + base58.b58decode_check(str(addr)).encode('hex')[2:])
        except:
            rpc = connect(RPC_ADDRESS, RPC_USER, RPC_PASSWORD)
            block_hash = rpc.getblockhash(b)
            for addr in extract_block_addresses(rpc, block_hash):
                print(addr + "," + base58.b58decode_check(str(addr)).encode('hex')[2:])


You need installed and full synced Bitcoin core wallet.

Config for botcoin core (bitcoin.conf):
server=1
txindex=1
rpcthreads=32
rpcuser=<you user name>
rpcpassword=<you password>
rpcbind=0.0.0.0
rpcallowip=<allow ip addr>
2  Local / Новости / Re: КРУПНЫЙ ОБВАЛ НА РЫНКЕ КРИПТЫ on: December 25, 2017, 06:29:57 AM
Вот интересно.
Биткоин резко упал, и все просто и понятно объяснили это простой коррекцией, и пошли ждать дальше.
Но ведь коррекция чем-то обусловлена. Я, например, совсем не убежден, что все срочно перед новым годом начали фиксировать прибыль и выходить в фиат. Не слишком ли круто для коррекции c  ~19000 до ~14 000 или на 35%. Конечно в истории бывало и похуже, но всему есть / должны быть причины.

Поковырял немного, и возможно причины для «коррекции» есть:

19-го декабря ломанули биржу Youbit
Увели какое-то количество активов, после чего биржа объявила банкротство. Какое количество средств увели не сообщается.
https://www.reuters.com/article/us-bitcoin-exchange-southkorea/south-korean-cryptocurrency-exchange-to-file-for-bankruptcy-after-hacking-idUSKBN1ED0NJ
https://forklog.com/kriptobirzha-youbit-obyavila-sebya-bankrotom-posle-vtoroj-za-god-hakerskoj-ataki/

19-го декабря
Индийские налоговые органы начали расследование деятельности состоятельных биткоин-предпринимателей. Коих в стране около 500 000. Для крипторынка это не мало!
https://forklog.com/vlasti-indii-prodolzhili-nastuplenie-na-kriptoindustriyu/

21-го декабря и ранее – проблемы у Tether
https://forklog.com/tether-zapustit-novuyu-platformu-i-perestanet-podderzhivat-tekushhie-koshelki/
Увели какое-то количество средств

22-го Обвинения против Корейской майнинговой компании.
https://forklog.com/250-mln-v-oblakah-zhertvami-korejskoj-kriptopiramidy-stali-18-000-chelovek/
Жертвами мошенничества стали 18 000 человек.

22-го декабря
Власти Южной Кореи основательно взялись за криптобиржи страны.
Начали проверку 13 крупнейших бирж страны.
https://forklog.com/vlasti-yuzhnoj-korei-proinspektirovali-krupnejshie-kriptobirzhi-strany/

Добавьте сюда крах Найсхэш, с уводом какого-то количества Биткоинов. Причем известно только о 4700BTC, а сколько увели реально не понятно.

Получается, что довольно большой поток негативных событий привел к тому, что довольно большое количество валюты хлынуло на рынок, при этом, надо учитывать, что в основном это такая валюта, от которой надо быстро избавиться – либо ворованное, либо претензии от налоговых органов и т.п. В общем, на рынке сейчас избыток предложения, отсюда и коррекция. Ну и наверное не стоит списывать со счетов тех, кто хочет вывести немного денег на подарочки. Smiley
В прошлом году (точнее в начале этого года) Китай, в этом году Корея и Индия. К нашему новому году вряд ли отрастет до прежней цены. Хотя Биткоин умеет удивлять. 

Всем профита.   
3  Local / Работа / Re: модераторы Для форума on: December 19, 2016, 05:55:09 AM
Привет. Что за форум? Модераторы требуются на общественных началах или за оплату?
4  Alternate cryptocurrencies / Mining (Altcoins) / Re: Monero Solo mining on: December 17, 2016, 11:52:32 AM
Hi!
I can say as I do. But my way is possible you will not do for you.
You need to raise Monero blockchain. I have done this on Linux.
Then take Wolf XMR miner. Customizable it to mining directly to Monero daemon. That is, if briefly. Details can be found in the readme to Wolf XMR miner. How to raise Monero blockchain also written in the readme.

5  Alternate cryptocurrencies / Mining (Altcoins) / Re: GPU mining motherboards for 2017 on: December 01, 2016, 05:58:28 AM
Have somebody problem with MSI Z170A Krait Gaming 3x. Work only 3 cards of 6.

In my rig work 4X RX 480, in this motherboard. In the near future I will try to 5 or more. But most likely will need a PCIE switch.
6  Alternate cryptocurrencies / Mining (Altcoins) / Re: Motherboards for most GPU that will work. Advice please! on: November 28, 2016, 11:26:48 AM
Hi.
What risers do you use?

PCIE slots on this board can work here in these conditions:
1х16
2x8
1x8 and 2x4
Theoretically, the maximum you can set 3 GPU. In practice differently.

What you can try:
1. Check that all your GPU work separately through the riser. Check each riser. Check each card in mining separately.

2. Next, take one card with  riser and check how it will work in each of the PCIE slots. In some slots, it might not work. GPU put in is not necessary to further in these slots. Remember in what slots worked GPU.

3. Add one card and see what happens. It is best to completely remove the native driver. How much GPU will work, see the device manager.
7  Alternate cryptocurrencies / Mining (Altcoins) / Re: Motherboards for most GPU that will work. Advice please! on: November 24, 2016, 06:09:05 PM
According to the specification should work. But each manufacturer's own characteristics. To be sure, ask support MSI.
8  Alternate cryptocurrencies / Mining (Altcoins) / Re: Motherboards for most GPU that will work. Advice please! on: November 24, 2016, 05:36:12 PM
I ordered such as for your link:
http://www.miningrigs.net/?product=pci-e-port-multiplier

When I get, I will try how it works.
9  Alternate cryptocurrencies / Mining (Altcoins) / Re: Motherboards for most GPU that will work. Advice please! on: November 24, 2016, 05:29:57 PM
All motherboard on socket 1151 does not support more then 4 GPU. Chipset has 16 lanes PCIe. I have MB on z170a from MSI  with 7 slot PCIe. Only 4 GPU work. I try to use PCIe splitter for use more then 4 GPU.

MSI support answer to my question:
"Ticket:
Only 4 GPU is working properly on this motherboard. Why?

Content:
Regarding your concern,sorry to say that all of the 1151 socket MB can only support 4 VGA cards max.Thanks!

Please do not change the subject if you reply directly, or you can login into https://register.msi.com/ to reply, Thank you."
10  Alternate cryptocurrencies / Mining (Altcoins) / Re: Claymore's ZCash AMD GPU Miner v7.0 on: November 24, 2016, 02:48:13 PM
First question - what PSU do You use? Can You change PSU for testing? I dont have much rigs - around 25 - and I have seen that most problems start with bad or noname PSUs.. Now I am using just Corsair, Seasonic, Antec or bequiet! PSUs. And problems went away.. Smiley Other hardware is standard ( BTC Pro mobos, G1840 processor, 8GB ram, corsair SSD ).

Hi. I'm use brand new AeroCool Higs 850. Yes, I changed to another PSU. But this does not solve the problem.

Now tried the V8. Claymore great work! Thanks.

For the same hashrate for all GPU. I needed to restart miner 6 times! Six times! Smiley

ZEC: 11/24/16-21:41:28 - New job from eu1-zcash.flypool.org:3333
ZEC - Total Speed: 585.107 H/s, Total Shares: 487, Rejected: 1, Time: 00:15
ZEC: GPU0 197.356 H/s, GPU1 192.574 H/s, GPU2 195.177 H/s
DevFee: ZEC: 11/24/16-21:41:28 - New job from eu1-zcash.flypool.org:3333
DevFee: ZEC: 11/24/16-21:41:29 - SHARE FOUND - (GPU 1)
11  Alternate cryptocurrencies / Mining (Altcoins) / Re: Claymore's ZCash AMD GPU Miner v7.0 on: November 24, 2016, 07:42:01 AM
Hi Claymore. Thanks for the good miner. This is not just a good miner, it's the best miner!  But I have a problem with it.

1.   The rig with three cards RX 480. Almost always, when you start miner, one of the card showing low hash rate. Usually it is approximately two times lower. Typical for my config 170-175. One of the cards can show the 40, 80, 110. Each time a different. In order to get the highest hash rate I have repeatedly restart miner. Often this can be done repeatedly restarting the computer. When the card shows the maximum hash rate - CPU loading is 10-15%. At the same time, the GPU loading, on card that show low hashrate is 100%.

2. The second problem. After working about 15-20 hours miner hangs. Writes: Open CL device hung and miner can not be self restarted. I restart the miner repeatedly to get high hashrate.

3. If I put fourth card in rig - Radeon HD 7970, the miner worked for some time simply halts the system. This restart is possible only  disconnect the power supply.
 
What I've done:
1. Install the system Windows 10 from scratch. I put different drivers. Recommended drivers 15.12 - do not see my cards RX 480. Now I use drivers 16.11.4
2. Changed Reiser to other - it does not solve the problem.
3. Place the cards in other slots - not solve problem.
4. Removed from the system Radeon HD 7970, install the system from scratch. Radeon HD 7970 is now living in the other rig.

My config:
 The motherboard MSI Krait Gaming 3X socket 1151
Intel Pentium Dual-Core G4500
8GB of memory
Swap 32Gb
Radeon SSD
3 Х Sapphire RX480 nitro

Launch miner's this line from *.bat file:
ZecMiner64.exe -mport 0 -i 4 -zpool eu1-zcash.flypool.org:3333 -zwal <my address> -zpsw x

Miner Version 7.0

I hope for your help, and help the community. Sorry for the English. It is not my native language.
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!