diff --git a/Makefile b/Makefile index 84e17cb715..2e9c5e7fcc 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -package = anoma +package = namada cargo := $(env) cargo rustup := $(env) rustup @@ -97,27 +97,27 @@ install: tendermint ANOMA_DEV=false $(cargo) install --path ./apps --locked tendermint: - ./scripts/install/get_tendermint.sh + ./scripts/get_tendermint.sh run-ledger: # runs the node - $(cargo) run --bin anoman -- ledger run + $(cargo) run --bin namadan -- ledger run run-ledger-abci-plus-plus: # runs the node - $(cargo) run --bin anoman --no-default-features --features "ABCI-plus-plus" -- ledger run + $(cargo) run --bin namadan --no-default-features --features "ABCI-plus-plus" -- ledger run run-gossip: # runs the node gossip node - $(cargo) run --bin anoman -- gossip run + $(cargo) run --bin namadan -- gossip run reset-ledger: # runs the node - $(cargo) run --bin anoman -- ledger reset + $(cargo) run --bin namadan -- ledger reset reset-ledger-abci-plus-plus: # runs the node - $(cargo) run --bin anoman --no-default-features --features "ABCI-plus-plus" -- ledger reset + $(cargo) run --bin namadan --no-default-features --features "ABCI-plus-plus" -- ledger reset audit: $(cargo) audit $(foreach ignore,$(audit-ignores), --ignore $(ignore)) diff --git a/scripts/make-package.sh b/scripts/make-package.sh index 6fc96acad1..8ae06589bb 100755 --- a/scripts/make-package.sh +++ b/scripts/make-package.sh @@ -1,13 +1,13 @@ #!/usr/bin/env bash -# Make a release archive from built Anoma binaries and dylib(s) +# Make a release archive from built Namada binaries and dylib(s) set -e VERSION="$(git describe --dirty --broken)" PLATFORM="$(uname -s)-$(uname -m)" -PACKAGE_NAME="anoma-${VERSION}-${PLATFORM}" -BIN="anoma anomac anoman anomaw" +PACKAGE_NAME="namada-${VERSION}-${PLATFORM}" +BIN="namada namadac namadan namadaw" mkdir -p ${PACKAGE_NAME} && \ cd target/release && \