It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
WalletTool: print and manipulate wallets
Usage:
>>> GENERAL OPTIONS
--debuglog Enables logging from the core library.
--net=PROD/TEST Which network to connect to, defaults to PROD.
--mode=FULL/SPV Whether to do full verification of the chain or just light mode.
--wallet=Specifies what wallet file to load and save.
--chain=Specifies the name of the file that stores the block chain.
--force Overrides any safety checks on the requested action.
--date Provide a date in form YYYY/MM/DD to any action that requires one.
--peers=1.2.3.4 Comma separaterd IP addresses/domain names for connections instead of peer discovery.
--condition=... Allows you to specify a numeric condition for other commands. The format is
one of the following operators = < > <= >= immediately followed by a number.
For example --condition=">5.10" or --condition="<=1"
>>> ACTIONS
--action=DUMP Loads and prints the given wallet in textual form to stdout.
--action=RAW_DUMP Prints the wallet as a raw protobuf with no parsing or sanity checking applied.
--action=CREATE Makes a new wallet in the file specified by --wallet.
Will complain and require --force if the wallet already exists.
--action=ADD_KEY Adds a new key to the wallet, either specified or freshly generated.
If --date is specified, that's the creation date.
If --privkey is specified, use as a hex/base58 encoded private key.
Don't specify --pubkey in that case, it will be derived automatically.
If --pubkey is specified, use as a hex/base58 encoded non-compressed public key.
--action=DELETE_KEY Removes the key specified by --pubkey or --addr from the wallet.
--action=SYNC Sync the wallet with the latest block chain (download new transactions).
If the chain file does not exist this will RESET the wallet.
--action=RESET Deletes all transactions from the wallet, for if you want to replay the chain.
--action=SEND Creates a transaction with the given --output from this wallet and broadcasts, eg:
--output=1GthXFQMktFLWdh5EPNGqbq3H6WdG8zsWj:1.245
You can repeat --output=address:value multiple times.
If the output destination starts with 04 and is 65 or 33 bytes long it will be
treated as a public key instead of an address and the send will use
CHECKSIG as the script.
Other options include:
--fee=0.01 sets the tx fee
>>> WAITING
You can wait for the condition specified by the --waitfor flag to become true. Transactions and new
blocks will be processed during this time. When the waited for condition is met, the tx/block hash
will be printed. Waiting occurs after the --action is performed, if any is specified.
--waitfor=EVER Never quit.
--waitfor=WALLET_TX Any transaction that sends coins to or from the wallet.
--waitfor=BLOCK A new block that builds on the best chain.
--waitfor=BALANCE Waits until the wallets balance meets the --condition.