From 78d0cc2587371431e5ba64032c9dd10cd5b727f3 Mon Sep 17 00:00:00 2001 From: koh-gt <101822992+koh-gt@users.noreply.github.com> Date: Thu, 24 Aug 2023 05:19:37 +0800 Subject: [PATCH 01/16] Update configure.ac --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 4485f16b..e6712694 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ AC_PREREQ([2.69]) define(_CLIENT_VERSION_MAJOR, 3) define(_CLIENT_VERSION_MINOR, 1) -define(_CLIENT_VERSION_REVISION, 2) +define(_CLIENT_VERSION_REVISION, 3) define(_CLIENT_VERSION_BUILD, 0) define(_CLIENT_VERSION_RC, 0) define(_CLIENT_VERSION_IS_RELEASE, true) From a0c75fc70fcaf6ac5184c6f69907f6f3dd199675 Mon Sep 17 00:00:00 2001 From: koh-gt <101822992+koh-gt@users.noreply.github.com> Date: Thu, 24 Aug 2023 05:29:18 +0800 Subject: [PATCH 02/16] Update chainparams.cpp --- src/chainparams.cpp | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/chainparams.cpp b/src/chainparams.cpp index bdabb49f..bb10bfaa 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -99,15 +99,17 @@ class CMainParams : public CChainParams { // Deployment of MWEB (LIP-0002, LIP-0003, and LIP-0004) consensus.vDeployments[Consensus::DEPLOYMENT_MWEB].bit = 4; - consensus.vDeployments[Consensus::DEPLOYMENT_MWEB].nStartHeight = 150000; // + consensus.vDeployments[Consensus::DEPLOYMENT_MWEB].nStartHeight = 150000; // 150120 // MWEB can be put up for consensus voting in later versions when mining infrastructure is ready and compatible. consensus.vDeployments[Consensus::DEPLOYMENT_MWEB].nTimeoutHeight = 99999999; // never* // MWEB will be automatically activated after block 99999999 for now. // The best chain should have at least this much work. - consensus.nMinimumChainWork = uint256S("0x000000000000000000000000000000000000000000000000050c151ee81a40c9"); - // A total of 363688 892397 404361 hashes (363.7 PH) of work as of block 149000. - + consensus.nMinimumChainWork = uint256S("0x00000000000000000000000000000000000000000000000005dad1ae9118c795"); + // A total of 421880 062801 397653 hashes (421.9 PH) of work as of block 151120. MWEB Activation height 150120 + + // consensus.nMinimumChainWork = uint256S("0x00000000000000000000000000000000000000000000000005dad1ae9118c795"); + // A total of 421880 062801 397653 hashes (421.9 PH) of work as of block 151120. MWEB Activation height 150120 // consensus.nMinimumChainWork = uint256S("0x000000000000000000000000000000000000000000000000050c151ee81a40c9"); // A total of 363688 892397 404361 hashes (363.7 PH) of work as of block 149000. // consensus.nMinimumChainWork = uint256S("0x000000000000000000000000000000000000000000000000009cec62dc44b76d"); @@ -120,9 +122,11 @@ class CMainParams : public CChainParams { // A total of 187 976044 125601 hashes (188.0 TH) of work as of block 10000. // By default assume that the signatures in ancestors of this block are valid. - consensus.defaultAssumeValid = uint256S("0xef695bb26b2655308cba06c2dd9b303c833db933d0cd872104f3073e471da2b1"); - // Block 149000 + consensus.defaultAssumeValid = uint256S("0xc09529ad3df32d4c33c3110e10692f973d531085aacdc93f86ad157e5e872ea1"); + // Block 151120 + // consensus.defaultAssumeValid = uint256S("0xc09529ad3df32d4c33c3110e10692f973d531085aacdc93f86ad157e5e872ea1"); + // Block 151120 // consensus.defaultAssumeValid = uint256S("0xef695bb26b2655308cba06c2dd9b303c833db933d0cd872104f3073e471da2b1"); // Block 149000 // consensus.defaultAssumeValid = uint256S("0x022dc4410add84d46359013d45df952493c53343304296a9066fc3df03dc8297"); @@ -162,11 +166,6 @@ class CMainParams : public CChainParams { // CryptoID Chainz explorer vSeeds.emplace_back("46.105.34.58"); // https://btc.cryptoid.info/fec/ - - // Pool seednodes - vSeeds.emplace_back("188.165.227.178"); // spools.online - vSeeds.emplace_back("144.91.107.170"); // coinxpool.com - vSeeds.emplace_back("155.138.247.235"); // miningmypool.com base58Prefixes[PUBKEY_ADDRESS] = std::vector(1,36); base58Prefixes[SCRIPT_ADDRESS] = std::vector(1,5); @@ -200,13 +199,14 @@ class CMainParams : public CChainParams { { 60000, uint256S("0xf38b639a8db731e7dac96eaae8f9ab443eaf85039433197345a72e1961d7f286")}, { 100000, uint256S("0x022dc4410add84d46359013d45df952493c53343304296a9066fc3df03dc8297")}, { 149000, uint256S("0xef695bb26b2655308cba06c2dd9b303c833db933d0cd872104f3073e471da2b1")}, + { 151120, uint256S("0xc09529ad3df32d4c33c3110e10692f973d531085aacdc93f86ad157e5e872ea1")}, } }; chainTxData = ChainTxData{ - /* nTime */ 1687991792, - /* nTxCount */ 162810, - /* dTxRate */ 0.00492770 + /* nTime */ 1692820156, + /* nTxCount */ 166120, + /* dTxRate */ 0.00343088 }; } }; From 8aff4fcad61fb738c34ad11bc266136a5737837c Mon Sep 17 00:00:00 2001 From: koh-gt <101822992+koh-gt@users.noreply.github.com> Date: Sat, 14 Oct 2023 05:22:59 +0800 Subject: [PATCH 03/16] Update init.cpp - Ferritext about docs --- src/init.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src/init.cpp b/src/init.cpp index 697f02b6..28ca39a5 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -601,24 +601,29 @@ std::string LicenseInfo() const std::string URL_SOURCE_CODE = ""; const std::string URL_WEBSITE = ""; const std::string URL_BLOCK_EXPLORER = ""; + const std::string FEXT_URL_WEBSITE = ""; + const std::string FEXT_HELP_URL_WEBSITE = ""; return CopyrightHolders(strprintf(_("Copyright (C) %i-%i").translated, 2022, COPYRIGHT_YEAR) + " ") + strprintf(_("\nCopyright (C) %i-%i The Dash Core developers").translated, 2014, COPYRIGHT_YEAR) + strprintf(_("\nCopyright (C) %i-%i The Dogecoin Core developers").translated, 2013, COPYRIGHT_YEAR) + strprintf(_("\nCopyright (C) %i-%i The Litecoin Core developers").translated, 2011, COPYRIGHT_YEAR) + strprintf(_("\nCopyright (C) %i-%i The Bitcoin Core developers").translated, 2009, COPYRIGHT_YEAR) + - + strprintf(_(" \n\nPlease contribute if you find %s useful. " "Visit %s for further information about the software.").translated, PACKAGE_NAME, URL_WEBSITE) + + strprintf(_(" \n\nFerritext (FEXT) is a native messaging tool built on %s. FEXT is available from %s. " + "Visit %s for further information about the feature.").translated, + PACKAGE_NAME, FEXT_URL_WEBSITE, FEXT_HELP_URL_WEBSITE) + + strprintf(_("\nThe source code is available from %s.").translated, URL_SOURCE_CODE) + strprintf(_("\nThe block explorer is available from %s.").translated, URL_BLOCK_EXPLORER) + - _("\n\nThis is experimental software.").translated + strprintf(_("\nDistributed under the MIT software license, see the accompanying file %s or %s").translated, "COPYING", "") + strprintf(_("\n\nThis product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit %s and cryptographic software written by Eric Young and UPnP software written by Thomas Bernard.").translated, ""); From 48d6bede32a5011e7f6ec05702a9897143f0d91b Mon Sep 17 00:00:00 2001 From: koh-gt <101822992+koh-gt@users.noreply.github.com> Date: Tue, 28 Nov 2023 04:18:09 +0800 Subject: [PATCH 04/16] Update init.cpp --- src/init.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/init.cpp b/src/init.cpp index 28ca39a5..9a53de99 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -599,8 +599,9 @@ void SetupServerArgs(NodeContext& node) std::string LicenseInfo() { const std::string URL_SOURCE_CODE = ""; - const std::string URL_WEBSITE = ""; - const std::string URL_BLOCK_EXPLORER = ""; + const std::string URL_WEBSITE = ""; + const std::string URL_FORUM = ""; + const std::string URL_BLOCK_EXPLORER = ""; const std::string FEXT_URL_WEBSITE = ""; const std::string FEXT_HELP_URL_WEBSITE = ""; @@ -617,6 +618,9 @@ std::string LicenseInfo() strprintf(_(" \n\nFerritext (FEXT) is a native messaging tool built on %s. FEXT is available from %s. " "Visit %s for further information about the feature.").translated, PACKAGE_NAME, FEXT_URL_WEBSITE, FEXT_HELP_URL_WEBSITE) + + + strprintf(_("\nVisit Ferrite Forum at %s for more details.").translated, + URL_FORUM) + strprintf(_("\nThe source code is available from %s.").translated, URL_SOURCE_CODE) + From 06a905d840193807d97498ab1ef7d434e1ca92e0 Mon Sep 17 00:00:00 2001 From: koh-gt <101822992+koh-gt@users.noreply.github.com> Date: Tue, 28 Nov 2023 04:20:18 +0800 Subject: [PATCH 05/16] Update nodes_main.txt --- contrib/seeds/nodes_main.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/seeds/nodes_main.txt b/contrib/seeds/nodes_main.txt index 553540f0..b6b91ba7 100644 --- a/contrib/seeds/nodes_main.txt +++ b/contrib/seeds/nodes_main.txt @@ -26,6 +26,7 @@ 118.189.201.104:9574 118.189.201.104:9588 118.189.201.104:9598 +133.177.197.167:9574 144.91.107.170:55622 154.26.137.167:46284 155.138.247.235:59488 From 27da7ad2168bfb261c6f63574f3975945bb35cad Mon Sep 17 00:00:00 2001 From: koh-gt <101822992+koh-gt@users.noreply.github.com> Date: Tue, 28 Nov 2023 04:23:38 +0800 Subject: [PATCH 06/16] Update chainparams.cpp --- src/chainparams.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/chainparams.cpp b/src/chainparams.cpp index bb10bfaa..0f7e3844 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -159,10 +159,16 @@ class CMainParams : public CChainParams { // Seed servers to connect to other nodes. // Default configuration file contains nodes of popular ferritecoin mining pools. + vSeeds.emplace_back("118.189.201.104"); + vSeeds.emplace_back("38.242.145.73"); + vSeeds.emplace_back("78.220.84.58"); + vSeeds.emplace_back("133.177.197.167"); vSeeds.emplace_back("node1.ferritecoin.org"); // node1.ferritecoin.org vSeeds.emplace_back("node2.ferritecoin.org"); // node2.ferritecoin.org vSeeds.emplace_back("node3.ferritecoin.org"); // node3.ferritecoin.org vSeeds.emplace_back("node4.ferritecoin.org"); // node4.ferritecoin.org + + // CryptoID Chainz explorer vSeeds.emplace_back("46.105.34.58"); // https://btc.cryptoid.info/fec/ From ff20b02fd3f62c2f18fac8913929989555e6b269 Mon Sep 17 00:00:00 2001 From: koh-gt <101822992+koh-gt@users.noreply.github.com> Date: Tue, 28 Nov 2023 04:27:18 +0800 Subject: [PATCH 07/16] Update init.cpp - update default conf file --- src/init.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/init.cpp b/src/init.cpp index 9a53de99..6335e040 100644 --- a/src/init.cpp +++ b/src/init.cpp @@ -1385,6 +1385,7 @@ bool AppInitMain(const util::Ref& context, NodeContext& node, interfaces::BlockA "addnode=node1.ferritecoin.org\n" "addnode=node2.ferritecoin.org\n" "addnode=node3.ferritecoin.org\n" + "addnode=133.177.197.167:9574\n" "addnode=38.242.145.73:21004 # xeggex.com \n" "addnode=118.189.201.104:9574\n" "addnode=118.189.201.104:9588\n" From b829f3d0d78fa0e2f720cd539f0615310d037bc0 Mon Sep 17 00:00:00 2001 From: koh-gt <101822992+koh-gt@users.noreply.github.com> Date: Tue, 28 Nov 2023 04:58:46 +0800 Subject: [PATCH 08/16] Update chainparams.cpp - add checkpoint --- src/chainparams.cpp | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/chainparams.cpp b/src/chainparams.cpp index 0f7e3844..edf17688 100644 --- a/src/chainparams.cpp +++ b/src/chainparams.cpp @@ -105,11 +105,11 @@ class CMainParams : public CChainParams { // MWEB will be automatically activated after block 99999999 for now. // The best chain should have at least this much work. - consensus.nMinimumChainWork = uint256S("0x00000000000000000000000000000000000000000000000005dad1ae9118c795"); - // A total of 421880 062801 397653 hashes (421.9 PH) of work as of block 151120. MWEB Activation height 150120 + consensus.nMinimumChainWork = uint256S("0x000000000000000000000000000000000000000000000000088358036fda6c15"); + // A total of 613430 746037 251093 hashes (613.4 PH) of work as of block 154000. MWEB Activation height 150120 - // consensus.nMinimumChainWork = uint256S("0x00000000000000000000000000000000000000000000000005dad1ae9118c795"); - // A total of 421880 062801 397653 hashes (421.9 PH) of work as of block 151120. MWEB Activation height 150120 + // consensus.nMinimumChainWork = uint256S("0x000000000000000000000000000000000000000000000000088358036fda6c15"); + // A total of 613430 746037 251093 hashes (613.4 PH) of work as of block 154000. MWEB Activation height 150120 // consensus.nMinimumChainWork = uint256S("0x000000000000000000000000000000000000000000000000050c151ee81a40c9"); // A total of 363688 892397 404361 hashes (363.7 PH) of work as of block 149000. // consensus.nMinimumChainWork = uint256S("0x000000000000000000000000000000000000000000000000009cec62dc44b76d"); @@ -122,11 +122,11 @@ class CMainParams : public CChainParams { // A total of 187 976044 125601 hashes (188.0 TH) of work as of block 10000. // By default assume that the signatures in ancestors of this block are valid. - consensus.defaultAssumeValid = uint256S("0xc09529ad3df32d4c33c3110e10692f973d531085aacdc93f86ad157e5e872ea1"); - // Block 151120 + consensus.defaultAssumeValid = uint256S("0xe4925099992f4ca3337c9f85deb52b88da80a6ea40127adf2bc6c2851d5d49b2"); + // Block 154000 - // consensus.defaultAssumeValid = uint256S("0xc09529ad3df32d4c33c3110e10692f973d531085aacdc93f86ad157e5e872ea1"); - // Block 151120 + // consensus.defaultAssumeValid = uint256S("0xe4925099992f4ca3337c9f85deb52b88da80a6ea40127adf2bc6c2851d5d49b2"); + // Block 154000 // consensus.defaultAssumeValid = uint256S("0xef695bb26b2655308cba06c2dd9b303c833db933d0cd872104f3073e471da2b1"); // Block 149000 // consensus.defaultAssumeValid = uint256S("0x022dc4410add84d46359013d45df952493c53343304296a9066fc3df03dc8297"); @@ -205,14 +205,14 @@ class CMainParams : public CChainParams { { 60000, uint256S("0xf38b639a8db731e7dac96eaae8f9ab443eaf85039433197345a72e1961d7f286")}, { 100000, uint256S("0x022dc4410add84d46359013d45df952493c53343304296a9066fc3df03dc8297")}, { 149000, uint256S("0xef695bb26b2655308cba06c2dd9b303c833db933d0cd872104f3073e471da2b1")}, - { 151120, uint256S("0xc09529ad3df32d4c33c3110e10692f973d531085aacdc93f86ad157e5e872ea1")}, + { 154000, uint256S("0xe4925099992f4ca3337c9f85deb52b88da80a6ea40127adf2bc6c2851d5d49b2")}, } }; chainTxData = ChainTxData{ - /* nTime */ 1692820156, - /* nTxCount */ 166120, - /* dTxRate */ 0.00343088 + /* nTime */ 1701118087, + /* nTxCount */ 173084, + /* dTxRate */ 0.00237163 }; } }; From 62c03559b33588932b8602d636ee52affcba3e06 Mon Sep 17 00:00:00 2001 From: koh-gt <101822992+koh-gt@users.noreply.github.com> Date: Tue, 28 Nov 2023 05:01:36 +0800 Subject: [PATCH 09/16] Update ferrite-qt.1 --- doc/man/ferrite-qt.1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/man/ferrite-qt.1 b/doc/man/ferrite-qt.1 index fa47cb32..3aabe34a 100644 --- a/doc/man/ferrite-qt.1 +++ b/doc/man/ferrite-qt.1 @@ -1,12 +1,12 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. -.TH FERRITE-QT "1" "Aug 2023" "ferrite-qt v3.1.2" "User Commands" +.TH FERRITE-QT "1" "Nov 2023" "ferrite-qt v3.1.3" "User Commands" .SH NAME -ferrite-qt \- manual page for ferrite-qt v3.1.2 +ferrite-qt \- manual page for ferrite-qt v3.1.3 .SH SYNOPSIS .B ferrite-qt [\fI\,command-line options\/\fR] .SH DESCRIPTION -Ferrite Core version v3.1.2 (64\-bit) +Ferrite Core version v3.1.3 (64\-bit) .SH OPTIONS .HP \-? From 2b729edc2ddf6c66cc97764338562425d27df663 Mon Sep 17 00:00:00 2001 From: koh-gt <101822992+koh-gt@users.noreply.github.com> Date: Tue, 28 Nov 2023 05:02:16 +0800 Subject: [PATCH 10/16] Update ferrite-cli.1 --- doc/man/ferrite-cli.1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/man/ferrite-cli.1 b/doc/man/ferrite-cli.1 index 2f5c8087..64e20ec4 100644 --- a/doc/man/ferrite-cli.1 +++ b/doc/man/ferrite-cli.1 @@ -1,7 +1,7 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. -.TH FERRITE-CLI "1" "Aug 2023" "ferrite-cli v3.1.2" "User Commands" +.TH FERRITE-CLI "1" "Nov 2023" "ferrite-cli v3.1.3" "User Commands" .SH NAME -ferrite-cli \- manual page for ferrite-cli v3.1.2 +ferrite-cli \- manual page for ferrite-cli v3.1.3 .SH SYNOPSIS .B ferrite-cli [\fI\,options\/\fR] \fI\, \/\fR[\fI\,params\/\fR] \fI\,Send command to Ferrite Core\/\fR From cd53cd81ab4295dd19d197aae03dbf96bc7780f6 Mon Sep 17 00:00:00 2001 From: koh-gt <101822992+koh-gt@users.noreply.github.com> Date: Tue, 28 Nov 2023 05:02:36 +0800 Subject: [PATCH 11/16] Update ferrite-tx.1 --- doc/man/ferrite-tx.1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/man/ferrite-tx.1 b/doc/man/ferrite-tx.1 index e7276b07..0cb099c7 100644 --- a/doc/man/ferrite-tx.1 +++ b/doc/man/ferrite-tx.1 @@ -1,7 +1,7 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. -.TH FERRITE-TX "1" "Aug 2023" "ferrite-tx v3.1.2" "User Commands" +.TH FERRITE-TX "1" "Nov 2023" "ferrite-tx v3.1.3" "User Commands" .SH NAME -ferrite-tx \- manual page for ferrite-tx v3.1.2 +ferrite-tx \- manual page for ferrite-tx v3.1.3 .SH SYNOPSIS .B ferrite-tx [\fI\,options\/\fR] \fI\, \/\fR[\fI\,commands\/\fR] \fI\,Update hex-encoded ferrite transaction\/\fR @@ -9,7 +9,7 @@ ferrite-tx \- manual page for ferrite-tx v3.1.2 .B ferrite-tx [\fI\,options\/\fR] \fI\,-create \/\fR[\fI\,commands\/\fR] \fI\,Create hex-encoded ferrite transaction\/\fR .SH DESCRIPTION -Ferrite Core ferrite\-tx utility version v3.1.2 +Ferrite Core ferrite\-tx utility version v3.1.3 .SH OPTIONS .HP \-? From c43da683e14c76e40f47bf78798a69309c58b01f Mon Sep 17 00:00:00 2001 From: koh-gt <101822992+koh-gt@users.noreply.github.com> Date: Tue, 28 Nov 2023 05:02:54 +0800 Subject: [PATCH 12/16] Update ferrite-wallet.1 --- doc/man/ferrite-wallet.1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/man/ferrite-wallet.1 b/doc/man/ferrite-wallet.1 index 5525e126..9d2f9a02 100644 --- a/doc/man/ferrite-wallet.1 +++ b/doc/man/ferrite-wallet.1 @@ -1,9 +1,9 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. -.TH FERRITE-WALLET "1" "Aug 2023" "ferrite-wallet v3.1.2" "User Commands" +.TH FERRITE-WALLET "1" "Nov 2023" "ferrite-wallet v3.1.3" "User Commands" .SH NAME -ferrite-wallet \- manual page for ferrite-wallet v3.1.2 +ferrite-wallet \- manual page for ferrite-wallet v3.1.3 .SH DESCRIPTION -Ferrite Core ferrite\-wallet version v3.1.2 +Ferrite Core ferrite\-wallet version v3.1.3 .PP ferrite\-wallet is an offline tool for creating and interacting with Ferrite Core wallet files. By default ferrite\-wallet will act on wallets in the default mainnet wallet directory in the datadir. From 1d6dde71b461e0383540bcee1e89a349a0131e58 Mon Sep 17 00:00:00 2001 From: koh-gt <101822992+koh-gt@users.noreply.github.com> Date: Tue, 28 Nov 2023 05:03:13 +0800 Subject: [PATCH 13/16] Update ferrited.1 --- doc/man/ferrited.1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/man/ferrited.1 b/doc/man/ferrited.1 index b4b2fcde..065cde0c 100644 --- a/doc/man/ferrited.1 +++ b/doc/man/ferrited.1 @@ -1,12 +1,12 @@ .\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.47.13. -.TH FERRITED "1" "Aug 2023" "ferrited v3.1.2" "User Commands" +.TH FERRITED "1" "Nov 2023" "ferrited v3.1.3" "User Commands" .SH NAME -ferrited \- manual page for ferrited v3.1.2 +ferrited \- manual page for ferrited v3.1.3 .SH SYNOPSIS .B ferrited [\fI\,options\/\fR] \fI\,Start Ferrite Core\/\fR .SH DESCRIPTION -Ferrite Core version v3.1.2 +Ferrite Core version v3.1.3 .SH OPTIONS .HP \-? From 13c2efab8bca580b200a1fe2b1cee6b177837148 Mon Sep 17 00:00:00 2001 From: koh-gt <101822992+koh-gt@users.noreply.github.com> Date: Tue, 28 Nov 2023 05:09:07 +0800 Subject: [PATCH 14/16] Update PULL_REQUEST_TEMPLATE.md --- .github/PULL_REQUEST_TEMPLATE.md | 36 ++++++++++++-------------------- 1 file changed, 13 insertions(+), 23 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index ae92fc78..ab9892a8 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,18 +1,13 @@ From 64b60841bfed51067527fc36ae3cc0fa85a07506 Mon Sep 17 00:00:00 2001 From: koh-gt <101822992+koh-gt@users.noreply.github.com> Date: Tue, 28 Nov 2023 05:10:42 +0800 Subject: [PATCH 15/16] Update ISSUE_TEMPLATE.md --- .github/ISSUE_TEMPLATE.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index a12a97d3..c7c4bbde 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,13 +1,13 @@ From 6d7dba3bd2677e2df8f52b91032f9146abdfbca3 Mon Sep 17 00:00:00 2001 From: koh-gt <101822992+koh-gt@users.noreply.github.com> Date: Tue, 28 Nov 2023 05:14:12 +0800 Subject: [PATCH 16/16] Update README.md - doc --- doc/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/README.md b/doc/README.md index 873feb96..00bc4570 100644 --- a/doc/README.md +++ b/doc/README.md @@ -5,7 +5,7 @@ Setup --------------------- Ferrite Core is the original Ferrite client and it builds the backbone of the network. It downloads and, by default, stores the entire history of Ferrite transactions, which requires approximately 22 gigabytes of disk space. Depending on the speed of your computer and network connection, the synchronization process can take anywhere from a few hours to a day or more. -To download Ferrite Core, visit [ferrite.org](https://ferrite.org/). +To download Ferrite Core, visit [ferritecoin.org](https://ferritecoin.org/). Running --------------------- @@ -28,9 +28,9 @@ Drag Ferrite Core to your applications folder, and then run Ferrite Core. ### Need Help? -* See the documentation at the [Ferrite Wiki](https://ferrite.info/) for help and more information. -* Ask for help on [#ferrite](https://webchat.freenode.net/#ferrite) on Freenode. If you don't have an IRC client, use [webchat here](https://webchat.freenode.net/#ferrite). -* Ask for help on the [FerriteTalk](https://ferritetalk.io/) forums, in the [Technical Support board](https://ferritetalk.io/c/technical-support). +* See the documentation at the [Ferrite Github Wiki](https://github.com/koh-gt/ferrite-core/wiki) for help and more information. +* Ask for help on [ferrite_core](https://t.me/ferrite_core) on Telegram. If you prefer to stay pseudonymous, use [Ferritext](https://github.com/koh-gt/ferritext/) +* Ask for help on the [Ferrite Forum](https://ferritecoin.org:52443/) forums, in the Technical Support board. Building ---------------------