Skip to content

Commit

Permalink
refactor(renaming)!: change denom name from uknow to uaxone
Browse files Browse the repository at this point in the history
  • Loading branch information
bdeneux authored and ccamel committed May 4, 2024
1 parent 0515d1e commit 88b9c92
Show file tree
Hide file tree
Showing 18 changed files with 344 additions and 341 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ chain-init: build ## Initialize the blockchain with default settings.
--chain-id=axone-${CHAIN} \
--home "${CHAIN_HOME}"; \
\
sed -i $(SED_FLAG) "s/\"stake\"/\"uknow\"/g" "${CHAIN_HOME}/config/genesis.json"; \
sed -i $(SED_FLAG) "s/\"stake\"/\"uaxone\"/g" "${CHAIN_HOME}/config/genesis.json"; \
\
MNEMONIC_VALIDATOR="island position immense mom cross enemy grab little deputy tray hungry detect state helmet \
tomorrow trap expect admit inhale present vault reveal scene atom"; \
Expand All @@ -213,12 +213,12 @@ chain-init: build ## Initialize the blockchain with default settings.
--keyring-backend test \
--home "${CHAIN_HOME}"; \
\
${CHAIN_BINARY} genesis add-genesis-account validator 1000000000uknow \
${CHAIN_BINARY} genesis add-genesis-account validator 1000000000uaxone \
--keyring-backend test \
--home "${CHAIN_HOME}"; \
\
NODE_ID=`${CHAIN_BINARY} tendermint show-node-id --home ${CHAIN_HOME}`; \
${CHAIN_BINARY} genesis gentx validator 1000000uknow \
${CHAIN_BINARY} genesis gentx validator 1000000uaxone \
--node-id $$NODE_ID \
--chain-id=axone-${CHAIN} \
--keyring-backend test \
Expand Down Expand Up @@ -256,7 +256,7 @@ chain-upgrade: build ## Test the chain upgrade from the given FROM_VERSION to th
PROPOSAL=${PROPOSAL}; \
if [[ ! -f "$$PROPOSAL" ]]; then \
echo "${COLOR_CYAN} 👩‍🚀 No proposal given ${COLOR_RESET}"; \
echo '{"messages": [{"@type": "/cosmos.upgrade.v1beta1.MsgSoftwareUpgrade","authority": "axone10d07y265gmmuvt4z0w9aw880jnsr700jh7kd2g","plan": {"name": "","time": "0001-01-01T00:00:00Z","height": "10","info": "","upgraded_client_state": null}}],"title": "Software update", "summary": "Update the binary", "metadata": "ipfs://CID","deposit": "1uknow"}' | \
echo '{"messages": [{"@type": "/cosmos.upgrade.v1beta1.MsgSoftwareUpgrade","authority": "axone10d07y265gmmuvt4z0w9aw880jnsr700jh7kd2g","plan": {"name": "","time": "0001-01-01T00:00:00Z","height": "10","info": "","upgraded_client_state": null}}],"title": "Software update", "summary": "Update the binary", "metadata": "ipfs://CID","deposit": "1uaxone"}' | \
jq --arg name "${TO_VERSION}" '.messages[].plan.name = $$name' > ${TARGET_FOLDER}/proposal.json; \
PROPOSAL=${TARGET_FOLDER}/proposal.json; \
fi; \
Expand All @@ -276,7 +276,7 @@ chain-upgrade: build ## Test the chain upgrade from the given FROM_VERSION to th
-b sync; \
\
sleep 5;\
$$BINARY_OLD tx gov deposit 1 10000000uknow \
$$BINARY_OLD tx gov deposit 1 10000000uaxone \
--from validator \
--yes \
--home ${CHAIN_HOME} \
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Read more in the [introduction blog post](https://blog.axone.xyz/). For a high-l

## Want to become a validator?

Validators are responsible for securing the axone network. Validator responsibilities include maintaining a functional [node](https://docs.axone.xyz/docs/nodes/run-node) with constant uptime and providing a sufficient amount of $KNOW as stake. In exchange for this service, validators receive block rewards and transaction fees.
Validators are responsible for securing the axone network. Validator responsibilities include maintaining a functional [node](https://docs.axone.xyz/docs/nodes/run-node) with constant uptime and providing a sufficient amount of $AXONE as stake. In exchange for this service, validators receive block rewards and transaction fees.

Want to become a validator? 👉 [Checkout the documentation!](https://docs.axone.xyz/docs/nodes/introduction)

Expand Down
4 changes: 2 additions & 2 deletions starship/configs/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ chains:
home: /root/.axoned
binary: axoned
prefix: axone
denom: uknow
coins: 100000000000000uknow
denom: uaxone
coins: 100000000000000uaxone
hdPath: m/44'/118'/0'/0/0
coinType: 118
repo: https://github.com/axone-protocol/axoned
Expand Down
4 changes: 2 additions & 2 deletions starship/configs/devnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ chains:
home: /root/.axoned
binary: axoned
prefix: axone
denom: uknow
coins: 100000000000000uknow
denom: uaxone
coins: 100000000000000uaxone
hdPath: m/44'/118'/0'/0/0
coinType: 118
repo: https://github.com/axone-protocol/axoned
Expand Down
4 changes: 2 additions & 2 deletions starship/configs/local.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ chains:
home: /root/.axoned
binary: axoned
prefix: axone
denom: uknow
coins: 100000000000000uknow
denom: uaxone
coins: 100000000000000uaxone
hdPath: m/44'/118'/0'/0/0
coinType: 118
repo: https://github.com/axone-protocol/axoned
Expand Down
Loading

0 comments on commit 88b9c92

Please sign in to comment.