Posts

Showing posts from October, 2017

Abundance & Implications Of Exponential Change - Peter Diamandis (Singularity University)

Image
Abundance & Implications Of Exponential Change - Peter Diamandis (Singularity University) 👍 Thank You Very Much For Watching This Video! 😃 Please Remember To Hit Like & Subscribe! (Also, If You Can Share, It Shows You Care :) 🚩Join The Crypt0's News Group: https://goo.gl/7zxDrt ►💎Donate Ether and Ethereum-Based (ERC-20) Tokens: 0x97f32d97D6Ce4dee3429279F04D5b96Aba7C969B ►💎Donate Bitcoin: 17nFpuYFBxjtGbXgoMbyFGFHemkC5ayz6D ►💎Donate Bitcoin Cash: AbU983Rg4mfRpZ45BmcnitgZfvnDDkzdk ►💎Donate Smartcash: SRmxucTyFd1Dz64LSPAJPNcxQDhAzRTyvc ►💎Donate Dash: XdhemiKBeBCzJFq3v3WNggVRTgd8S4ys9J ►💎Donate Using Paypal: https://goo.gl/7m1X4Z 📔___RECOMMENDED READING ►Ethereum: Blockchains, Digital Assets, Smart Contracts, DAOs- http://amzn.to/2t015ik ►The Singularity Is Near: When Humans Transcend Biology- http://amzn.to/2rHXGjQ ►Physics of the Future: How Science Will Shape Human Destiny and Our Daily Lives by the Year 2100: http://amzn.to/2tUaEfa ►The Creature From Jekyll Island...

What is taint analysis?

What is taint analysis? I just came across the term "taint analysis" in a crypto-related conversation. This came up while discussing "tracking bitcoin transactions" so it's somehow related to that. That's all I know. http://ift.tt/2ikmPxE

blockchain authentication

blockchain authentication What is the simplest way for an app to authenticate user without the user having to worry about public/private, creating a bitcoin account or any blockchain network, unless main work can be done server-side through APIs? I know there are hardware device/USB keys that can do the trick, but without this complexity, is there a way to do that ? http://ift.tt/2gROwgM

BitMinter worker difficulty is now 64 and 512 for for a longtime how do I know if it's really mining?

BitMinter worker difficulty is now 64 and 512 for for a longtime how do I know if it's really mining? I am getting BitMinter worker difficulty is now 64and 512. As I am new to Mining I don't know if it's really mining and will I be rewarded with a bit coin. This is what comes all the time: 2017.10.30 [23:04] BitMinter Client v1.6.1 started 2017.10.30 [23:04] Found 1 OpenCL-compatible GPU 2017.10.30 [23:04] Hint: Use performance mode for best GPU results (bottom right button) 2017.10.30 [23:04] Probing all ports for external devices 2017.10.30 [23:05] No external devices detected. 2017.10.30 [23:05] BFL drivers: http://ift.tt/uDkzJa ASICMiner and Antminer drivers: http://ift.tt/1cYN9C2 On Linux load FTDI driver: "sudo modprobe ftdi_sio vendor=0x0403 product=0x6014". You may lack access to serial ports (Ubuntu: "sudo usermod -a -G dialout USERNAME" then log out and back in). 2017.10.30 [23:05] Connected to BitMinter 2017.10.30 [23:05] BitMinter worker ...

LTC source code cloning to a new cryptocurrency?

LTC source code cloning to a new cryptocurrency? How do I edit the code to make my own currency, while changing the name? Hey, I have downloaded LTC source code from its official github link. I want to create my own cryptocurrency identical to LTC, I might add some features later on, but for now it's not an issue. I am not a python programmer, and I have looked around to see if there was any tutorial on making a cryptocurrency by editing code. Which file is the code for wallet? How can I make my own cryptocurrency's wallet identical to most popular LTC(or BTC) wallets? How do I sell my cryptocurrency? Let's say the coin's max supply is 50 million. When I create the currency how many coins should already be on the market? The purpose of my crytocurrency is to let people exchange money completely anonymously and secure in my country. Do websites(which sell cryptocurrency) have their own special wallet when they sell some currencies for dollars? Also do they sell the ...

How can I mine my forked clone of Bitcoin's genesis block?

How can I mine my forked clone of Bitcoin's genesis block? Here is some overview: I cloned Bitcoin, made all the needed changes to the code to fit my new project. I used http://ift.tt/1u8ZXn3 to generate the genesis block and it's hash. I imported the genesis hash, merkle hash, pszTimestamp, bits, nonce, unix timestamp, and block reward back into the code, removed the checkpoints by commenting them out. I am able to compile and run it on multiple nodes no problem. The nodes all sit connected to each other thinking they are trying to download blocks. I try to point CPUminer-opt at my full nodes rpc port, it is able to connect according to the debug logs, but it gets a response of "bitcoin is downloading blocks..." which doesn't let it mine. So I am stuck in this chicken / egg scenario where I am trying to mine the genesis block to get the nodes kicked off but it won't mine because it's stuck at zero blocks and waiting to download the genesis. Here is th...

Mining Process - Transactions Selection

Mining Process - Transactions Selection I started reading about Bitcoin a few weeks ago. Reading most the information and watching videos on the web, I though I understood about the mining process. However, I was shocked when I realized than all the 2^32 combinations of possible values of Nonce can be found is less than 1sec with the current mining hardware. I was even more shocked when I saw the explanation that the mining process also includes the selection of each transaction will be processed. Thus, mining process is much more "try to find the transactions" that will provide the solutions than really try to find the correct Nonce. When the solution is found, then does the miner publish the list of all transactions he selected, the Merkel Root and the Nonce. If the miner's solution is correct, he receives the block reward (currently is 12.5BTC) plus all the transactions fees included in the publish list (not all initial transactions). At the same time, the concept of ...

Transfer XBT between Kraken accounts

Transfer XBT between Kraken accounts I have to receive an amount of XBT from a relative. Both of us have a Kraken account. Can I achieve this inside Kraken or do I need any external wallet or similar? If I can do it in Kraken, how should I proceed? http://ift.tt/2yiyFTz

After sending/flooding transactions, how do we know that a specific transaction is on all nodes?

After sending/flooding transactions, how do we know that a specific transaction is on all nodes? In the book "Mastering the Blockchain" by Imran Bashir, it says that a transaction's life cycle is the following: A user/sender sends a transaction using wallet software or some other interface. The wallet software signs the transaction using the sender's private key. The transaction is broadcasted to the Bitcoin network using a flooding algorithm. Mining nodes include this transaction in the next block to be mined. Mining starts once a miner who solves the Proof of Work problem broadcasts the newly mined block to the network. Proof of Work is explained in detail later in this chapter. The nodes verify the block and propagate the block further, and confirmation starts to generate. Finally, the confirmations start to appear in the receiver's wallet and after approximately six confirmations, the transaction is considered finalized and confirmed. However, six is ...

How do miners handle transactions when a different miner creates a new block?

How do miners handle transactions when a different miner creates a new block? If all transactions are broadcast to all nodes, and all nodes are mining these transactions into blocks. When a block is created and the block is broadcast to all nodes, it may contain transactions that other nodes are currently trying to put into their blocks.....what happens in this scenario? http://ift.tt/2yjKMjo

unconfirmed transaction more than 1 month 17 days? [duplicate]

unconfirmed transaction more than 1 month 17 days? [duplicate] This question already has an answer here: Why is my transaction not getting confirmed and what can I do about it? 9 answers someone please help, unconfirmed transaction for more than 1 month 17 days - http://ift.tt/2yiAQ9X http://ift.tt/2lBsc0n

Fixing Gigabyte Windforce VGA Fans For GPU Mining Rigs

Image
Fixing Gigabyte Windforce VGA Fans For GPU Mining Rigs Some of you might remember our guide from last year on How to Maintain and Repair Dual-X and Other Non-Serviceable GPU Fans covering the whole procedure on how you can fix the fans of old mining video cards that use cheaper sleeve bearing fans. That guide was demonstrating the whole procedure for Sapphire’s old Radeon Dual-X video cards that were very popular back in the Litecoin mining days and are still usable for mining ZEC for example or any other Equihash-based altcoin. Back then we mentioned that the same procedure works for Gigabyte’s Windforce fans as well as many other cheaper fans that find their way on a lot of video cards nowadays, even on very high-end products such as even GTX 1080 Ti. The basic procedure fro replacing the metal bushing with ball bearings is pretty much the same on all fans, though there are some specifics from brand to brand and from model to model and now it is time to talk a bit more about Gigaby...

First Blockchain-Based Bandwidth Marketplace Privatix Reaches Soft Cap in Token Sale

First Blockchain-Based Bandwidth Marketplace Privatix Reaches Soft Cap in Token Sale PrivatixToken Limited announces its token sale for its Broadband Marketplace powered by P2P VPN Network on has already reached its soft cap. Autonomous and decentralized P2P VPN Privatix allows users worldwide to sell unused internet channels for cryptocurrency or buy such channels for business purposes. The platform can be user by developers to build variety of products like CDN, VPN, Proxy marketplaces and others. http://ift.tt/2gPVqDa

STK Global Payments Launches Pre-sale

STK Global Payments Launches Pre-sale October 30, 2017, Gibraltar – STK Global Payments, creators of the STK token, is launching a pre-sale today, ahead of its Token Generation Event beginning November 13, 2017. http://ift.tt/2z1bwCf

Crypto Asset Management Platform TOTLE Announces $10,000 USD Competition to Design Your Own Portfolio

Crypto Asset Management Platform TOTLE Announces $10,000 USD Competition to Design Your Own Portfolio The Totle Portfolio Tournament is an exciting competition run on the Totle platform, where entrants will design their own portfolio, carefully choosing the best crypto assets they believe will give them the highest percentage returns. Entrants, over 30 days, will compete for a $10,000 pool of prizes, starting the 31st October 2017. http://ift.tt/2z60o9u

After A 90 Minute Wipe Out During Pre-Sale, UTRUST Announced Upgraded ICO Launch Plan

After A 90 Minute Wipe Out During Pre-Sale, UTRUST Announced Upgraded ICO Launch Plan The ICO for the UTRUST Platform is set to start on November 2nd 2017 at 2:00 pm UTC. One of the few of its kind, UTRUST will allow U.S citizens to participate in the event provided they are accredited investors. A recent announcement reads: http://ift.tt/2xFM1Fo

Network Units Designs a New Framework for Multiplayer Gaming Systems

Network Units Designs a New Framework for Multiplayer Gaming Systems Network Units (NU) is providing a decentralized framework for game developers to plug in their already created games in order to reach their target audience. This framework will be powered by renting the unused bandwidth and computational power of platform users you are will to make them available for monetary rewards. http://ift.tt/2zUJyY8

Revain: Building a Trustless, Consumer Review System on the Blockchain

Revain: Building a Trustless, Consumer Review System on the Blockchain Trustless. This is kind of a weird word that is often used to describe one of the main benefits of cryptocurrencies. What it means is that the system is built so that trust is simply not a factor. You don’t have to trust it since there is no way to game it. There is no central bank, not governmental institution, no regulator, or anyone else who can step in a tweak the system for their or anyone else’s benefit. The system simply works, you can know it works, and you can know exactly how it works. http://ift.tt/2hrd2pV

It's Halloween and it's all treats for HydroMiners

It's Halloween and it's all treats for HydroMiners Only on 31st of October (local time of Vienna, Austria), if you contribute at least 11 Ether to our ongoing token sale, you will get an extra 5% bonus. That's 20% bonus in total! http://ift.tt/2zn4tqw

Building a Bridge Between Cryptocurrencies and Main Street

Building a Bridge Between Cryptocurrencies and Main Street By Jason Goldberg, Founder and CEO of Simple Token http://ift.tt/2gQmySG

Ethereal Summit LIVE! (With Chat)

Image
Ethereal Summit LIVE! (With Chat) 👍 Thank You Very Much For Watching This Video! 😃 Please Remember To Hit Like & Subscribe! (Also, If You Can Share, It Shows You Care :) ►The Official Ethereal Summit Site: http://ift.tt/2pyuZFe ►The Program (Agenda): http://ift.tt/2pRwPkl 🚩Join The Crypt0's News Group: https://goo.gl/7zxDrt ►💎Donate Ether and Ethereum-Based (ERC-20) Tokens: 0x97f32d97D6Ce4dee3429279F04D5b96Aba7C969B ►💎Donate Bitcoin: 17nFpuYFBxjtGbXgoMbyFGFHemkC5ayz6D ►💎Donate Bitcoin Cash: AbU983Rg4mfRpZ45BmcnitgZfvnDDkzdk ►💎Donate Smartcash: SRmxucTyFd1Dz64LSPAJPNcxQDhAzRTyvc ►💎Donate Dash: XdhemiKBeBCzJFq3v3WNggVRTgd8S4ys9J ►💎Donate Using Paypal: https://goo.gl/7m1X4Z 📔___RECOMMENDED READING ►Ethereum: Blockchains, Digital Assets, Smart Contracts, DAOs- http://amzn.to/2t015ik ►The Singularity Is Near: When Humans Transcend Biology- http://amzn.to/2rHXGjQ ►Physics of the Future: How Science Will Shape Human Destiny and Our Daily Lives by the Year 2100: http://amzn....

Introduction To Token Foundry - Harrison Hines (Ethereal Summit San Francisco 2017)

Image
Introduction To Token Foundry - Harrison Hines (Ethereal Summit San Francisco 2017) 👍 Thank You Very Much For Watching This Video! 😃 Please Remember To Hit Like & Subscribe! (Also, If You Can Share, It Shows You Care :) 🚩Join The Crypt0's News Group: https://goo.gl/7zxDrt ►💎Donate Ether and Ethereum-Based (ERC-20) Tokens: 0x97f32d97D6Ce4dee3429279F04D5b96Aba7C969B ►💎Donate Bitcoin: 17nFpuYFBxjtGbXgoMbyFGFHemkC5ayz6D ►💎Donate Bitcoin Cash: AbU983Rg4mfRpZ45BmcnitgZfvnDDkzdk ►💎Donate Smartcash: SRmxucTyFd1Dz64LSPAJPNcxQDhAzRTyvc ►💎Donate Dash: XdhemiKBeBCzJFq3v3WNggVRTgd8S4ys9J ►💎Donate Using Paypal: https://goo.gl/7m1X4Z 📔___RECOMMENDED READING ►Ethereum: Blockchains, Digital Assets, Smart Contracts, DAOs- http://amzn.to/2t015ik ►The Singularity Is Near: When Humans Transcend Biology- http://amzn.to/2rHXGjQ ►Physics of the Future: How Science Will Shape Human Destiny and Our Daily Lives by the Year 2100: http://amzn.to/2tUaEfa ►The Creature From Jekyll Island: http://a...

Moya Network to Bring Internet to the Next Billion People

Moya Network to Bring Internet to the Next Billion People Moya Networks will bring Internet to a billion people in developing countries. http://ift.tt/2gRe6Th

Bitcoind Previous output scriptPubKey mismatch

Bitcoind Previous output scriptPubKey mismatch In regtest mode did P2SH: 3 nodes, signrawtransaction xxxxxx error: Previous output scriptPubKey mismatch http://ift.tt/2xEGgYv

can someone help me redeem a raw transaciton on Litecoin? looking to create new raw transaction and redeem with public key

can someone help me redeem a raw transaciton on Litecoin? looking to create new raw transaction and redeem with public key I recently have been trying to understand the inner workings of bitcoin and I completely understand all the steps in this guide: How to redeem a basic Tx? I was wondering if anyone could help me to change this python code listed here to work for litecoin...is it just changing all the sha256 hashing to 32byte scrypt and all the rest is the same? assuming I am using a Legacy address of course... Any help with this is greatly appreciated...I am wanting to be able learn all the way down to confirming address' and transactions using hashing with pen and paper...I don't care that it is "pointless" to most people to want to do this..but I want to learn...so....i have been going off of this guide: http://ift.tt/MJHnyh to learn what I can...so far I am able to confirm that the math is correct manually with python code hashing calculators..scrypt and sha...

What's the minimum setup to get started? [duplicate]

What's the minimum setup to get started? [duplicate] This question already has an answer here: I am new to Bitcoin, how can I get started? 8 answers How do I start? I have so many questions I don't even know where to start. Do I need a wallet first? Do I need a "miner" client first? Are them the same thing? Or one includes the other? Do I need to register somewhere? Can I use any OS (win, mac, linux)? Do I need to install some specific compiler (python, nodejs, you name it)? Can someone share their own experience, how did you guys got started? http://ift.tt/2xEGaQD

What is a miner? [duplicate]

What is a miner? [duplicate] This question already has an answer here: What exactly is Mining? 7 answers I am coming across Bitcoin and Ethereum, I guess I understand what they are and how they work on a very high level, and I am interested in trying things out. I searched on this platform and I found this answer saying "Now you need to install a miner" ( http://ift.tt/2A2YC79 ). Good. What is a "miner"? :) http://ift.tt/2xF53vl

Regarding Holding BTC amount while transaction takes place?

Regarding Holding BTC amount while transaction takes place? I am working with BTC transaction on my web platform and it's working fine and for security concern i am stuck at a point and like to discuss with you. So, my stuff is something like following; There are 2 sides of my web platform ie (i) Front side and (ii) Admin side. Now, i want to implement something like whenever any frontend user submit a request to transfer "X" BTC amount to "SOME_ADDRESS", so, that i want to build a secure connection like whenever admin found his requests satisfies all the normal criteria , he will approve this request and transferring funds actual takes place by blockchain. So, mean while i want to build something like until and unless admin approves/reject the request till that time i want to freeze that BTC amount from user's account. Thanks in advance...!!! http://ift.tt/2A2r6Oj

Blockchain complete architecture

Blockchain complete architecture Can someone give me brief description/reference about bitcoin blockchain architecture (preferably with a architecture diagram)? http://ift.tt/2xF4YI3

What is the "certain criteria" to be a valid Bitcoin block?

What is the "certain criteria" to be a valid Bitcoin block? I'm looking for information about Bitcoin. And I read this, it's really helpful. I already asked the question and many of you guys said it's duplicated, and link to the question "What exactly is the mining?" or something. The thing is, I already read it, and I just need some more specific information about criteria. One of the answer for "What exactly is the mining?" said "The way Bitcoin makes sure there is only one block chain is by making blocks really hard to produce. So instead of just being able to make blocks at will, miners have to compute a cryptographic hash of the block that meets certain criteria." In here, the cryptographic hash should meet the certain criteria. And I wonder what it is, and who decided the criteria. I mean, if computers keep mining hash block to get the bitcoin, there should be a certain criteria like it says above. Hope anyone can ...

During transaction getting 'Insufficient funds' message from Bitcoin core

During transaction getting 'Insufficient funds' message from Bitcoin core I am trying to make sendbtc transaction using bitcoin rpc call but getting failed message "Insufficient Funds" from bitcoin core. In addition, once I am trying to make transaction for small amount like below .5 BTC, that transaction successfully done. But for higher value, bitcoin is sending a message "Insufficient funds". Please suggest me what can I do to make higher value transaction. http://ift.tt/2xEG2k7

What are some uses of a signed crytocurrency message in a product or service or some other useful use of this feature?

What are some uses of a signed crytocurrency message in a product or service or some other useful use of this feature? A signed message is a way to prove a user owns an address. But what are some useful products or services that have been built around this feature with signing a bitcoin / altcoin message with their private key? http://ift.tt/2A2r0pV

error building wallet for altcoin

error building wallet for altcoin on windows when i try to compile wallet with qmake i got this error 12:09:25: Running steps for project BlockRipps-qt... 12:09:25: Starting: "C:\Qt232323\5.9.2\mingw53_32\bin\qmake.exe" C:\Users\rbert\Desktop\coin\Blockrippers\BlockRipps-qt.pro -spec win32-g++ "CONFIG+=debug" "CONFIG+=qml_debug" Info: creating stash file C:\Users\rbert\Desktop\coin\build-BlockRipps-qt-Desktop_Qt_5_9_2_MinGW_32bit-Debug\.qmake.stash Removed plural forms as the target language has less forms. If this sounds wrong, possibly the target language is not set or recognized. Removed plural forms as the target language has less forms. If this sounds wrong, possibly the target language is not set or recognized. Removed plural forms as the target language has less forms. If this sounds wrong, possibly the target language is not set or recognized. Removed plural forms as the target language has less forms. If this sounds wrong, possibly the targe...

Can We Build A Surveillance-Free Internet? - Steven "Seven" Waterhouse (Ethereal Summit SF 2017)

Image
Can We Build A Surveillance-Free Internet? - Steven "Seven" Waterhouse (Ethereal Summit SF 2017) 👍 Thank You Very Much For Watching This Video! 😃 Please Remember To Hit Like & Subscribe! (Also, If You Can Share, It Shows You Care :) 🚩Join The Crypt0's News Group: https://goo.gl/7zxDrt ►💎Donate Ether and Ethereum-Based (ERC-20) Tokens: 0x97f32d97D6Ce4dee3429279F04D5b96Aba7C969B ►💎Donate Bitcoin: 17nFpuYFBxjtGbXgoMbyFGFHemkC5ayz6D ►💎Donate Bitcoin Cash: AbU983Rg4mfRpZ45BmcnitgZfvnDDkzdk ►💎Donate Smartcash: SRmxucTyFd1Dz64LSPAJPNcxQDhAzRTyvc ►💎Donate Dash: XdhemiKBeBCzJFq3v3WNggVRTgd8S4ys9J ►💎Donate Using Paypal: https://goo.gl/7m1X4Z 📔___RECOMMENDED READING ►Ethereum: Blockchains, Digital Assets, Smart Contracts, DAOs- http://amzn.to/2t015ik ►The Singularity Is Near: When Humans Transcend Biology- http://amzn.to/2rHXGjQ ►Physics of the Future: How Science Will Shape Human Destiny and Our Daily Lives by the Year 2100: http://amzn.to/2tUaEfa ►The Creature From ...

Compiling bitcoin-core from source Ubuntu 17.10

Compiling bitcoin-core from source Ubuntu 17.10 Hey everything has usually been fine compiling from source until i updated to Ubuntu 17.10 I've configured using --disable-wallet and i'm using the most up to date master branch chris@chris-GE60-2PL:~/bitcoin$ sudo make Making all in src make[1]: Entering directory '/home/chris/bitcoin/src' make[2]: Entering directory '/home/chris/bitcoin/src' make[3]: Entering directory '/home/chris/bitcoin' cd . && /bin/bash ./config.status src/config/bitcoin-config.h config.status: creating src/config/bitcoin-config.h config.status: src/config/bitcoin-config.h is unchanged make[3]: Leaving directory '/home/chris/bitcoin' make[3]: Entering directory '/home/chris/bitcoin' make[3]: Leaving directory '/home/chris/bitcoin' make[3]: Entering directory '/home/chris/bitcoin/src/secp256k1' make[3]: Leaving directory '/home/chris/bitcoin/src/secp256k1' CXX libbitcoin_util_a...

Is there any online learning platform through real practical tutorial projects similar to http://ift.tt/2hQ3fNh?

Image
Is there any online learning platform through real practical tutorial projects similar to http://ift.tt/2hQ3fNh? LiveEdu has something which other ICOs do not, an existing product and an established team. This project has the capabilities to put global online education on the blockchain. http://ift.tt/2ygqrvp

Bitcoind start at reboot but RPC calls wont work

Bitcoind start at reboot but RPC calls wont work I have a pine64 (aarch64) I have set a pruned node. My user name is pine, when I start the node using bitcoind -daemon I can use bitcoin-cli without problem and the RPC calls are OK. I want to set in crontab the automatic start of the node if it is rebooted the pine64. I set crontab as follows pine@pine64:~$ crontab -e # m h dom mon dow command @reboot /usr/local/bin/bitcoind & My bitcoin.conf is this: pine@pine64:~$ cat .bitcoin/bitcoin.conf ## ## bitcoin.conf configuration file. Lines beginning with # are comments. ## # Network-related settings: # Run on the test network instead of the real bitcoin network. #testnet=0 # Run a regression test network #regtest=0 # Connect via a SOCKS5 proxy #proxy=127.0.0.1:9050 # Bind to given address and always listen on it. Use [host]:port notation for IPv6 #bind=<addr> # Bind to given address and whitelist peers connecting to it. Use [host]:port notation for IPv6 #white...

How to know Ledger Nano S balance

How to know Ledger Nano S balance Ledger wallets have a single static address where to send BTC to, but when looking at the details of the transactions, it is always recorded as different receiving addresses . Looking up the static address on blockchain.info (the address you send BTC to) will always show a total of 0 BTC. Is there a way to know the total balance of a Ledger wallet from the static address? Is there another way to know the total balance without actually plugging in the Ledger device? http://ift.tt/2lsnqSJ

Does the percentage of fluctuation remain the same regardless of the value in all wallets?

Does the percentage of fluctuation remain the same regardless of the value in all wallets? This was initially going to reference this question here I, as well, have $10 bitcoin in my wallet, I notice the value does fluctuate. However, will the value fluctuate the same in a $100 wallet, as if it were $10? In other words, my $10 is now $1 1.72 , does that mean the value of a $100 wallet will be $10 1.72 , or will the value be much higher? http://ift.tt/2lvpVng

How is transaction output referenced?

How is transaction output referenced? In a bitcoin transaction previous transaction outputs are referenced. How are these referenced? Do outputs have unique reference or maybe as unique transaction reference X output recipient's address (its public key) http://ift.tt/2ygn7jS

How to obtain inputs and outputs of a bitcoin block more quickly, using JSON RPC or similar

How to obtain inputs and outputs of a bitcoin block more quickly, using JSON RPC or similar Currently, it takes me almost 1.5 hours to obtain all inputs and outputs of a bitcoin block from January using JSON RPC. At this pace, it will take a significant amount of time to go all the way back to genesis. I am starting to think that I am using the wrong API call, or doing something else wrong. I would be greatly thankful if any of you could review the calls that I am currently using (pasted below) and perhaps tell me what I am doing wrong, or if bitcoind is the appropriate client for this. from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException import json import requests import pprint import time import os objectivestart_time=time.time() pp= pprint.PrettyPrinter(indent=4) rpc_user='n' rpc_password='n' url=("http://%s:%s@1"%(rpc_user, rpc_password)) def req(payload): return requests.post(url,data=json.dumps(payload)).json() def BlockHa...

How does number of transactions in the block affect it's mining time?

How does number of transactions in the block affect it's mining time? Does number of transactions in the block affect it's mining time? How and why? http://ift.tt/2ygSPxC

What does it mean by behaving badly in blockchains

What does it mean by behaving badly in blockchains Algorithms like proof of work/stake prevent nodes from behaving badly in blockchains. What does it mean exactly to behave badly? What result is produced by behaving badly, does it mean to add a different block? The question seems very simple but I couldn't find an answer to it from Google. http://ift.tt/2ygSOty

Where's the code related to block 494784 for segwit2x?

Where's the code related to block 494784 for segwit2x? I read everywhere that segwit2x activates at blocks 494784, around 15 or 16 of November. I did just checkout the segwit2x codebase doing: git clone http://ift.tt/2rEVKMP And I can see that I'm on a branch called "segwit2x". I tried to search every single file for any hint of block 494784, 494783 or 494785 but couldn't find anything. I've got many technical questions regarding segwit2x and I wanted to dig into the source code to find answers. Seen that I couldn't find anything, my first technical question is this one: where's the code related to block 494784 at which segwit2x is supposed to happen? http://ift.tt/2ygL76q

SimplyVital Health Push Back Token Offering to Meet AML/KYC Requirements

SimplyVital Health Push Back Token Offering to Meet AML/KYC Requirements SimplyVital Health, the company behind the blockchain-based healthcare protocol Health Nexus, has announced a delay to its token offering to give further time for AML and KYC analysis. SimplyVital Health is dedicated to creating the best possible foundation for its Health Cash [HLTH] token that is critical to building out a new healthcare ecosystem and amid a climate of heightened interest in cryptocurrency offerings, SimplyVital Health is adhering to current best practices as closely as possible. http://ift.tt/2gP5FI7

Titan’s Debates: Pros and Cons of Bitcoin

Titan’s Debates: Pros and Cons of Bitcoin Bitcoin has been the subject of debate for as many years as it has existed. Coinidol has tried to figure out the prevailing opinion - is it good or bad? http://ift.tt/2gUq8Pm

Utrust Announces Dates for Blockchain Conferences in three Continents Ahead of November 2nd ICO

Utrust Announces Dates for Blockchain Conferences in three Continents Ahead of November 2nd ICO UTRUST is set to usher in the future of online payment with its revolutionary, blockchain-based platform that lets users buy and sell using their favorite cryptocurrencies. http://ift.tt/2ifGsH6

Deconstructing & Reconstructing Our Universe, Atom By Atom, Bit By Bit- Bill Tai (Ethereal Summit)

Image
Deconstructing & Reconstructing Our Universe, Atom By Atom, Bit By Bit- Bill Tai (Ethereal Summit) 👍 Thank You Very Much For Watching This Video! 😃 Please Remember To Hit Like & Subscribe! (Also, If You Can Share, It Shows You Care :) 🚩Join The Crypt0's News Group: https://goo.gl/7zxDrt ►💎Donate Ether and Ethereum-Based (ERC-20) Tokens: 0x97f32d97D6Ce4dee3429279F04D5b96Aba7C969B ►💎Donate Bitcoin: 17nFpuYFBxjtGbXgoMbyFGFHemkC5ayz6D ►💎Donate Bitcoin Cash: AbU983Rg4mfRpZ45BmcnitgZfvnDDkzdk ►💎Donate Smartcash: SRmxucTyFd1Dz64LSPAJPNcxQDhAzRTyvc ►💎Donate Dash: XdhemiKBeBCzJFq3v3WNggVRTgd8S4ys9J ►💎Donate Using Paypal: https://goo.gl/7m1X4Z 📔___RECOMMENDED READING ►Ethereum: Blockchains, Digital Assets, Smart Contracts, DAOs- http://amzn.to/2t015ik ►The Singularity Is Near: When Humans Transcend Biology- http://amzn.to/2rHXGjQ ►Physics of the Future: How Science Will Shape Human Destiny and Our Daily Lives by the Year 2100: http://amzn.to/2tUaEfa ►The Creature From Jeky...

Should port forwarding for running bitcoin be done also on the ISP's router?

Should port forwarding for running bitcoin be done also on the ISP's router? Follow up question on What is the NAT traversal technique used by bitcoin . The network architecture described here http://ift.tt/2ygtBiR is something that I (probably) have in my home (and probably 99% of other people): Internet > ISP router (NAT 1) > My router (NAT 2) > My Node So my Node is hidden behind 2 NATs. Therefore I should forward ports on both routers to allow incoming connections to my Node. But people have no access to NAT 1 and can only port-forward NAT 2, and must probably contact ISP to port-forward NAT 1. How do people run their nodes with incoming connections enabled when this issue is present? http://ift.tt/2lsiBc1

How does the network know the legitimate chain in a double-spend attempt?

How does the network know the legitimate chain in a double-spend attempt? Apologies if this has been covered, but there's one area of the Bitcoin network that is not clear in my head, and it's intimately linked to the double-spend problem. Suppose Person A is purchasing an item in a store. They "pay" Person B 1 BTC for a good and broadcast this transaction to the network, which Person B sees as unconfirmed. The transaction is included in a block ( Block 1 ) whose Proof of Work is now being found/solved. Suppose Person A controls 30% of the Bitcoin mining network (arbitrary high proportion), and has his miners instead mine a different block ( Block 2 ) containing a transaction spending the same BTC to a different wallet controlled by Person A . Suppose the Proof of Work for Block 2 is, against the odds, obtained first, and the "corrupt" miner who finds the requisite hash broadcasts it to the entire bitcoin network. This is where my understanding break...

Make Money With Bitcoin

Make Money With Bitcoin easy and fast. Message me to learn the tricks!