I am attempting to create a Forknote, but keep running into Errors. So at first I did not realize that the Blockchain and Seednode tutorials existed, as I started with the Cryptonote guides, then started using the Forknote Generator, but now I have found those guides.
I used this as the main guide
https://cryptonotestarter.org/inner.htmlI used this to start the Compiling, but could not get the Coin to compile, and had to start creating swap space and everything.
https://cryptonotestarter.org/kb/build-environment-setup.htmlThen I found the generator, which made the Forknote Create page make a lot more sense.
http://forknote.net/create/https://github.com/forknote/cryptonote-generatorI used the Generator about 20 times, and created coins that would just sit looking for peers for eternity, before I realized these guides existed
http://forknote.net/guides/setup-private-blockchain/http://forknote.net/guides/starting-seed-node/And apparently from what I can find, Ubuntu does not use Upstart anymore, but I followed a guide to install upstart, and it didn't change anything.
Here is my Config file (at this point this is kind of just a test coin, this is not the name of the coin I planned on launching, so if someone here uses this config file to make a coin for people here, I will still share it, and that is fine. I just want to know how to make a Config file that looks like this, work properly as a coin that can then go through the GUI Wallet Guide on the Cryptonote Foundation website.
{
"base_coin": {
"name": "bytecoin",
"git": "https://github.com/amjuarez/bytecoin.git"
},
"core": {
"SEED_NODES": [
"165.227.186.14:39132",
"165.227.211.241:39132"
],
"EMISSION_SPEED_FACTOR": 18,
"DIFFICULTY_TARGET": 600,
"CRYPTONOTE_DISPLAY_DECIMAL_POINT": 12,
"MONEY_SUPPLY": "18446744073709551615",
"GENESIS_BLOCK_REWARD": "0",
"DEFAULT_DUST_THRESHOLD": 1000000,
"MINIMUM_FEE": 1000000,
"CRYPTONOTE_MINED_MONEY_UNLOCK_WINDOW": 2,
"CRYPTONOTE_BLOCK_GRANTED_FULL_REWARD_ZONE": 100000,
"MAX_TRANSACTION_SIZE_LIMIT": 100000,
"CRYPTONOTE_PUBLIC_ADDRESS_BASE58_PREFIX": 86,
"DIFFICULTY_CUT_V1": 60,
"DIFFICULTY_CUT_V2": 60,
"DIFFICULTY_CUT": 0,
"DIFFICULTY_LAG_V1": 15,
"DIFFICULTY_LAG_V2": 15,
"DIFFICULTY_LAG": 0,
"DIFFICULTY_WINDOW_V1": 144,
"DIFFICULTY_WINDOW_V2": 144,
"DIFFICULTY_WINDOW": 17,
"ZAWY_DIFFICULTY_V3": 1,
"ZAWY_DIFFICULTY_DIFFICULTY_BLOCK_VERSION": 3,
"P2P_DEFAULT_PORT": 39132,
"RPC_DEFAULT_PORT": 39133,
"BYTECOIN_NETWORK": "1d9a7ba6-3f3f-ada6-779a-7495a8ad87bf",
"CRYPTONOTE_NAME": "Plata",
"DAEMON_NAME": "Platad",
"GENESIS_COINBASE_TX_HEX": "010a01ff0001ffffffffffff0f029b2e4c0281c0b02e7c53291a94d1d0cbff8883f8024f5142ee494ffbbd0880712101a054a9eebc4dda548c3da61cb25de8bfd7f8e8e75e53413352b000bb6c17429a",
"CHECKPOINTS": "",
"MAX_BLOCK_SIZE_INITIAL": 100000
},
"extensions": [
"core/bytecoin.json",
"print-genesis-tx.json"
]
}