Where is the assets and Transactions stored in Multichain?

+1 vote
I have installed Multichain on my cluster and have few assets and transactions .

The question is where are the assets and transactions created are stored?

Are they stored in local file system or Multichain uses a distributed database ?
asked Apr 5, 2016 by Bhargi

1 Answer

+1 vote

Everything that happens is stored in the blockchain, and this is stored in the local system in a collection of files, alongside appropriate indexes. Look inside the ~/.multichain/[chain-name] directory to see what's there.

In addition events that are of particular relevance to the local node, such as a transaction it sent or received, are stored in that node's wallet.

answered Apr 5, 2016 by MultiChain
then what do you mean by distributed storage .. according to blockchain principles every transaction happening in the network should be visible to every one right?
Yes, that's right.
ok... so transaction embedded in blocks and added to the chain what is the meaning of this "blockchain resides in network "... It means chain gets dtored in every node right and no where else except this ~/.multichain/[chain-name] directory...
Yes, every node has a copy of the chain and stores it in its blockchain directory.
Thank you so much for your all response.
...