Neobytes - Reinventing Cryptocurrency https://neobytes.network/
Go to file
SikkieNL f6d607c029
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 16s
modified: CONTRIBUTING.md
modified:   Makefile.am
	deleted:    share/pixmaps/bitcoin.ico
	new file:   share/pixmaps/neobytes.ico
	deleted:    src/qt/res/icons/bitcoin.icns
	new file:   src/qt/res/icons/neobytes.icns
2024-12-17 20:42:23 +01:00
.github Upload files to ".github/workflows" 2024-12-17 13:58:00 +01:00
.tx Dash => Neobytes 2024-12-15 22:34:25 +01:00
build-aux/m4 Dash => Neobytes 2024-12-15 22:34:25 +01:00
ci Use -Wno-psabi for arm builds on Travis/Gitlab (#3264) 2020-01-10 13:30:08 +03:00
contrib Add automake package to dash-win-signer's packages list (#3307) 2020-02-03 13:04:00 +03:00
depends Merge #12607: depends: Remove ccache 2019-11-04 13:20:45 +01:00
doc Update release-notes 2020-02-18 10:53:09 +01:00
docker Automatically build and push docker image to docker.io/dashpay/dashd-develop (#1809) 2018-01-10 12:17:43 +03:00
share modified: CONTRIBUTING.md 2024-12-17 20:42:23 +01:00
src modified: CONTRIBUTING.md 2024-12-17 20:42:23 +01:00
test Fix dip4-coinbasemerkleroots.py race condition (#3297) 2020-01-23 00:23:11 +03:00
.gitattributes Separate protocol versioning from clientversion 2014-10-29 00:24:40 -04:00
.gitignore modified: .gitignore 2024-12-17 19:22:51 +01:00
autogen.sh Merge #8784: Copyright headers for build scripts 2018-01-12 08:02:45 +01:00
CMakeLists.txt dash -> neobytes 2024-12-16 15:47:21 +01:00
configure.ac modified: .gitignore 2024-12-17 19:22:51 +01:00
CONTRIBUTING.md modified: CONTRIBUTING.md 2024-12-17 20:42:23 +01:00
COPYING Update COPYING 2024-12-16 15:43:51 +01:00
gitlab-ci.yml new file: gitlab-ci.yml 2024-12-17 19:50:06 +01:00
INSTALL.md Dash => Neobytes 2024-12-15 22:34:25 +01:00
Jenkinsfile Perform Jenkins builds in /dash-src all the time to fix caching issues (#2242) 2018-08-29 13:03:18 +03:00
Jenkinsfile.gitian Let ccache compress the cache by itself instead of compressing ccache.tar (#2456) 2018-11-19 07:31:13 +01:00
libneobytesconsensus.pc.in modified: .gitignore 2024-12-17 19:22:51 +01:00
Makefile.am modified: CONTRIBUTING.md 2024-12-17 20:42:23 +01:00
README.md Update readme 2024-12-15 22:44:06 +01:00

Neobytes Core integration/staging tree

https://www.neobytes.network

Further information about Neobytes Core is available in doc folder.

What is Neobytes?

Neobytes is an experimental digital currency that enables instant payments to anyone, anywhere in the world. Neobytes uses peer-to-peer technology to operate with no central authority: managing transactions and issuing money are carried out collectively by the network. Neobytes Core is the name of the open source software which enables the use of this currency.

For more information, as well as an immediately useable, binary version of the Neobytes Core software, see https://www.neobytes.network.

Neobytes FAQ

Launch Date: June 1, 2021

Blockchain Type: Decentralized

Ticker Symbol: NBY

Genesis Block Hash: "Neobytes Genesis born on June 1, 2021"

Mining Algorithm: NeoScrypt

License

Neobytes Core is released under the terms of the MIT license. See COPYING for more information or see https://opensource.org/licenses/MIT.

Development Process

The master branch is meant to be stable. Development is normally done in separate branches. Tags are created to indicate new official, stable release versions of Neobytes Core.

The contribution workflow is described in CONTRIBUTING.md.

Testing

Testing and code review is the bottleneck for development; we get more pull requests than we can review and test on short notice. Please be patient and help out by testing other people's pull requests, and remember this is a security-critical project where any mistake might cost people lots of money.

Automated Testing

Developers are strongly encouraged to write unit tests for new code, and to submit new unit tests for old code. Unit tests can be compiled and run (assuming they weren't disabled in configure) with: make check. Further details on running and extending unit tests can be found in /src/test/README.md.

There are also regression and integration tests, written in Python, that are run automatically on the build server. These tests can be run (if the test dependencies are installed) with: test/functional/test_runner.py

Manual Quality Assurance (QA) Testing

Changes should be tested by somebody other than the developer who wrote the code. This is especially important for large or high-risk changes. It is useful to add a test plan to the pull request description if testing the changes is not straightforward.