Where is full source code?
Full source is on GitHub — the complete node (C++, all consensus) and the wallets, MIT licensed:
https://github.com/noctari-core/noctariBuild instructions are in the README. There's also a prebuilt node/miner tarball and the desktop/Android wallets under Downloads on the site if you don't want to compile.
Dev mined from block 1 and is currently mining and getting most of the blocks
It's fully open source and free to mine — no dev fee during the PoW window, no premine, no presale, no insider allocation. Same public code, same network, same rules for everyone; every coin from block 1 is mined in the open.
Yes, the launch nodes started at block 1 — a new chain needs someone producing the first blocks. But there's no protocol edge to be had, and the field's already competitive: external miners are pulling the majority of recent blocks (~90% of the last 50), and it shifts constantly as more people join. That's the entire point of an open window.
If the distribution bothers you, the fix is in your hands and open to everyone equally — point some hashrate at it. Guide:
https://github.com/noctari-core/noctari/blob/main/MINING.mdTitle: [BUG] Repository is missing several build-system components — does not build from a clean checkout
Hello,
I tried building noctarid from source (git clone
https://github.com/noctari-core/noctari, then core/autogen.sh) on a clean Ubuntu 22.04, and ran into several issues that appear to indicate part of the repository simply wasn't committed:
core/src/secp256k1/Makefile.am uses CPPFLAGS_FOR_BUILD and CFLAGS_FOR_BUILD via += inside if USE_ECMULT_STATIC_PRECOMPUTATION, without a prior = initialization. With automake 1.16.5 (Ubuntu 22.04) this is a fatal error during autoreconf.
core/build-aux/m4/ is missing entirely (17 files: bitcoin_qt.m4, ax_boost_*.m4, bitcoin_find_bdb48.m4, l_atomic.m4, l_socket.m4, etc. — present in the upstream PIVX-Project/PIVX). configure.ac declares AC_CONFIG_MACRO_DIR([build-aux/m4]) and uses the BITCOIN_QT_CHECK / BITCOIN_QT_CONFIGURE / BITCOIN_QT_FAIL macros from bitcoin_qt.m4. Without it, calls to PKG_CHECK_MODULES, AC_CHECK_LIB, AC_CHECK_HEADER wrapped inside BITCOIN_QT_CHECK(...) don't get expanded by m4, and autoconf 2.71 fails with "possibly undefined macro".
core/depends/Makefile is missing, and core/depends/builders/ is missing entirely (darwin.mk, default.mk, linux.mk) — because of this, make in depends/ doesn't even start ("No targets specified and no makefile found").
It looks like this entire part of the repository existed only locally on the author's machine and was left out of git add — which is why the build worked for the author, but breaks immediately, before the compilation stage even starts, for anyone cloning the repo from scratch.
I reproduced the issue and confirmed a fix: I copied the missing files from PIVX-Project/PIVX (current upstream) — after that, autogen.sh runs cleanly, configure is generated, and depends/make starts and proceeds normally through the dependency list.
I suggest adding to the repository:
core/build-aux/m4/
core/depends/Makefile
core/depends/builders/
and checking src/secp256k1/Makefile.am for compatibility with automake >= 1.16.
And you dare call this a working project or code? You couldn't even fork the project right.
