Tactical Genius (OP)
Full Member
Offline
Activity: 434
Merit: 102
Leading Cryptocurrency and Blockchain Company
|
|
August 12, 2017, 04:20:24 AM |
|
What are the basic requirements for developing a blockchain?
|
|
|
|
|
samson
Legendary
Offline
Activity: 2097
Merit: 1070
|
|
August 15, 2017, 12:11:31 AM Merited by paxmao (1), AGD (1) |
|
You need to know how to program, you don't need to know all of the above languages. That's pure overkill. I've never used Python or Java for anything, I do however use C for some things and some other higher level cross platform GUI tools for desktop front ends. Ultimately a lot of languages (at least the ones I use) produce programs which are built with the LLVM backend. Crypto libraries like mbedTLS and LibSodium are written in C but that doesn't mean you need to write the rest of your programs in C or C++ with the Qt environment like Bitcoin. The basic libs can be used in combination with various modern and very simple to use languages. There are higher level languages which allow you to use the exact same cryptography as Bitcoin or similar ECC variations like Ed25519 instead of Secp256k1 for example. You could for example write it in one of the .NET languages or something a bit more cross plaform friendly, there are some quite useful GUI enabled cross platform (Win, Mac and Linux) languages out there if you go looking for them and you can use as much or as little lower level C/C++ stuff as you want. I would suggest that the first step will be to learn how to use the crypto libraries properly and take it from there. Writing a blockchain based system is not a small job but it can be done if you're dedicated to the task and have enough time to do so. What kind of blockchain utilising system did you have in mind ? I'm interested in a minimalist private blockchain based system for what I'm working on, it doesn't need to be a coin but would use issued tokens to authorise database entries in a distributed manner which is hard to tamper with and is read only for nearly all users apart from those authorised to add blocks. These tokens would have no monetary value and certainly wouldn't be traded anywhere but would serve to enforce fair use of the system and prevent abuse by trusted users. This is just a pet project of mine but as an emerging and relatively new way of doing things I'm sure there will be many interesting developments in the future so it's an area worth pursuing even if it takes a few years to get up to speed or produce anything worthwhile.
|
|
|
|
Enkeci
Newbie
Offline
Activity: 23
Merit: 5
|
|
August 17, 2017, 06:15:11 PM |
|
What are the basic requirements for developing a blockchain?
Time, Patience, Program language to build the codebases
|
|
|
|
ampedWK
Newbie
Offline
Activity: 1
Merit: 1
|
|
August 18, 2017, 05:53:30 AM |
|
I would suggest that the first step will be to learn how to use the crypto libraries properly and take it from there.
+1 for this. Working with even the JS and Python more abstract libraries can help with learning the 'feel' of developing and developing for a blockchain. Looking at these Libs and actually ripping open the source can give insights about how RPC's and the like are used too. I've found that a lot of the baseline coding isn't that intensive but knowing the protocols inside and out is a real help. Also, look at as much github and stack stuff as possible, a fair amount of info and tutorial stuff out there gets deprecated really quick. Counts twofold for protocol transitions and as offchain scaling solutions grow, so will the number of expectations about what a blockchain should be able to do. So be prepared to read a lot. Take notes. Then read some more.
|
|
|
|
macromantra
Newbie
Offline
Activity: 3
Merit: 0
|
|
August 20, 2017, 04:49:49 PM |
|
Most blockchains out there are forked from existing ones.
|
|
|
|
|
dagumak
Newbie
Offline
Activity: 9
Merit: 0
|
|
August 21, 2017, 05:00:32 PM |
|
If you’re interested in building a blockchain you have a few difficult tasks ahead of you. You have to decide what type of blockchain you want to implement. Then, you have to decide on how you’re going to build your mining community. Next, you’ll have to figure out how to get the larger community interested in your blockchain. It is not an easy task, unless you are doing it for fun.
The mining part is always my question. Correct me if I am wrong, in the case of bitcoin, you're always verifying if the transactions are correct then you find the correct hash. Let's use steemit.com as an example, what are they verifying in their mining process?
|
|
|
|
zertsekel
Newbie
Offline
Activity: 18
Merit: 0
|
|
August 26, 2017, 06:07:24 PM |
|
Not sure if this is the right place to post it, but... But to really understand the Bitcoin - it takes time, not 5 minutes, not even a couple of hours. I have a lot 10+ years of programming experience and it took me a lot of time. I mean, not only to get the big picture but to learn many other details. This is why I created this online course for you guys "Bitcoin Kick Ass Course (for developers)". This course takes nine weeks to understand and practice Bitcoin and Blockchain in details. Take a look: https://redd.it/6vi3wp. The one-page executive summary is there.
|
|
|
|
RedenBlack13
Full Member
Offline
Activity: 462
Merit: 100
0x773f017A00F1eD28a18bC9dE6bc72e5Ea3EcBA3d
|
|
August 27, 2017, 07:35:48 PM |
|
Hi! I'm a beginner, so my question can be stupid for a veteran, but I'd like to ask: I read about the utilization of blockhain and decentralized databases in many field of application, far from cryptocurrency, just like IoT communication or data storage. How this can be possible?
|
|
|
|
wavelengthsf
|
|
August 27, 2017, 07:51:32 PM |
|
Hi! I'm a beginner, so my question can be stupid for a veteran, but I'd like to ask: I read about the utilization of blockhain and decentralized databases in many field of application, far from cryptocurrency, just like IoT communication or data storage. How this can be possible?
A blockchain is built around the idea of trustless consensus. In IoT, you have potentially millions of nodes connected, but you don't know if they're all playing by the same rules or have the same objectives. A blockchain would allow these devices to synchronize around a common set of rules. This works especially well if the devices are made from different vendors, since they don't have to trust each other, just that the consensus rules are well implemented. Transfer of money is one proven use of a blockchain, but in theory you can use it to implement any set of rules that require a database and coordination of that database across the network.
|
|
|
|
HotCryptoNews
Newbie
Offline
Activity: 25
Merit: 0
|
|
August 28, 2017, 06:17:16 AM |
|
If you really intend to start using the blockchain, there are blockchain specific "languages" eg. solidity which you program smart contracts with on a blockchain, it's a lot like Javascript. I reccommend looking for the blockchain development course on https://www.udemy.com.
|
|
|
|
AdisBegic
Newbie
Offline
Activity: 31
Merit: 0
|
|
September 01, 2017, 11:14:11 AM |
|
I would suggest that you enroll in a course on coursera with relevance to blockchain technology. They have a very in-depth course that will help you understand the concepts behind the technology and also assign you tasks, where you can incorporate what you've just learned. Once you've become familiar with the technology itself and wants to start out as a developer, please don't hesitate to PM me and I'll help you get started, I know it can be hard to get started and having someone help you towards the right path and away from all the circulating nonsense is something I wish I had, when I dove in head first. Once you're familiar with the concepts, the high level languages then you should dive into the low level stuff EVM bytecode stuff (this is where it gets difficult for most but this is where you become the best)
|
|
|
|
Jay taylor
Newbie
Offline
Activity: 12
Merit: 0
|
|
December 26, 2017, 01:34:09 PM |
|
Given that blockchain technology is evolving very fast and the landscape changing from day to day I will focus on the two following platforms.
Ethereum is certainly one of those blockchain platforms that has a future due to the great community developing applications and smart contracts. I think it is one of the best so I would put on top of my list.
Hyperledger is a great platform as well even it is not as famous as Ethereum. Hyperledger is a LinuxFoundation projects that was first developed by IBM and then donated to the LinuxFoundation. Its slogan is “Blockchain solutions for business”. So the focus of the project is to provide permissioned blockchain technology for business solutions. Some business blockchain frameworks hosted within Hyperledger projects are Hyperledger Sawtooth, Hyperledger Fabbric and Hyperledger Iroha.
|
|
|
|
Sats.Obol
Newbie
Offline
Activity: 5
Merit: 0
|
|
December 26, 2017, 02:25:58 PM |
|
What are the basic requirements for developing a blockchain?
Summary:- A Programming Language
- Cryptography 101
- Mathematics
- Networking
- Network Security
Good Morning Frèro, I've done a little research on Blockchain creation and it does require some knowledge on coding. now which particular Programming Language is your choice, but if you truly want to dev a blockchain, coding is essential. Also, a solid understanding of the basics of Cryptography would help. with Cryptography also comes Math, I am still not sure which disciplines in Mathematics would be more rewarding though. Basic knowledge on Network security, also Basic Networking knowledge (Especially TCP/IP) this is not a comprehensive list at all, but this is what I've noticed I required some knowledge in when researching and attempting to understand what Blockchain tech is and how it functions. - Hope this helped.
|
|
|
|
hopeAo
Jr. Member
Offline
Activity: 42
Merit: 2
|
|
December 26, 2017, 07:06:54 PM |
|
What are the basic requirements for developing a blockchain?
1.Know basic commands line code (C++). 2.You will need to access your computers console. 3.Invest in a book called Mastering by Andreas Anasopolous this man has a wealth of knowledge and YouTube videos and an online class at the university of Nicosia. 4.You will also need Git Hub there's lots of chain codes there. 5.Remember there are different kind of blockchains for example Ethereum is different than Bitcoin and say Open Ledger is an exchange but also a community and you can create coins in there if you can figure it out. 6. http://davidderosa.com/basic-blockchain-programming7.Go to http://bitcoin.org there is lots of resources there you will need and say http://bitcoin.com/en/development there you will find developer communities and be able to get advice from other Dev’s along your way. 8.Read all about it and practice with yourself alone with the Internet dev peeps.
|
|
|
|
|
hugeblack
Legendary
Offline
Activity: 2702
Merit: 3991
|
|
January 22, 2018, 11:55:12 AM |
|
What are the basic requirements for developing a blockchain?
1. blockchain like Bitcoin, litecoin, and Ethereum is a protocol. 2. bitcoin written by Satoshi Nakamoto in C++. 3. reading whitepaper of bitcoin will help you to know most of the altcoins { https://bitcoin.org/bitcoin.pdf}. 4. Ethereum is C++ and Python. 5. blockchain stack is JavaScript.
learning C++, Python, JavaScript, and whitepaper of bitcoin giving you basic requirements for developing a blockchain.
|
|
|
|
cryptoclock-ro
Newbie
Offline
Activity: 42
Merit: 0
|
|
January 30, 2018, 05:25:17 PM |
|
Greetings to everyone! There is a pretty new anonymous cryptocoin which has a huge potential and is currently at a low price. Is called BitcoinZ and is inspired from ZCash. Here is a video about it and an interactive explanation of the zkSNARKS algorithm: https://youtu.be/3hVG888tOpYIf you have some free time, please check it out. Have a nice day!
|
|
|
|
|
|