Bitcoin Forum
June 17, 2024, 09:25:10 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 [2] 3 »  All
  Print  
Author Topic: Build your own blockchain  (Read 1008 times)
shahzadafzal
Copper Member
Legendary
*
Offline Offline

Activity: 1582
Merit: 2961



View Profile
April 01, 2018, 05:39:28 AM
Merited by suchmoon (2), Sellingaccs (1)
 #21

Granted, i did search on google and found a fantastic tutorial on Hackernoon by Daniel van Flymen, so full credit to him and the awesome Hackernoon website.
I will recommend another also "The authoritative guide to blockchain development" by Haseeb Qureshi. This is also very detailed and informative. This is must read for any blockchain enthusiast.
https://medium.freecodecamp.org/the-authoritative-guide-to-blockchain-development-855ab65b58bc


345. Probably we better go with a fork?
It will take your comment as a sarcasm Smiley

Building a blockchain does not really mean creating a new digital currency. It distributed ledger or no centralized storage practically there could be thousands of scenarios where Blockchain could be successful. Big firms like PwC, Deloitte, and KPMG are all testing private blockchains.

So learning or developing a blockchain is not like creating a altcoin,  may be it help you find a new career. Possibilities in blockchian are endless.

█▀▀▀











█▄▄▄
▀▀▀▀▀▀▀▀▀▀▀
e
▄▄▄▄▄▄▄▄▄▄▄
█████████████
████████████▄███
██▐███████▄█████▀
█████████▄████▀
███▐████▄███▀
████▐██████▀
█████▀█████
███████████▄
████████████▄
██▄█████▀█████▄
▄█████████▀█████▀
███████████▀██▀
████▀█████████
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
c.h.
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄
▀▀▀█











▄▄▄█
▄██████▄▄▄
█████████████▄▄
███████████████
███████████████
███████████████
███████████████
███░░█████████
███▌▐█████████
█████████████
███████████▀
██████████▀
████████▀
▀██▀▀
innass
Newbie
*
Offline Offline

Activity: 9
Merit: 0


View Profile
April 01, 2018, 08:09:16 AM
 #22

How much long does it take to make own blockchain?
 and beginner is also easy to do it?
uartasic (OP)
Full Member
***
Offline Offline

Activity: 177
Merit: 101


View Profile
April 01, 2018, 10:51:38 AM
 #23

Quote
Big firms like PwC, Deloitte, and KPMG are all testing private blockchains.

I know for fact that Deloitte have 2 specialists in Australia for DLT / Blockchain and a dedicated team.

Crypto Vest coin fan \ Alt-Coin Blockchain Assembler \ BTC faithful \ POWR faithful
uartasic (OP)
Full Member
***
Offline Offline

Activity: 177
Merit: 101


View Profile
April 01, 2018, 10:52:59 AM
 #24

How much long does it take to make own blockchain?
 and beginner is also easy to do it?


Please take look at my google drive link and the document within with pictures and step by step.

I am not sure i can make it simpler.

Crypto Vest coin fan \ Alt-Coin Blockchain Assembler \ BTC faithful \ POWR faithful
snuffish1337
Newbie
*
Offline Offline

Activity: 1
Merit: 0


View Profile
April 01, 2018, 04:53:00 PM
 #25

I actually created my own very basic blockchain tonight.. took me like 20 hours straight to get the foundation ready. I wrote it from scratch in Java, a PoW kind of blockchain.

I gotta say, your brain really gonna hurt when it comes to the networking (peer-to-peer) part.. that was a pain in the ass! That took like 70% of all my time to figure out. Now my blockchain can send coins, mine blocks, reset/resync the whole blockchain from another node-peer if it's invalid/broken etc.

But there's still ALOT left todo, believe me. I haven't figured out how to fix the Difficulty alghoritm yet.. I just made it fixed at Difficulty 4 at the moment.

I just did it for education purposes, I have another project in mind that actually don't involve cryptocurrency.. but it needs a blockchain to run on. So I started off small to get a grasp on how a blockchain actually work from the ground up. Im just amazed how the ethereum crew manage to do what they do.. Shocked
Anti-Cen
Member
**
Offline Offline

Activity: 210
Merit: 26

High fees = low BTC price


View Profile
April 01, 2018, 07:59:23 PM
 #26

How long does it take to make own blockchain?? and beginner is also easy to do it?

I could knock up a block-chain from scratch in under three hours and if you look on Youtube then someone gives an example of the
stub code that is only about 50 lines long.

Now to turn that into my "Own" coin, deploy and test on a network it would take me about .........................
......................... five years at a guess after nicking part of the encryption code and a few other bits.

Running a macro inside Microsoft's Excel does not mean you programmed the darn thing, your just a user, not
even a script kiddie writing VBA but if your just after a alt-coin then best check out ETH and pay them gas to host it for you.


Mining is CPU-wars and Intel, AMD like it nearly as much as big oil likes miners wasting electricity. Is this what mankind has come too.
Anti-Cen
Member
**
Offline Offline

Activity: 210
Merit: 26

High fees = low BTC price


View Profile
April 01, 2018, 08:22:57 PM
 #27

I actually created my own very basic blockchain tonight.. took me like 20 hours straight to get the foundation ready. I wrote it from scratch in Java, a PoW kind of blockchain.

How far did you go past adding hash codes to a linked list ?

Did you turn the transactions into skinned out objects with methods or did you simply store LIST<T> or string arrays to represent the transactions
and did you get the list to persist itself to file storage ?

Running SHA256 to represent PoW and double hashing the hash-codes as taken from Bit-Torrent should not had taken too long so did you
have time to even start the network layer because if you did then you are faster than me.

Would you admit that it would take you years to turn this into a actual working product ready for testing ?

Mining is CPU-wars and Intel, AMD like it nearly as much as big oil likes miners wasting electricity. Is this what mankind has come too.
Bratecon
Newbie
*
Offline Offline

Activity: 100
Merit: 0


View Profile
April 02, 2018, 05:36:34 AM
 #28

And for those that prefer Golang, here is a more complete guide that'll help you build your own blockchain from scratch. IMO It is really a must read as it covers deeper things then other guides.

Nice tutorial and Go is much easier language than C++ too.

uartasic (OP)
Full Member
***
Offline Offline

Activity: 177
Merit: 101


View Profile
April 02, 2018, 10:35:41 AM
 #29

How long does it take to make own blockchain?? and beginner is also easy to do it?

if you look on Youtube then someone gives an example of the
stub code that is only about 50 lines long.





I perused all those videos too and what really disappoints me is that alot of those guides work on assumed knowledge.

They really arent novice friendly.

Crypto Vest coin fan \ Alt-Coin Blockchain Assembler \ BTC faithful \ POWR faithful
Anti-Cen
Member
**
Offline Offline

Activity: 210
Merit: 26

High fees = low BTC price


View Profile
April 05, 2018, 11:01:19 PM
 #30

I perused all those videos too and what really disappoints me is that alot of those guides work on assumed knowledge.

They really arent novice friendly.

But it's like wanting to build a battle ship before you have even built a boat and takes a highly skilled team years to complete
and refine something that they can take it to market and today most of them fail so take it as mission impossible and people
should not be leading you on.

 

Mining is CPU-wars and Intel, AMD like it nearly as much as big oil likes miners wasting electricity. Is this what mankind has come too.
tranphilip
Newbie
*
Offline Offline

Activity: 42
Merit: 0


View Profile
April 06, 2018, 08:48:09 AM
 #31

Creating your own blockchain is too difficult? For beginners it's easier to do that?
BlockchainLD
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
April 07, 2018, 05:33:11 PM
 #32

Thank You!
enter`name`here
Jr. Member
*
Offline Offline

Activity: 61
Merit: 1


View Profile
April 07, 2018, 08:40:21 PM
 #33

I have recently been going through a series of tutorials on naive chain and naivecoin. So far has been a very enjoyable read.
paul gatt
Hero Member
*****
Offline Offline

Activity: 896
Merit: 500


View Profile
April 09, 2018, 09:47:10 AM
 #34

This is also a good idea. Build your own blockchain system. We need to save a lot of information and important data. How to build this system? You are not good at it if you buy the money is too large not necessary to spend money to install the blockchain system.
kimmy724
Member
**
Offline Offline

Activity: 143
Merit: 11


View Profile
April 10, 2018, 02:30:42 AM
 #35

There is one available blockchain suite that can do all for you... privacy, explorer, coin mixer and atomic swap . Komodo is offering a white label blockchain development service.

PerfectClam
Newbie
*
Offline Offline

Activity: 21
Merit: 0


View Profile
April 10, 2018, 08:34:47 AM
 #36

How long does it take to make own blockchain?? and beginner is also easy to do it?


It will take you a day or two of learning basics and another day or two to prepare node, compile wallet et.c. Depending on your prior knowledge it can take a week or two to pick up requirements. OP and first comment gives great links to start with.

The only question is why would you want it?
jackjackfly
Member
**
Offline Offline

Activity: 322
Merit: 10

To buy or not to buy - that is the question ;)


View Profile
April 10, 2018, 12:22:45 PM
 #37

Is it really possible without a team? As far as I know it can be more than 12 month of development with a budget of at least 1 million, and its payback period will be at about half a year - yeat. Not less

Wanna tame crypto? Join our Cryptotamers community https://t.me/cryptotamers =)
Anti-Cen
Member
**
Offline Offline

Activity: 210
Merit: 26

High fees = low BTC price


View Profile
April 10, 2018, 09:21:26 PM
 #38

Is it really possible without a team? As far as I know it can be more than 12 month of development with a budget of at least 1 million, and its payback period will be at about half a year - yeat. Not less

Yes agree a team for a year to get something that will work in real life on the tinternet but i think some of the posters here are talking more about
knocking up a object that represents a block-chain and testing it via a function call.

Took me a month to come up with a data structure that is used for node discovery that would scale to maybe 1/4bn nodes and not much
more and I am still far from happy with the results but i could have dealt with 50,000 nodes using a XML-Data table is an afternoon

Mining is CPU-wars and Intel, AMD like it nearly as much as big oil likes miners wasting electricity. Is this what mankind has come too.
Nsync
Newbie
*
Offline Offline

Activity: 62
Merit: 0


View Profile
April 11, 2018, 01:52:05 AM
 #39

How much long does it take to make own blockchain?
BardonMe
Newbie
*
Offline Offline

Activity: 38
Merit: 0


View Profile
April 12, 2018, 05:49:28 PM
 #40

How much long does it take to make own blockchain?

It took me a week or two to make a production ready blockchain the first time I tried. However this was not from scratch, I used open source code like most do.
Pages: « 1 [2] 3 »  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!