Skip to content

Commit

Permalink
2.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
wheatnetwork committed Feb 19, 2024
1 parent 583882e commit 5c8df45
Show file tree
Hide file tree
Showing 10 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions Install-plotter.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function Get-BladebitUrl()
[string]$arch
)

$GITHUB_BASE_URL = "https://github.com/Wheat-Network/bladebit/releases/download"
$GITHUB_BASE_URL = "https://github.com/Chia-Network/bladebit/releases/download"
$filename = Get-BladebitFilename -ver $ver -os $os -arch $arch

"${GITHUB_BASE_URL}/${ver}/${filename}"
Expand All @@ -98,7 +98,7 @@ function Get-BladebitCudaUrl()
[string]$arch
)

$GITHUB_BASE_URL = "https://github.com/Wheat-Network/bladebit/releases/download"
$GITHUB_BASE_URL = "https://github.com/Chia-Network/bladebit/releases/download"
$filename = Get-BladebitCudaFilename -ver $ver -os $os -arch $arch

"${GITHUB_BASE_URL}/${ver}/${filename}"
Expand Down Expand Up @@ -144,7 +144,7 @@ function Get-MadmaxUrl()
[string]$arch
)

$GITHUB_BASE_URL = "https://github.com/Wheat-Network/wheat-plotter-madmax/releases/download"
$GITHUB_BASE_URL = "https://github.com/Chia-Network/wheat-plotter-madmax/releases/download"
$madmax_filename = Get-MadmaxFilename -ksize $ksize -ver $ver -os $os -arch $arch

"${GITHUB_BASE_URL}/${ver}/${madmax_filename}"
Expand Down
2 changes: 1 addition & 1 deletion Install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ Write-Output "For assistance join us on Discord in the #support chat channel:"
Write-Output "https://discord.gg/wheat"
Write-Output ""
Write-Output "Try the Quick Start Guide to running wheat-blockchain:"
Write-Output "https://github.com/Wheat-Network/wheat-blockchain/wiki/Quick-Start-Guide"
Write-Output "https://github.com/wheatnetwork/wheat-blockchain/wiki/Quick-Start-Guide"
Write-Output ""
Write-Output "To install the GUI run '.\venv\scripts\Activate.ps1' then '.\Install-gui.ps1'."
Write-Output ""
Expand Down
4 changes: 2 additions & 2 deletions install-gui.sh
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ do_install_npm_locally(){
}

# Work around for inconsistent `npm` exec path issue
# https://github.com/Wheat-Network/wheat-blockchain/pull/10460#issuecomment-1054492495
# https://github.com/wheatnetwork/wheat-blockchain/pull/10460#issuecomment-1054492495
patch_inconsistent_npm_issue(){
node_module_dir=$1
if [ ! -d "$node_module_dir" ]; then
Expand Down Expand Up @@ -201,7 +201,7 @@ if [ ! "$CI" ]; then
fi

# Work around for inconsistent `npm` exec path issue
# https://github.com/Wheat-Network/wheat-blockchain/pull/10460#issuecomment-1054492495
# https://github.com/wheatnetwork/wheat-blockchain/pull/10460#issuecomment-1054492495
patch_inconsistent_npm_issue "../node_modules"

npm ci
Expand Down
6 changes: 3 additions & 3 deletions install-plotter.sh
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ get_bladebit_url() {
OS="$2" # "ubuntu", "centos", "macos"
ARCH="$3" # "x86-64", "arm64"

GITHUB_BASE_URL="https://github.com/Wheat-Network/bladebit/releases/download"
GITHUB_BASE_URL="https://github.com/Chia-Network/bladebit/releases/download"
BLADEBIT_FILENAME="$(get_bladebit_filename "$BLADEBIT_VER" "$OS" "$ARCH")"

echo "${GITHUB_BASE_URL}/${BLADEBIT_VER}/${BLADEBIT_FILENAME}"
Expand All @@ -79,7 +79,7 @@ get_bladebit_cuda_url() {
OS="$2" # "ubuntu", "centos", "macos"
ARCH="$3" # "x86-64", "arm64"

GITHUB_BASE_URL="https://github.com/Wheat-Network/bladebit/releases/download"
GITHUB_BASE_URL="https://github.com/Chia-Network/bladebit/releases/download"
BLADEBIT_CUDA_FILENAME="$(get_bladebit_cuda_filename "$BLADEBIT_VER" "$OS" "$ARCH")"

echo "${GITHUB_BASE_URL}/${BLADEBIT_VER}/${BLADEBIT_CUDA_FILENAME}"
Expand Down Expand Up @@ -116,7 +116,7 @@ get_madmax_url() {
OS="$3"
ARCH="$4"

GITHUB_BASE_URL="https://github.com/Wheat-Network/wheat-plotter-madmax/releases/download"
GITHUB_BASE_URL="https://github.com/Chia-Network/wheat-plotter-madmax/releases/download"
MADMAX_FILENAME="$(get_madmax_filename "$KSIZE" "$MADMAX_VER" "$OS" "$ARCH")"

echo "${GITHUB_BASE_URL}/${MADMAX_VER}/${MADMAX_FILENAME}"
Expand Down
4 changes: 2 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ if [ "$(uname -m)" = "armv7l" ]; then
echo "WARNING:"
echo "The Wheat Blockchain requires a 64 bit OS and this is 32 bit armv7l"
echo "For more information, see"
echo "https://github.com/Wheat-Network/wheat-blockchain/wiki/Raspberry-Pi"
echo "https://github.com/wheatnetwork/wheat-blockchain/wiki/Raspberry-Pi"
echo "Exiting."
exit 1
fi
Expand Down Expand Up @@ -350,7 +350,7 @@ echo "For assistance join us on Discord in the #support chat channel:"
echo "https://discord.gg/wheat"
echo ""
echo "Try the Quick Start Guide to running wheat-blockchain:"
echo "https://github.com/Wheat-Network/wheat-blockchain/wiki/Quick-Start-Guide"
echo "https://github.com/wheatnetwork/wheat-blockchain/wiki/Quick-Start-Guide"
echo ""
echo "To install the GUI run '. ./activate' then 'sh install-gui.sh'."
echo ""
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@
long_description_content_type="text/markdown",
zip_safe=False,
project_urls={
"Source": "https://github.com/Wheat-Network/wheat-blockchain/",
"Changelog": "https://github.com/Wheat-Network/wheat-blockchain/blob/main/CHANGELOG.md",
"Source": "https://github.com/wheatnetwork/wheat-blockchain/",
"Changelog": "https://github.com/wheatnetwork/wheat-blockchain/blob/main/CHANGELOG.md",
},
)

Expand Down
2 changes: 1 addition & 1 deletion wheat/cmds/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def init_cmd(
- Run `wheat init -c [directory]` on your remote harvester,
where [directory] is the the copy of your Farming Machine CA directory
- Get more details on remote harvester on Wheat wiki:
https://github.com/Wheat-Network/wheat-blockchain/wiki/Farming-on-many-machines
https://github.com/wheatnetwork/wheat-blockchain/wiki/Farming-on-many-machines
"""
from pathlib import Path

Expand Down
2 changes: 1 addition & 1 deletion wheat/data_layer/data_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ async def _insert_root(
generation: Optional[int] = None,
) -> Root:
# This should be replaced by an SQLite schema level check.
# https://github.com/Wheat-Network/wheat-blockchain/pull/9284
# https://github.com/wheatnetwork/wheat-blockchain/pull/9284
tree_id = bytes32(tree_id)

async with self.db_wrapper.writer() as writer:
Expand Down
2 changes: 1 addition & 1 deletion wheat/plotting/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def load(self) -> None:
)
# TODO, drop the below entry dropping after few versions or whenever we force a cache recreation.
# it's here to filter invalid cache entries coming from bladebit RAM plotting.
# Related: - https://github.com/Wheat-Network/wheat-blockchain/issues/13084
# Related: - https://github.com/wheatnetwork/wheat-blockchain/issues/13084
# - https://github.com/Wheat-Network/chiapos/pull/337
k = new_entry.prover.get_size()
if k not in estimated_c2_sizes:
Expand Down
2 changes: 1 addition & 1 deletion wheat/util/timing.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from typing import Callable, Iterator, Optional, overload

system_delays = {
# based on data from https://github.com/Wheat-Network/wheat-blockchain/pull/13724
# based on data from https://github.com/wheatnetwork/wheat-blockchain/pull/13724
"github": {
"darwin": 20,
"linux": 1,
Expand Down

0 comments on commit 5c8df45

Please sign in to comment.