diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 46f4ac9e..69207827 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -74,6 +74,6 @@ Can you please provide the Nano logs for further analysis. How to find Nano logs: -https://github.com/nanocurrency/raiblocks/wiki/Log-files +https://github.com/nanocurrency/nano-node/wiki/Log-files --> diff --git a/CMakeLists.txt b/CMakeLists.txt index 720123ad..a59950d1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required (VERSION 3.4) -project (nano-core) +project (nano-node) set (CPACK_PACKAGE_VERSION_MAJOR "18") set (CPACK_PACKAGE_VERSION_MINOR "0") diff --git a/README.md b/README.md index 37f3c6cc..8e29f8e8 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ We've applied the philosophy of _"do one thing and do it well."_ We are focused ### Key Features -* Nano utilizes a novel [block-lattice](https://github.com/nanocurrency/raiblocks/wiki/Block-lattice) architecture, unlike conventional blockchains used in many other cryptocurrencies. +* Nano utilizes a novel [block-lattice](https://github.com/nanocurrency/nano-node/wiki/Block-lattice) architecture, unlike conventional blockchains used in many other cryptocurrencies. * The network requires minimal resources, no high-power mining hardware, and can process high transaction throughput. * Offers instantaneous transactions with zero fees and unlimited scalability, making Nano an ideal solution for peer-to-peer transactions. * As of August 2018, the Nano network has processed over twelve million blocks with an unpruned ledger size of only 4.6GB. @@ -28,12 +28,12 @@ For more information, see [Nano.org](https://nano.org/) or read the [whitepaper] ### Guides & Documentation * [Whitepaper](https://nano.org/en/whitepaper) -* [Build Instructions](https://github.com/nanocurrency/raiblocks/wiki/Build-Instructions) -* [Command Line Interface](https://github.com/nanocurrency/raiblocks/wiki/Command-line-interface) -* [RPC Protocol](https://github.com/nanocurrency/raiblocks/wiki/RPC-protocol) -* [Wallet Design](https://github.com/nanocurrency/raiblocks/wiki/Wallet-design) -* [Block-Lattice](https://github.com/nanocurrency/raiblocks/wiki/Block-lattice) -* [Design Features](https://github.com/nanocurrency/raiblocks/wiki/Design-features) +* [Build Instructions](https://github.com/nanocurrency/nano-node/wiki/Build-Instructions) +* [Command Line Interface](https://github.com/nanocurrency/nano-node/wiki/Command-line-interface) +* [RPC Protocol](https://github.com/nanocurrency/nano-node/wiki/RPC-protocol) +* [Wallet Design](https://github.com/nanocurrency/nano-node/wiki/Wallet-design) +* [Block-Lattice](https://github.com/nanocurrency/nano-node/wiki/Block-lattice) +* [Design Features](https://github.com/nanocurrency/nano-node/wiki/Design-features) ### Links & Resources @@ -43,13 +43,13 @@ For more information, see [Nano.org](https://nano.org/) or read the [whitepaper] * [Reddit](https://reddit.com/r/nanocurrency) * [Medium](https://medium.com/nanocurrency) * [Twitter](https://twitter.com/nano) -* [GitHub wiki](https://github.com/nanocurrency/raiblocks/wiki) +* [GitHub wiki](https://github.com/nanocurrency/nano-node/wiki) ### Want to Contribute? -Please see the [contributors guide](https://github.com/nanocurrency/raiblocks/wiki/Contributing). +Please see the [contributors guide](https://github.com/nanocurrency/nano-node/wiki/Contributing). ### Contact us We want to hear about any trouble, success, delight, or pain you experience when -using Nano. Let us know by [filing an issue](https://github.com/nanocurrency/raiblocks/issues), joining us on [reddit](https://reddit.com/r/nanocurrency), or joining us on [Discord](https://chat.nano.org/). +using Nano. Let us know by [filing an issue](https://github.com/nanocurrency/nano-node/issues), joining us on [reddit](https://reddit.com/r/nanocurrency), or joining us on [Discord](https://chat.nano.org/). diff --git a/util/changelog_generator b/util/changelog_generator index 9a503686..6402f511 100755 --- a/util/changelog_generator +++ b/util/changelog_generator @@ -153,10 +153,10 @@ function changelog () { continue fi - echo "## Release [${tag_name}](https://github.com/nanocurrency/raiblocks/tree/${tag_name}) (${milestone_date})" + echo "## Release [${tag_name}](https://github.com/nanocurrency/nano-node/tree/${tag_name}) (${milestone_date})" echo "" - echo "[Full Changelog](https://github.com/nanocurrency/raiblocks/compare/${previous_milestone_name}...${tag_name})" + echo "[Full Changelog](https://github.com/nanocurrency/nano-node/compare/${previous_milestone_name}...${tag_name})" echo "" unset itemToTags itemToName itemURL categoryIds diff --git a/util/makesrc b/util/makesrc index 7c3e3a26..6382fd30 100755 --- a/util/makesrc +++ b/util/makesrc @@ -6,7 +6,7 @@ if [ -e $1 ]; then echo "makesrc " >&2 - echo " tag valid for nanocurrency/raiblocks" >&2 + echo " tag valid for nanocurrency/nano-node" >&2 exit 1 fi @@ -17,7 +17,7 @@ VERSION_MAJOR=`echo $VERSION |cut -d "." -f 1` scriptDir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")" function make_source () { - git clone --recursive --single-branch --branch releases/v${VERSION_MAJOR} https://github.com/nanocurrency/raiblocks nano-$VERSION + git clone --recursive --single-branch --branch releases/v${VERSION_MAJOR} https://github.com/nanocurrency/nano-node nano-$VERSION cd nano-$VERSION git pull --tags COUNT=`git tag -l "${TAG}" | wc -l` @@ -41,10 +41,10 @@ function source_information () { case "${VERSION}" in *RC*) - "${scriptDir}/changelog_generator" nanocurrency/raiblocks "V${VERSION}" only + "${scriptDir}/changelog_generator" nanocurrency/nano-node "V${VERSION}" only ;; *) - "${scriptDir}/changelog_generator" nanocurrency/raiblocks "V${VERSION}" + "${scriptDir}/changelog_generator" nanocurrency/nano-node "V${VERSION}" ;; esac