blockchain explorer

+1 vote
1. I read somewhere MultiChain will support storage of documents, is there an ETA for this feature on your roadmap?

2. Which CLI commands or web UI can we use if we wanted to explore a BlockChain on Digital Ocean using your tutorial? With current API, which keys can we explore with (example search by transaction ids, wallet address, asset type)?

3. If a blockchain is setup for digital assets (not used for fund/currency transfer). Is there an upper bound to number of various assets you can define?

4. What's the ETA for blockchain messaging from your roadmap?
asked Oct 12, 2015 by anonymous

1 Answer

+1 vote

1. Document storage. Although there aren't dedicated APIs, you can already do this by creating a chain with max-std-op-return-size set to a high number of bytes in the blockchain parameters, and running a node with txindex=1 in the runtime parameters (set this before the chain starts). You can then use the appendrawmetadata API to add arbitrary metadata to a raw transaction, and this metadata can include the document's contents. The transaction ID of the sent transaction can be used as a reference to the document, so the document can be retrieved using the getrawtransaction API with the second parameter set to true.

2. I'm not sure I understand the question - you can use the full CLI and API if you run nodes on Digital Ocean.

3. Maximum number of assets. There is no limit and unless you call listassets with no asset identifier, everything scales very nicely to millions of assets.

4. Blockchain messaging. No ETA on this yet, but you could adapt our CoinSpark messaging stuff to work with MultiChain if this is important to you. Take a look at:

http://coinspark.org/developers/messages-introduction/

https://github.com/coinspark/message-server

https://github.com/coinspark/coinspark-message

This last library is designed for Bitcoin Core, but MultiChain is fully backwards compatible with that, so it should not be a problem. Just change the CONST_BITCOIN_CMD path in coinspark-message.php and set CONST_BITCOIN_FEE to 0.

answered Oct 13, 2015 by MultiChain
General operational questions...
adding meta data, help using cli and appendrawmetadata
...