Pages:
Author

Topic: Blockchain development - page 2. (Read 3001 times)

newbie
Activity: 3
Merit: 0
August 20, 2017, 11:49:49 AM
#6
Most blockchains out there  are forked from existing ones.
newbie
Activity: 1
Merit: 1
August 18, 2017, 12:53:30 AM
#5
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.
newbie
Activity: 23
Merit: 5
August 17, 2017, 01:15:11 PM
#4
What are the basic requirements for developing a blockchain?

Time, Patience, Program language to build the codebases
legendary
Activity: 2097
Merit: 1070
August 14, 2017, 07:11:31 PM
#3
First off, not having to ask that question. You need to know some programming, C++, java, python. Read this https://bitcoin.org/bitcoin.pdf That should be enough to figure it out. Here is another cool article about it for beginners https://medium.com/@lhartikk/a-blockchain-in-200-lines-of-code-963cc1cc0e54

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.
sr. member
Activity: 420
Merit: 250
August 11, 2017, 11:31:48 PM
#2
First off, not having to ask that question. You need to know some programming, C++, java, python. Read this https://bitcoin.org/bitcoin.pdf That should be enough to figure it out. Here is another cool article about it for beginners https://medium.com/@lhartikk/a-blockchain-in-200-lines-of-code-963cc1cc0e54
full member
Activity: 434
Merit: 102
Leading Cryptocurrency and Blockchain Company
August 11, 2017, 11:20:24 PM
#1
What are the basic requirements for developing a blockchain?
Pages:
Jump to: