Bitcoin Forum
August 01, 2024, 02:46:19 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 [3] 4 »
41  Alternate cryptocurrencies / Altcoin Discussion / Re: back to creating new alt coin on: December 27, 2021, 12:05:36 AM
Building genesis in linux right? excuse me for asking maybe stupid things, between language and that I am a bit rusted..
You can either build it in linux or windows. May I assume you're a Windows user? Just install gcc and run gcc genesis.c -o genesis.exe

I might start all over with your tutorial, since i worked on bitcoin 2.1 and now is 22.00
You mean 0.21, right?

I usually use Windows (have windows virtualization for ubuntu) and i have workd even on backtrack distro old days

Yes, well I mean 21.0 after 22.0 update
42  Alternate cryptocurrencies / Altcoin Discussion / Re: back to creating new alt coin on: December 24, 2021, 09:57:06 PM
Alright, so here's what you're going to do. Go on genesisgen on github, download genesis.c and build it. Once you have the executable, run name.exe <pubkey> <timestamp> <nBits>.

In <pubkey> you should add your public key in uncompressed format. In <timestamp> your message. In <nBits> the target. Leave it on 486604799 (1d00ffff) which is the lowest you can have with a difficulty of 1.

Once you mine the genesis block, the program will return you the coinbase script, the scriptPubKey, the merkle hash, the byteswapped merkle hash, the unix time, the nonce and finally the genesis block's hash.

1. Change the genesisOutputScript to your scriptPubKey from #L54.
2. Change genesis.hashMerkleRoot to the byteswapped merkle hash in #L114.
3. Change consensus.hashGenesisBlock to your block's hash in #L113.
4. Change the first two values from the CreateGenesisBlock function to the unix time and nonce respectively in #L111.
5. Build Bitcoin Core.

I've made a tutorial here: How to create your own altcoin (v0.20.1). It should be the same for the latest version of Bitcoin Core.

Hi! Thanks for your time in advace

Building genesis in linux right? excuse me for asking maybe stupid things, between language and that I am a bit rusted..

I might start all over with your tutorial, since i worked on bitcoin 2.1 and now is 22.00

Ill keep informed in this post hows going

Thanks again!
43  Alternate cryptocurrencies / Altcoin Discussion / back to creating new alt coin on: December 24, 2021, 05:53:57 PM
Hello there, I am back to the forum and I would like to achieve creating a coin, maybe based on bitcoin (now ver 22.0) or any other plataform

In the past I tried to make it based on 21.0 and stucked on the creation of the genesis block
(some of the posts where I asked help)
https://bitcointalk.org/index.php?topic=5319944.20
https://bitcointalk.org/index.php?topic=5320062.msg56435394#msg56435394

anyways this are not important

Anyone could help me to achieve creating a coin by myself? Or does anywhere were i can found a updated tutorial for it?
(I used linux to reach genesis block)

Thanks a lot, have a nice day!
44  Economy / Digital goods / Re: Domains for selling, check out! (BitCoinBased) on: November 07, 2021, 04:04:16 PM
hello there, im back, still selling this domains

cheers!
45  Local / Mercadillo / Re: vendo dominios de bitcoin on: May 12, 2021, 08:06:55 AM
Precio y con escrow?

Hola!, los he puesto en dan.com, cada uno a 5000, pero se aceptan ofertas incluso por todas

escrow ok sin problema

si eres de españa incluso en persona podemos vernos y hacerlo

atento a tus comentarios, te escribo por privado tambien

saludos
46  Alternate cryptocurrencies / Altcoin Discussion / Re: questions developing a coin // topic for making questions from me to comunity on: March 18, 2021, 04:53:06 PM
after some days off due to focusing on RL, im back asking for help again

thanks!
47  Alternate cryptocurrencies / Altcoin Discussion / Re: questions developing a coin // topic for making questions from me to comunity on: March 11, 2021, 05:11:17 PM
bumping the wave! still learning and help needed Cheesy
48  Local / Mercadillo / Re: vendo dominios de bitcoin on: March 10, 2021, 08:20:07 PM
siguen en venta!
49  Alternate cryptocurrencies / Altcoin Discussion / Re: coin cloning guide on: March 08, 2021, 05:34:07 PM
bump for help?
50  Alternate cryptocurrencies / Altcoin Discussion / Re: questions developing a coin // topic for making questions from me to comunity on: March 08, 2021, 10:49:42 AM
Installing package.json is kinda simple though. When you have enough time, try to give a read of what package.json does in : NPM Docs. You can install package.json by typing this command in terminal :

Code:
npm init -y 

This should probably create the package.json file for you in your directory and then try the procedure which I mentioned in post #16 Based on my previous experience on this altcoin creation and stack overflow answers, I believe you should be running an older version of Node.js but I am not really sure though!

Some important links which helped me during the npm install process :

1. npm can't find package.json
2. npm WARN enoent ENOENT: no such file or directory, open 'C:\Users\Nuwanst\package.json'

its amazin that json page, i assumed that as much as simpler better, so i made next steps:

1- deleted package-lock.json and node_modules

2- step by step on terminal:
Code:
npm cache clear --force
npm install
npm init -y

giving out:
Code:
root@ubuntu:/home/asus/XxxxxCoin# npm init -y 

Wrote to /home/asus/XxxxxCoin/package.json:

{
  "name": "XxxxxCoin",
  "version": "1.0.0",
  "description": "XxxxxCoinCore integration/staging tree =====================================",
  "main": "index.js",
  "directories": {
    "doc": "doc",
    "test": "test"
  },
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/xxxxxxxxxxx/XxxxxCoin.git"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/xxxxxxxxx/XxxxxCoin/issues"
  },
  "homepage": "https://github.com/xxxxxxxx/XxxxxCoin#readme"
}

once done, NANO the package.json to edit some points such as keywords trying to add contact, author, etc.
****as it is unlimited the aditions you can go, I left it as much as simple with no aditions to the file so it will be easy to parse and close

but then, when I go for
Code:
npm init -y 

it makes this error, wich even researching on the web i cannot understand for now:

Code:
oot@ubuntu:/home/asus/XxxxxCoin# npm install
npm ERR! code EJSONPARSE
npm ERR! file /home/asus/XxxxxCoin/package.json
npm ERR! JSON.parse Failed to parse json
npm ERR! JSON.parse Unexpected string in JSON at position 651 while parsing '{
npm ERR! JSON.parse   "name": "XxxxxCoin",
npm ERR! JSON.parse   "version": "'
npm ERR! JSON.parse Failed to parse package.json data.
npm ERR! JSON.parse package.json must be actual JSON, not just JavaScript.

npm ERR! A complete log of this run can be found in:
npm ERR!     /root/.npm/_logs/2021-03-08T10_23_37_464Z-debug.log

errors i found:
- parsing
- filling up name and version?Huh already is done in the file.... (¿?¿?¿?)
- changing to JSON file and not java

still researching this problems to try to solve them

the incredible thing, is that once all this fails, if i execute:
Code:
root@ubuntu:/home/asus/XxxxxCoin# npm install
npm notice created a lockfile as package-lock.json. You should commit this file.
up to date in 0.279s

and it works...

I might be wrong from my point of view?¿




ps, my package.json used as testing:
Code:
{
  "name": "XxxxxCoin",
  "version": "1.0.0",
  "description": "XxxxxCoinCore integration/staging tree =====================================",
  "main": "index.js",
  "directories": {
    "doc": "doc",
    "test": "test"
  },
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/zzzzzzzz/XxxxxCoin.git"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/zzzzzzzz/XxxxxCoin/issues"
  },
  "homepage": "https://github.com/zzzzzzzz/XxxxxCoin#readme"
}
51  Alternate cryptocurrencies / Altcoin Discussion / Re: questions developing a coin // topic for making questions from me to comunity on: March 08, 2021, 06:44:07 AM
Hey mironkraft, I didn't notice the bump and hence forgot to post an update regarding the above post.

Checkpoints were an important part of the core software back in the early days but they have become far less important to reduce the power of developers on the bitcoin network. For instance, checkpoints will consist of data of the blocks up until which the transactions are valid and you cannot modify the transactions before the specific block through a forking.

I think you got passed through that and the next lies is the creation of genesis block and adding the block hash to the client. I think I have found a solution for your above mentioned issue. All you need to do is that there should be 1 file and a folder created during the npm install process. So you need to delete the file "package-lock.json" and the folder "node_modules" and then delete the caches using this command written in terminal

Code:
npm cache clear --force
npm install

This is one among the very common errors and most of the time this solution worked for me while practicing years ago. Hopefully this should work for you too. But before this, try running npm start using sudo command.

Thanks Heis!, already cleared and deleted both files from my Coin directory

after clearing cache, and executing commands on the main directory of the coin, i found this; (comments below)

Code:
root@ubuntu:/home/asus/XxxxxCoin# npm cache clear --force

npm WARN using --force I sure hope you know what you are doing.
root@ubuntu:/home/asus/XxxxxCoin#
root@ubuntu:/home/asus/XxxxxCoin# npm install

npm WARN saveError ENOENT: no such file or directory, open '/home/asus/XxxxxCoin/package.json'
npm notice created a lockfile as package-lock.json. You should commit this file.
npm WARN enoent ENOENT: no such file or directory, open '/home/asus/XxxxxCoin/package.json'
npm WARN XxxxxCoin No description
npm WARN XxxxxCoin No repository field.
npm WARN XxxxxCoin No README data
npm WARN XxxxxCoin No license field.

up to date in 0.282s

at my understandings, there is no package.json file, wich i dont know how to create or i missunderstand where in the tuto or process to create
since there is only this package at an install of the genesis-block inside of the main coin folder, /XxxxxCoin/genesis-block
(installed from:
Code:
git clone https://github.com/nasa8x/node-genesis-block.git genesis-block
)

Myabe I am wrong, and I should do npm clear cache and install on the genesis-block directory and not in main coin directory

what are your thoughts?


thnks in advance!
52  Alternate cryptocurrencies / Altcoin Discussion / Re: coin cloning guide on: March 04, 2021, 05:45:46 AM
hi hi hi! anyone helps?!  Shocked

thanks!
53  Alternate cryptocurrencies / Altcoin Discussion / Re: questions developing a coin // topic for making questions from me to comunity on: March 02, 2021, 09:18:16 PM
bump!
54  Alternate cryptocurrencies / Altcoin Discussion / Re: questions developing a coin // topic for making questions from me to comunity on: March 01, 2021, 09:23:46 PM
Hi there again,

So, once I have done the checkpoint data as: https://wtools.io/paste-code/b3X1
Please check lines at chainparams.cpp; if deleting lines of checkpointData = { as it says in the tutorial (https://medium.com/@jordan.baczuk/how-to-fork-bitcoin-part-2-59b9eddb49a4) it is ok


Code:
// Mainnet: Line 104
// The best chain should have at least this much work.
consensus.nMinimumChainWork = consensus.powLimit;
// By default assume that the signatures in ancestors of this block are valid.
consensus.defaultAssumeValid = uint256();
// ...
// Line 154
checkpointData = {
    {
    }
};
chainTxData = ChainTxData{
    // Data from rpc: getchaintxstats 4096 0000000000000000002e63058c023a9a1de233554f28c7b21380b6c9003f36a8
    /* nTime    */ 0,//1532884444,
    /* nTxCount */ 0,//331282217,
    /* dTxRate  */ 0,//2.4
};
// Testnet: Line 205
// The best chain should have at least this much work.
consensus.nMinimumChainWork = consensus.powLimit;
// By default assume that the signatures in ancestors of this block are valid.
consensus.defaultAssumeValid = uint256();
/...
// Line 246
checkpointData = {
    {
    }
};
chainTxData = ChainTxData{
    // Data from rpc: getchaintxstats 4096 0000000000000037a8cd3e06cd5edbfe9dd1dbcc5dacab279376ef7cfc2b4c75
    /* nTime    */ 0,//1531929919,
    /* nTxCount */ 0,//19438708,
    /* dTxRate  */ 0,//0.626
};



As I assumed is ok, i continue with the proyect:

Already I think I found the method for genesys block in core 0.21:

1- downloaded: https://github.com/nasa8x/node-genesis-block
2- installed it in: XXXXCoin directory (https://pasteboard.co/JQEpO9n.png)
3- applied next code (with error):

Code:
root@ubuntu:/home/asus/XxxxCoin# git clone https://github.com/nasa8x/node-genesis-block.git genesis-block
Cloning into 'genesis-block'...
remote: Enumerating objects: 8, done.
remote: Counting objects: 100% (8/8), done.
remote: Compressing objects: 100% (8/8), done.
remote: Total 29 (delta 0), reused 3 (delta 0), pack-reused 21
Unpacking objects: 100% (29/29), 18.92 KiB | 289.00 KiB/s, done.
root@ubuntu:/home/asus/XxxxCoin# cd genesis-block
root@ubuntu:/home/asus/XxxxCoin/genesis-block# npm install

> multi-hashing@git+https://github.com/nasa8x/node-multi-hashing.git#25517b7c7896c9c2b5e342a4e0c835adb0b11951 install /home/asus/XxxxCoin/genesis-block/node_modules/multi-hashing
> node-gyp configure build

gyp ERR! configure error
gyp ERR! stack Error: EACCES: permission denied, mkdir '/home/asus/XxxxCoin/genesis-block/node_modules/multi-hashing/build'
gyp ERR! System Linux 5.8.0-43-generic
gyp ERR! command "/usr/bin/node" "/usr/bin/node-gyp" "configure" "build"
gyp ERR! cwd /home/asus/XxxxCoin/genesis-block/node_modules/multi-hashing
gyp ERR! node -v v10.19.0
gyp ERR! node-gyp -v v6.1.0
gyp ERR! not ok
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! multi-hashing@git+https://github.com/nasa8x/node-multi-hashing.git#25517b7c7896c9c2b5e342a4e0c835adb0b11951 install: `node-gyp configure build`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the multi-hashing@git+https://github.com/nasa8x/node-multi-hashing.git#25517b7c7896c9c2b5e342a4e0c835adb0b11951 install script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.

npm ERR! A complete log of this run can be found in:
npm ERR!     /root/.npm/_logs/2021-03-01T21_03_44_626Z-debug.log
root@ubuntu:/home/asus/XxxxCoin/genesis-block# python gen.py -a X11 -t 1517542208 -z "Semper Fidelis to your happiness - 08/Mar/2020." -p "04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5f"
python: can't open file 'gen.py': [Errno 2] No such file or directory
root@ubuntu:/home/asus/XxxxCoin/genesis-block#


I am trying to understand what I did wrong or if after many hours reading and trying to comprehend if i failed again xD

Thanks for your time, keep posting if I advance something with core 0.21 as newbie
55  Alternate cryptocurrencies / Altcoin Discussion / Re: coin cloning guide on: March 01, 2021, 09:38:29 AM


3. Download and Compile QT.
Download and uncompress http://download.qt-project.org/official_releases/qt/4.8/4.8.6/qt-everywhere-opensource-src-4.8.6.zip to C:\Qt\4.8.6. Once again check it resides in C:\Qt\4.8.6 not C:\Qt\4.8.6\4.8.6. Due to a bug in 4.8.6 you will need to apply the patch available here. For those who can't find or work it out, you need to change the following lines in C:\Qt\4.8.6\tools\configure\configureapp.cpp or download the patched file here and replace it in C:\Qt\4.8.6\tools\configure\configureapp.cpp
Code:
2180  |  -  const QString mingwPath = dictionary["QMAKESPEC"].endsWith("-g++") ?
2180  |  +  const QString mingwPath = dictionary["QMAKESPEC"].contains("-g++") ?
2252  |   -  if (dictionary["QMAKESPEC"].endsWith("-g++")+
2252  |  +  if (dictionary["QMAKESPEC"].contains("-g++")+

From your Windows command prompt run
Code:
cd C:\Qt\4.8.6
configure -release -opensource -confirm-license -static -no-sql-sqlite -no-qt3support -no-opengl -qt-zlib -no-gif -qt-libpng -qt-libmng -no-libtiff -qt-libjpeg -no-dsp -no-vcproj -no-openssl -no-dbus -no-phonon -no-phonon-backend -no-multimedia -no-audio-backend -no-webkit -no-script -no-scripttools -no-declarative -no-declarative-debug -qt-style-windows -qt-style-windowsxp -qt-style-windowsvista -no-style-plastique -no-style-cleanlooks -no-style-motif -no-style-cde -nomake demos -nomake examples
mingw32-make



hello, thanks for tutorial, im working on and im facing the next problem


Code:
C:\qt\4.8.6>configure -release -opensource -confirm-license -static -no-sql-sqlite -no-qt3support -no-opengl -qt-zlib -no-gif -qt-libpng -qt-libmng -no-libtiff -qt-libjpeg -no-dsp -no-vcproj -no-openssl -no-dbus -no-phonon -no-phonon-backend -no-multimedia -no-audio-backend -no-webkit -no-script -no-scripttools -no-declarative -no-declarative-debug -qt-style-windows -qt-style-windowsxp -qt-style-windowsvista -no-style-plastique -no-style-cleanlooks -no-style-motif -no-style-cde -nomake demos -nomake examples

This is the Qt for Windows Open Source Edition.

You have already accepted the terms of the license.

Couldn't update default mkspec! Are files in C:/qt/4.8.6/mkspecs/default read-only?

C:\qt\4.8.6>

how I can fix? (ps: already executed cmd with admin privileges)

also, is there any update for this tutorial?

thanks, kind regards
56  Alternate cryptocurrencies / Altcoin Discussion / Re: questions developing a coin // topic for making questions from me to comunity on: March 01, 2021, 06:09:01 AM
My main reason is just as challenge, for myself.
I will make an altcoin.**
Other projects? Nope, just this one, since I think is the first part for understanding to future projects, and not only for bitcoin project, for mainly every type of project in my life
If you are willing to create an altcoin just for experimental and fun purposes, I would suggest you should check out launching an ERC20 token in Ropsten Test Network first and experiment them. I have created tons of altcoins in Ethereum Test Network for learning purposes and some of the logos and names were funny enough to call them as a shitcoin  Tongue Ethereum helps you to launch a shitcoin so easily out of thin air unlike forking and changing the bitcoin code is little difficult while comparing to the creation of ERC20 token. These are my thoughts on creation of altcoin alias shitcoin  Grin


my step by step challenge to create the altcoin is:
craeting, understanding, mining first block, wallet etc.
creating website (already got it) inviting people to mine it and enjoy it
as final step, trying to enter to a exchange with the coin (wich will be fucking hard i guess, but i will learn the requirements for it)*
*not impossible since i know from near someone who has a little exchange or kind of that

that is my project, i even invited my baes sisters to this learning projject both, since she knows about coding and else and works with
If your sister is good with coding and a bit of cryptography, both of you can come up with a unique idea of scalability coin based on bitcoin? Here is an additional guide I found for you which could be of some help : coin cloning guide

There are tons and tons of bitcoin clones but most of them failed to take off or failed in the initial months. The reason for the success of litecoin (another bitcoin clone) was that it was launched during the early days of bitcoin and there were very few altcoins back then. Also litecoin had something unique : scalability while comparing to bitcoin. Hence there was a popular quote: If Bitcoin is the Gold Standard of Cryptocurrency, Litecoin would be Silver Standard!

Inviting people to mine it? Good one, if you have successfully launched your coin feel free to send a link to me so that I can see how mining new coins would be  Smiley only list your coin in an exchange if you feel it has a good use case otherwise take your time and build the tech.

P.S Good Luck on your coin cloning project  Smiley

Thanks a lot Heis! lets see if I reach somewhere, keep you informed

57  Alternate cryptocurrencies / Altcoin Discussion / Re: questions developing a coin // topic for making questions from me to comunity on: February 28, 2021, 09:37:42 AM
What's your goal behind forking and learning? Are you going to create an altcoin for experimental and learning purposes? Are you going to contribute to Bitcoin Core? or are you going to work on some other different project?

Forking and learning 0.21.0 is certainly a near to impossible task for a newcomer to bitcoin. Bitcoin itself has changed so much more technical and nowadays new developers who are onboarding to Bitcoin Core just learn a certain specific functionality and contribute to them! For instance, if they know well about the P2P functionality they will just work on improvising them but Senior Core developers like sipa/macrofalke/gmaxwell/laanwj mostly work on the whole structure AFAIK.

And as I am trying to understand what happened and how to keep forward im stuck at Genesis block
For this you need to remove the merkle root and genesis block hashes and replace them with your own hash so that your coin will start mining your new coins otherwise the whole purpose of bitcoin forking will fail. The Merkle Root and Genesis Block hashes were once present in main.cpp but in 2016 it was renamed to validation.cpp. So there were lots of changes and if you are willing to say your goal I would be happy to help you and guide you along that way.

BTW if you are willing to contribute to Bitcoin Core and have no idea on Bitcoin, I would suggest you to take up this free youtube course on cryptography : Introduction to Cryptography by Christof Paar and then move on to reading Mastering Bitcoin book (free on github). If you know a bit of python, try solving programming questions in Programming Bitcoin (free on github) When you have done all these, you would be getting a way to start your career. But remember the path will be extremely daunting and you should have the eagerness inside you!

Hi there Heisenberg, thanks again for your time

My main reason is just as challenge, for myself.
I will make an altcoin.**
I am not thinking I will have enought "something" to contribute to the core of bitcoin
Other projects? Nope, just this one, since I think is the first part for understanding to future projects, and not only for bitcoin project, for mainly every type of project in my life

Coding and developing is not my main way of life, im on logistics industries and nothing related to this
But i can say that near 2010-2014 I was on WiFi comunities, developing and creating ways to "crack" wifis, for nearly 4 years, contribuiting by creating usable dictionaries and tutorials for cracking even wpa2 throught rainbow tables, using cowpatty, aircrack, modem jtag for extracting info, etc. All that died on 2015 since I left everything to search a "future" on normal jobs and studies.

I will check all info you have gaven to me and try to understand more

Thanks for your time again



edit**
my step by step challenge to create the altcoin is:
craeting, understanding, mining first block, wallet etc.
creating website (already got it) inviting people to mine it and enjoy it
as final step, trying to enter to a exchange with the coin (wich will be fucking hard i guess, but i will learn the requirements for it)*
*not impossible since i know from near someone who has a little exchange or kind of that

that is my project, i even invited my baes sisters to this learning projject both, since she knows about coding and else and works with
i would like not do it alone, so i will learn also to team up in this kind of projects

58  Alternate cryptocurrencies / Altcoin Discussion / Re: questions developing a coin // topic for making questions from me to comunity on: February 26, 2021, 06:17:49 AM
so the best thing i can do is making default values?
That's totally dependent on how you design your clone coin. For example in Litecoin, Charlie decided to lower the confirmation time to 2.5 minutes and the difficulty adjustment by 4 days i.e after 2016 blocks difficulty adjusts but since 2.5 minutes is taken into consideration, difficulty gets adjusted in 4 days instead of bitcoin's 21 day time frame. But as @baro77 suggested satoshi could have used this 10 minute to prevent a fork or to decentralize the system more.

hi there, another question:

while forking, im facing this :
Which version of Bitcoin Core did you fork? New versions are highly complex for a new person to read and understand. If you want to understand the underlying technology use some 2010-2013 versions or more likely something before segwit activation. There are vast improvements in the network since 2011 (after satoshi left) and the network and the code itself became more complicated for new people to understand.

Hi, first of all... many many thanks on answering and taking time to it,
second, your answer gave me the clue why i was thinking im not doing fine...
and yes, I am following old info and tutorial to try to assembly as you said

basicly, im using this tutorial: https://medium.com/@jordan.baczuk/how-to-fork-bitcoin-part-2-59b9eddb49a4

but at points:
Activate BIPs
Checkpoint data
Genesis block

it starts to show up all new updates and i guess changed on the code, since most of them as tutorial says cannot be possible to make
because files are not in the same places, coding has changed, etc

I´ve forked 0.21 btc, working on linux ubuntu 20.20, so I guess im working with outdated information...
and yes is more dificult as you say then

And as I am trying to understand what happened and how to keep forward im stuck at Genesis block, they coding or how it is called it changed
and i cannot understand even searching, reading, trying to understand whats going on and how step on

I assumen that newbies like me mostly they pay on walletgenerator to get theyr coins, but this is a challenge for me and i dont want the easy way

I assume i gotta search more on the net about how to fork 0.21 and learn more,

If you have any recomendations appreciate it

thanks for your time, kind regards


59  Alternate cryptocurrencies / Altcoin Discussion / Searching for a updated guide for altcoin creation // forking bitcoin on: February 25, 2021, 05:58:38 PM
hello everyone, im searching a full guide for creating an altcoin from 0 with linux

actually im using olv 2018 guides and my little knowledge to learn and develop, but I am not able to find any tutorial for it

can you help me please?

thanks a lot
60  Alternate cryptocurrencies / Altcoin Discussion / help with checkpoint data and genesis block // creating altcoin on: February 25, 2021, 12:57:14 PM
hi there guys, im newbie and im learning/creating altcoin, for now i am following this tutorial:

https://medium.com/@jordan.baczuk/how-to-fork-bitcoin-part-2-59b9eddb49a4

1 - right now, im stuck at Checkpoint data, where i dont understand exactly what i have to do:

// Line 246
checkpointData = {
    {
    }
};




2 - second, i dont understand how to generate the Genesis Block, nothing at all, im for now stuck since it is not clear at all what i have to do exactly...

any help will be apreciated
Pages: « 1 2 [3] 4 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!