-
Notifications
You must be signed in to change notification settings - Fork 634
bitcoind address index #422
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This was referenced Apr 4, 2016
00a70dc to
df0cb7a
Compare
- config options for bitcoind to specify exec path of bitcoind - config options to connect to multiple bitcoind processes - systemd and upstart preferred methods to daemonize
f29c732 to
4f131cc
Compare
Fixes an issue where passing an address as the blockArg would get the blockhash for the parsed integer of the address. `parseInt` would parse the address as an integer and then get the block hash for 1. A regular expression now checks that the string is numeric with only 0-9 and the length is less than 40, the size of a ripemd160, and also less than the length of a sha256 hash.
This was referenced May 27, 2016
Closed
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
-addressindex,-timestampindexand-spentindexoption from Address and additional indexes bitcoin#6 and bitcoind address index bitcoind-rpc#17getBlock- block as Bitcore Block (cached)getRawBlock- block as Node.js Buffer (cached)getBlockHeader- summarized block informationgetBlockOverview- summarized block information with txidsgetBlockHashesByTimestamp- Array of block hashes within two datesgetBestBlockHash- the lastest blockhashgetSpentInfo- gives the txid that has spent an outputgetInfo- general blockchain infosyncPercentage- the current sync percentageisSynced- boolean of the chain is past the initial syncgetRawTransaction- transaction as Node.js Buffer (cached)getTransaction- transaction as Bitcore Transaction (cached)getDetailedTransaction- transaction plus block info, spent information, and input valuessendTransaction- broadcasts transaction to the networkestimateFee- gives a fee estimate based on number of blocksgetAddressTxids- gives all txids for address(es) (cached, updates with mempool)getAddressBalance- gives the received and current balance for address(es) (cached)getAddressUnspentOutputs- gives unspent outputs for address(es)getAddressHistory- gives detailed transactions for address(es)getAddressSummary- gives a summary with balance and txids for address(es)generateBlock- generates a block (for development)Todo:
package.jsonto a released version of bitcoind-rpc with necessary changes: bitcoind address index bitcoind-rpc#17getTransactionWithBlockInfoin relation to issue getTransactionWithBlockInfo over socket.io omits block info #423, andgetInforesults that are passed from bitcoind. We will handle this by adding a new method,getDetailedTransaction.