Search content
Sort by

Showing 20 of 143 results by executter
Post
Topic
Board Le Bitcoin et la loi
Topic OP
achat en bitcoin imposable ?
by
executter
on 03/05/2021, 12:51:31 UTC
bonjour,

imaginons qu'un jour je puisse acheter une tesla directement en bitcoin.
comment cela se traduirait-il au niveau impôt ? est-ce considéré comme un cashout, avec une imposition de 30 % ?
Post
Topic
Board Développement et technique
Re: [Aide] Mes 85 btc peuvent-ils être récupérés ?
by
executter
on 11/12/2017, 15:05:19 UTC
Post
Topic
Board Développement et technique
Re: [Aide] Mes 85 btc peuvent-ils être récupérés ?
by
executter
on 10/12/2017, 23:39:18 UTC
wouah 1 million qui dorment bien tranquillement Tongue

je crois comprendre que le wallet n'est pas chiffré. dans ce cas, j'ai un vieux bout de code Python qui peux t'aider.
j'ai jamais réussi à m'en sortir avec pywallet, surtout quand la db est corrompue ou d'une mauvaise version. du coup j'avais écris à l'arrache le code suivant qui scanne un wallet au complet et extrait les clés privées, sans s'occuper de la structure ou de la version du wallet. la version d'origine de mon code rebalançait les commandes d'import en rpc sur un nouveau wallet, j'ai désactivé cette partie, tu auras juste les commandes/clé privées qui s'afficheront à l'écran.

pour l'utiliser dans ton cas, tu as juste à modifier le chemin de ton wallet.dat en ligne 15, et à le lancer avec python2.

Code:
#!/usr/bin/env python2
# -*- coding: utf-8 -*-

#from jsonrpc import ServiceProxy, JSONRPCException

import re
import binascii
import hashlib
import struct

def main(args):
#    rpcaddress = 'http://user:password@172.22.10.186:9988'
#    client = ServiceProxy(rpcaddress)
    
    file = open('/home/executter/.bitcoin/wallet.dat', 'rb')
    binary_data = file.read()
    file.close()
    keys = re.findall(b'(?=\x30\x81[\xB4-\xD3]\x02\x01\x01\x04([\x01-\x20])([\x00-\xFF]{32}))', binary_data)
    for key in keys:
        size = int('0x0'+binascii.hexlify(key[0]).decode('utf8'), 16)
        private_key = key[1][:size]
        private_key = str(private_key.rjust(32, '\x00'))
        wif = private_key_to_wif(private_key)
        command = 'importprivkey %s "" false' % wif
        print(command)
#        try:
#            client.importprivkey(wif, "", False)
#        except JSONRPCException as e:
#            print e.error
    return 0

def private_key_to_wif(private_key):
    version = b'\x80'
    checksum = hashlib.sha256(hashlib.sha256(version+private_key+b'\x01').digest()).digest()[:4]
    return base58encode(version+private_key+b'\x01'+checksum)

def base58encode(b):
    """Encode bytes to a base58-encoded string"""

    b58_digits = '123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz'

    # Convert big-endian bytes to integer
    n = int('0x0' + binascii.hexlify(b).decode('utf8'), 16)

    # Divide that integer into bas58
    res = []
    while n > 0:
        n, r = divmod(n, 58)
        res.append(b58_digits[r])
    res = ''.join(res[::-1])

    # Encode leading zeros as base58 zeros
    czero = 0
    pad = 0
    for c in b:
        if c == czero: pad += 1
        else: break
    return b58_digits[0] * pad + res

if __name__ == '__main__':
    import sys
    sys.exit(main(sys.argv))

1NHvzhH6NDNAwJFijURqscguQqBq2sJt6X, merci Grin
Post
Topic
Board Announcements (Altcoins)
Re: Execoin: | First Open-Source Stealth Wallet Released! | Fast | ASIC-proof
by
executter
on 15/10/2017, 20:14:04 UTC
Almost dead

Data files (un7zip to %APPDATA%\Execoin)
Quote

Nodes (Help > Debug window > Console)
Quote
addnode 37.187.109.130 add
addnode 85.25.44.119 add
addnode 194.97.156.59 add

Exchange
Quote

Explorer
Quote
Post
Topic
Board Announcements (Altcoins)
Re: [XVC] Vcash Official Community Thread ▱ Zerotime ▱ Anon ▱ Auto Block Size
by
executter
on 16/06/2017, 21:18:24 UTC
yes vcash was only a rebrand, vanillacoin addresses have not changed
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][DROP] Dropcoin - v0.10.2 | New Algo | No IPO/ICO/premine
by
executter
on 08/02/2017, 17:07:20 UTC
Code:
addnode 37.187.109.130 add
Post
Topic
Board Announcements (Altcoins)
Re: Execoin: | First Open-Source Stealth Wallet Released! | Fast | ASIC-proof
by
executter
on 29/06/2016, 18:29:03 UTC
Post
Topic
Board Announcements (Altcoins)
Re: Execoin: | First Open-Source Stealth Wallet Released! | Fast | ASIC-proof
by
executter
on 23/06/2016, 07:18:20 UTC
yes, already set up (www)
just need spare time to fill content, will do this weekend.
Post
Topic
Board Announcements (Altcoins)
Re: Execoin: | First Open-Source Stealth Wallet Released! | Fast | ASIC-proof
by
executter
on 23/06/2016, 06:44:27 UTC
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][DROP] Dropcoin - v0.10.2 | New Algo | No IPO/ICO/premine
by
executter
on 23/06/2016, 06:36:38 UTC
less 200 blocks before third halving (~ 3 hours).
next reward will be 1.25 or 1.375 with pok.
Post
Topic
Board Announcements (Altcoins)
Re: XVC Vcash [UNOFFICIAL] ▱ Zerotime ▱ Zeroledger ▱ Anon ▱ Innovative
by
executter
on 09/06/2016, 16:46:26 UTC
happy to see xvc thread back to bct.
john's work deserves a better exposure.
Post
Topic
Board Announcements (Altcoins)
Re: Execoin: | First Open-Source Stealth Wallet Released! | Fast | ASIC-proof
by
executter
on 06/06/2016, 14:08:42 UTC
no one is mining it  now
false, network is alive. fucking asic has just left a high difficulty... so blocks emission is slow until difficulty be corrected.
Post
Topic
Board Announcements (Altcoins)
Re: Execoin: | First Open-Source Stealth Wallet Released! | Fast | ASIC-proof
by
executter
on 17/05/2016, 10:37:59 UTC
There is no need to change, ScryptN is Ok)

are you one of current ASIC miner ?
yes scrypt-n works, but as soon as ASIC miner will leave, difficulty will be too high for GPU/CPU.

and dropping scrypt-n is necessary if we want follow original purpose of this coin.
Post
Topic
Board Announcements (Altcoins)
Re: Nexus [Niro] - Pure SHA3 + CPU/GPU + nPoS + 15 Active Innovations + More to Come
by
executter
on 17/05/2016, 10:28:47 UTC
Quote
Maximum Annual Inflation
nPOS: Up to 3% annually; 2% after initial distribution is complete
CPU and GPU Minting Channels: 1% annually after initial distribution is complete

current inflation seems high, "initial distribution" is complete ? if no, when ?
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][DROP] Dropcoin - v0.10.2 | New Algo | No IPO/ICO/premine
by
executter
on 17/05/2016, 09:40:23 UTC
almost one year since dev has disappeared, so we can consider this coin is available for a takeover.
network works fine, I maintain 3 nodes on spare servers since beginning.
Post
Topic
Board Announcements (Altcoins)
Re: Execoin: | First Open-Source Stealth Wallet Released! | Fast | ASIC-proof
by
executter
on 16/05/2016, 12:47:27 UTC
I prefer Neoscrypt.
Any suggestion about another good algo?
Post
Topic
Board Announcements (Altcoins)
Re: Execoin: | First Open-Source Stealth Wallet Released! | Fast | ASIC-proof
by
executter
on 13/05/2016, 16:34:29 UTC
Post
Topic
Board Announcements (Altcoins)
Re: Nexus [Niro] - Pure SHA3 + CPU/GPU + nPoS + 15 Active Innovations + More to Come
by
executter
on 09/05/2016, 07:26:14 UTC
technical skills seem strong on this coin Shocked
i'll keep an eye on it.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][DROP] Dropcoin - v0.10.2 | New Algo | No IPO/ICO/premine
by
executter
on 29/04/2016, 15:22:50 UTC
You probably talk about Faucetcoin, because Dropcoin has nodes but no exchanges Grin
Dropcoin network works fine.
Post
Topic
Board Announcements (Altcoins)
Re: [ANN][DROP] Dropcoin - v0.10.2 | New Algo | No IPO/ICO/premine
by
executter
on 17/04/2016, 20:06:28 UTC
all bitbucket links in OP are fine.