Bitcoin Forum

Bitcoin => Project Development => Topic started by: themystick on October 09, 2017, 10:41:22 PM



Title: Can we keep any information in the Blockchain?
Post by: themystick on October 09, 2017, 10:41:22 PM
Hi guys!
I have a question for you. I'm thinking about that Can we keep any information in the blockchain? So I mean, photos, voice records, weather report, locations etc. can keep in the blockchain? If It can, Can we categorise and handle this information in the blockchain? Thanks!


Title: Re: Can we keep any information in the Blockchain?
Post by: daserpent on October 10, 2017, 05:26:10 AM
The way I see it, blockchain is only a way to ensure no data is tampered with without the acknowledgement of all users.

So, its a public ledger - a public book of all transactions or changes.

Which would mean, if suppose I make a company that organises all land-owners records in digital format, and make a transaction in the blockchain, it would not tamperable until all of the users of the blockchain conscent to the change.

So, to change any land-record, I would need approval of all or majority of users to make the change. Or else, its not going to be changed.

Could be wrong here, if so, someone please explain.


Title: Re: Can we keep any information in the Blockchain?
Post by: hakuna on October 10, 2017, 09:36:28 PM
Is your question about legal issues or technical ones?
As daserpent wrote, the blockchain is public and immutable, hence you should pay attention not to store private information.

From the technical point of view, the blockchain is replicated on each network node. That means that, in order to store big files, like pictures or audio files, you will need to pay a high fee, as your file will be hosted on all the network nodes.

Some workarounds exist, e.g., IPFS, https://ipfs.io/ (https://ipfs.io/). In this view, you could store a file on a peer-to-peer network, and save on the blockchain only the hash (the "summary") of the file, e.g. to guarantee the existence of the file at a given time.

Hope this could answer to your question.


Title: Re: Can we keep any information in the Blockchain?
Post by: themystick on October 11, 2017, 12:12:34 AM
Is your question about legal issues or technical ones?
As daserpent wrote, the blockchain is public and immutable, hence you should pay attention not to store private information.

From the technical point of view, the blockchain is replicated on each network node. That means that, in order to store big files, like pictures or audio files, you will need to pay a high fee, as your file will be hosted on all the network nodes.

Some workarounds exist, e.g., IPFS, https://ipfs.io/ (https://ipfs.io/). In this view, you could store a file on a peer-to-peer network, and save on the blockchain only the hash (the "summary") of the file, e.g. to guarantee the existence of the file at a given time.

Hope this could answer to your question.

Thank you for your great response. I want to build my own blockchain for my project. If I can do this, I think it can be great work for me. Thank you again!


Title: Re: Can we keep any information in the Blockchain?
Post by: CryptoSpark on October 12, 2017, 04:17:13 PM
You could but it's usually not the most effient place to store large amounts of data. Blockchains strength is its immutable nature which makes it ideal as a ledger but considering the cost and bandwidth for mirroring large chunks of data to ever node it isn't ideal.


Title: Re: Can we keep any information in the Blockchain?
Post by: themystick on October 12, 2017, 06:32:19 PM
You could but it's usually not the most effient place to store large amounts of data. Blockchains strength is its immutable nature which makes it ideal as a ledger but considering the cost and bandwidth for mirroring large chunks of data to ever node it isn't ideal.

You are right but If these datas are very very large amount, I mean "Big data", I think this methode can more usefull than keeping in the database ha?


Title: Re: Can we keep any information in the Blockchain?
Post by: HeRetiK on October 12, 2017, 10:55:26 PM
You could but it's usually not the most effient place to store large amounts of data. Blockchains strength is its immutable nature which makes it ideal as a ledger but considering the cost and bandwidth for mirroring large chunks of data to ever node it isn't ideal.

You are right but If these datas are very very large amount, I mean "Big data", I think this methode can more usefull than keeping in the database ha?


What would you expect to be the benefit of storing media files and other binary data on the Bitcoin blockchain -- or, any blockchain for that matter?

If it's the distributed aspect that you are after, there are other, more efficient ways to do so. IPFs has already been mentioned and is not the only one of its kind. Storj and MaidSafe are similar projects. If you're looking for something that is proven and widely used you need to look no farther than BitTorrent.


Title: Re: Can we keep any information in the Blockchain?
Post by: Patatas on October 13, 2017, 06:31:00 AM
Hi guys!
I have a question for you. I'm thinking about that Can we keep any information in the blockchain? So I mean, photos, voice records, weather report, locations etc. can keep in the blockchain? If It can, Can we categorise and handle this information in the blockchain? Thanks!
Which blockchain ? Current one ? No.You want to write your own chain,cool.You can code it however you like provided it keeps  the core concepts of blockchain intact.Also I don't understand why would you want to keep private videos,photos,locations on a public chain ? Breach of privacy ? That's not what a blockchain is suppose to be.

Maybe you should describe your idea in brief and I would know what you actually trying to do.


Title: Re: Can we keep any information in the Blockchain?
Post by: eternalgloom on October 13, 2017, 09:50:29 AM
It's definitely possible to store messages in the blockchain using the OP_RETURN script.
You can find more info about that here: https://en.bitcoin.it/wiki/OP_RETURN

There are several services on the internet which allow you to store messages on the Bitcoin Blockchain and I'm pretty sure there are many ways to do this.

Here are some threads and articles of other ways to store data in the blockchain, along with some examples:
https://bitcointalk.org/index.php?topic=33618.0
http://www.righto.com/2014/02/ascii-bernanke-wikileaks-photographs.html
https://medium.com/@inthebitcoin/how-to-store-a-message-in-the-bitcoin-blockchain-8d5ac0a8ea88


Title: Re: Can we keep any information in the Blockchain?
Post by: themystick on October 14, 2017, 01:21:30 PM
Hi guys!
I have a question for you. I'm thinking about that Can we keep any information in the blockchain? So I mean, photos, voice records, weather report, locations etc. can keep in the blockchain? If It can, Can we categorise and handle this information in the blockchain? Thanks!
Which blockchain ? Current one ? No.You want to write your own chain,cool.You can code it however you like provided it keeps  the core concepts of blockchain intact.Also I don't understand why would you want to keep private videos,photos,locations on a public chain ? Breach of privacy ? That's not what a blockchain is suppose to be.

Maybe you should describe your idea in brief and I would know what you actually trying to do.

So, think like that, You have a few autonomous cars and you want to keep the photos and voice records which are saved by cars. Is it clear enough?


Title: Re: Can we keep any information in the Blockchain?
Post by: thr3 on October 15, 2017, 02:38:30 AM
It really depends on how you code the blockchain and what kind of data structure you would use to the store data. There are a lot of projects out there that addresses the different ways to use the blockchain.


Title: Re: Can we keep any information in the Blockchain?
Post by: XFlowZion on October 15, 2017, 06:05:58 AM
I have heard that you can store photos but its limited and it will cost you to pay a huge transaction fee.


Title: Re: Can we keep any information in the Blockchain?
Post by: kolise6678 on October 15, 2017, 06:41:31 AM
I want to recommend to you a great shop asic-minerworld. This place is great. Reasonable prices and quality fast delivery. I often shop at this store a Great store.


Title: Re: Can we keep any information in the Blockchain?
Post by: Intuitnow on October 15, 2017, 12:40:08 PM
The technology advancement of smart contracts makes the blockchain such a powerful tool.
The blockchain will soon be universal in use as the computer.
Medical records etc.

1ClickMedical  //  Medical Access with just 1 Click!
●   Early Token Sale  |  Oct 15th, 2017   ● (http://1clickmedical.com)


Title: Re: Can we keep any information in the Blockchain?
Post by: AdolfinWolf on October 15, 2017, 05:01:59 PM
I have heard that you can store photos but its limited and it will cost you to pay a huge transaction fee.

You can make a contract in ethereum, deploy it, and then you will be indeed able to store text strings / links to pictures.

There have been some guys that indeed stored pictures on the ETH Chain, see here, https://boobies.surge.sh/#after - / NSFW-ish, Pretty funny, that this is so easily possible, and can be stored indefinitely.


Title: Re: Can we keep any information in the Blockchain?
Post by: jal007 on October 16, 2017, 04:34:23 PM
yes its dapps technologie, it can stor any kinf of data


Title: Re: Can we keep any information in the Blockchain?
Post by: EugeneAS on October 16, 2017, 06:08:07 PM
It's still difficult to store big amounts of data in a public blockchain, but it is easier for private blockchain.
For example, IPDB will not allow you to write more than 100MB/month for now.

Check out https://www.bigchaindb.com/, you can use their architecture on your own nodes.


Title: Re: Can we keep any information in the Blockchain?
Post by: Swinging Phallus on October 17, 2017, 12:29:34 AM
Yea, like everyone is saying. It is possible but for large amounts of data it isnt feasible - and most definitely isn't feasible for confidential data. I think there is potential for this capability in the future. Technology is something which is constantly evolving and developing but as of now it isn't a viable idea to store large amounts of data on the blockchain.


Title: Re: Can we keep any information in the Blockchain?
Post by: monkeydominicorobin on October 17, 2017, 04:15:36 AM
Hi guys!
I have a question for you. I'm thinking about that Can we keep any information in the blockchain? So I mean, photos, voice records, weather report, locations etc. can keep in the blockchain? If It can, Can we categorise and handle this information in the blockchain? Thanks!
The very blockchain itself is keeping information as we speak. We can keep all sorts of information in it including everything that you mentioned. But everything that you place in it is right there forever. Can you categorize? It depends on the blockchain you are using.


Title: Re: Can we keep any information in the Blockchain?
Post by: themystick on October 17, 2017, 07:12:56 PM
Yea, like everyone is saying. It is possible but for large amounts of data it isnt feasible - and most definitely isn't feasible for confidential data. I think there is potential for this capability in the future. Technology is something which is constantly evolving and developing but as of now it isn't a viable idea to store large amounts of data on the blockchain.
So Is there any solution for this? I want to solve this problem and I think If a person can solve this problem, He can be HERO!


Title: Re: Can we keep any information in the Blockchain?
Post by: themystick on October 17, 2017, 07:14:47 PM
Hi guys!
I have a question for you. I'm thinking about that Can we keep any information in the blockchain? So I mean, photos, voice records, weather report, locations etc. can keep in the blockchain? If It can, Can we categorise and handle this information in the blockchain? Thanks!
The very blockchain itself is keeping information as we speak. We can keep all sorts of information in it including everything that you mentioned. But everything that you place in it is right there forever. Can you categorize? It depends on the blockchain you are using.

Yes. I have to categorize this data and I thought that I can use SVM(Support Vector Machine) for categorizing this data. Is it possible ha?


Title: Re: Can we keep any information in the Blockchain?
Post by: aBitcoiner on October 17, 2017, 08:24:57 PM
There are lots of ICOs already that allow us to prove the authorship of the files that means they are stored in Blockchain. It may be wrong, but I definitely saw such things on b-talk


Title: Re: Can we keep any information in the Blockchain?
Post by: Alanay on October 17, 2017, 09:05:48 PM
I know everything is possible with blockchain technology.
you can do whatever you want with software just imagine


Title: Re: Can we keep any information in the Blockchain?
Post by: shield132 on October 17, 2017, 09:42:59 PM
Yes of course and as I know there are some attempts by BitFury on it. Georgia is going to make something similar like storing information of home owners, building owners, place owners and etc. It's high standart of security and as you know blockchain technology, no one can edit anything because information is store and confirmed by every user.
I bet you'll see (OP) that features in very near future.


Title: Re: Can we keep any information in the Blockchain?
Post by: themystick on October 23, 2017, 12:39:29 PM
Yes of course and as I know there are some attempts by BitFury on it. Georgia is going to make something similar like storing information of home owners, building owners, place owners and etc. It's high standart of security and as you know blockchain technology, no one can edit anything because information is store and confirmed by every user.
I bet you'll see (OP) that features in very near future.
Thank you so much for your great response!  :)


Title: Re: Can we keep any information in the Blockchain?
Post by: bebtc on October 24, 2017, 12:54:55 AM
The way I see it, blockchain is only a way to ensure no data is tampered with without the acknowledgement of all users.

In other words, it is a public ledger - a public book of all transactions or changes.

So I think you could record that information but you cannot change it when the transaction is made.


Title: Re: Can we keep any information in the Blockchain?
Post by: 3piecechickendinner on October 24, 2017, 12:29:07 PM
You could but it's usually not the most effient place to store large amounts of data. Blockchains strength is its immutable nature which makes it ideal as a ledger but considering the cost and bandwidth for mirroring large chunks of data to ever node it isn't ideal.

You are right but If these datas are very very large amount, I mean "Big data", I think this methode can more usefull than keeping in the database ha?

So where would this “big data” be stored at? Would you have an offchain database to write your large datasets to?  For instance, a medical records company that is producing 300GB of data a day


Title: Re: Can we keep any information in the Blockchain?
Post by: artras on October 24, 2017, 03:32:56 PM
Yes, blockchain is a database and you can keep all information that you want (in case if you build your own blockchain). If you want to use some existing blockchain like ethereum, you need check that this blockchain support. More existing blockchains is not designed to store large files in one block.