Skip to content

Commit 89f6208

Browse files
committed
refactor(renaming): change denom name from uknow to uaxone
1 parent 0515d1e commit 89f6208

File tree

18 files changed

+344
-341
lines changed

18 files changed

+344
-341
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ chain-init: build ## Initialize the blockchain with default settings.
203203
--chain-id=axone-${CHAIN} \
204204
--home "${CHAIN_HOME}"; \
205205
\
206-
sed -i $(SED_FLAG) "s/\"stake\"/\"uknow\"/g" "${CHAIN_HOME}/config/genesis.json"; \
206+
sed -i $(SED_FLAG) "s/\"stake\"/\"uaxone\"/g" "${CHAIN_HOME}/config/genesis.json"; \
207207
\
208208
MNEMONIC_VALIDATOR="island position immense mom cross enemy grab little deputy tray hungry detect state helmet \
209209
tomorrow trap expect admit inhale present vault reveal scene atom"; \
@@ -213,12 +213,12 @@ chain-init: build ## Initialize the blockchain with default settings.
213213
--keyring-backend test \
214214
--home "${CHAIN_HOME}"; \
215215
\
216-
${CHAIN_BINARY} genesis add-genesis-account validator 1000000000uknow \
216+
${CHAIN_BINARY} genesis add-genesis-account validator 1000000000uaxone \
217217
--keyring-backend test \
218218
--home "${CHAIN_HOME}"; \
219219
\
220220
NODE_ID=`${CHAIN_BINARY} tendermint show-node-id --home ${CHAIN_HOME}`; \
221-
${CHAIN_BINARY} genesis gentx validator 1000000uknow \
221+
${CHAIN_BINARY} genesis gentx validator 1000000uaxone \
222222
--node-id $$NODE_ID \
223223
--chain-id=axone-${CHAIN} \
224224
--keyring-backend test \
@@ -256,7 +256,7 @@ chain-upgrade: build ## Test the chain upgrade from the given FROM_VERSION to th
256256
PROPOSAL=${PROPOSAL}; \
257257
if [[ ! -f "$$PROPOSAL" ]]; then \
258258
echo "${COLOR_CYAN} 👩‍🚀 No proposal given ${COLOR_RESET}"; \
259-
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"}' | \
259+
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"}' | \
260260
jq --arg name "${TO_VERSION}" '.messages[].plan.name = $$name' > ${TARGET_FOLDER}/proposal.json; \
261261
PROPOSAL=${TARGET_FOLDER}/proposal.json; \
262262
fi; \
@@ -276,7 +276,7 @@ chain-upgrade: build ## Test the chain upgrade from the given FROM_VERSION to th
276276
-b sync; \
277277
\
278278
sleep 5;\
279-
$$BINARY_OLD tx gov deposit 1 10000000uknow \
279+
$$BINARY_OLD tx gov deposit 1 10000000uaxone \
280280
--from validator \
281281
--yes \
282282
--home ${CHAIN_HOME} \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Read more in the [introduction blog post](https://blog.axone.xyz/). For a high-l
3131

3232
## Want to become a validator?
3333

34-
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.
34+
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.
3535

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

starship/configs/ci.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ chains:
66
home: /root/.axoned
77
binary: axoned
88
prefix: axone
9-
denom: uknow
10-
coins: 100000000000000uknow
9+
denom: uaxone
10+
coins: 100000000000000uaxone
1111
hdPath: m/44'/118'/0'/0/0
1212
coinType: 118
1313
repo: https://github.com/axone-protocol/axoned

starship/configs/devnet.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ chains:
66
home: /root/.axoned
77
binary: axoned
88
prefix: axone
9-
denom: uknow
10-
coins: 100000000000000uknow
9+
denom: uaxone
10+
coins: 100000000000000uaxone
1111
hdPath: m/44'/118'/0'/0/0
1212
coinType: 118
1313
repo: https://github.com/axone-protocol/axoned

starship/configs/local.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ chains:
66
home: /root/.axoned
77
binary: axoned
88
prefix: axone
9-
denom: uknow
10-
coins: 100000000000000uknow
9+
denom: uaxone
10+
coins: 100000000000000uaxone
1111
hdPath: m/44'/118'/0'/0/0
1212
coinType: 118
1313
repo: https://github.com/axone-protocol/axoned

0 commit comments

Comments
 (0)