-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resolve naming inconsistencies and update configurations #11
Conversation
WalkthroughThe updates transition from the Eve network ( Changes
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
@coderabbitai review |
"title": "Create an Alliance!", | ||
"summary": "Source Code Version https://github.com/terra-money/core" | ||
}' > $CHAIN_DIR/create-alliance.json | ||
|
||
|
||
echo "Creating an alliance with the denom $IBC_DENOM" | ||
|
||
PROPOSAL_HEIGHT=$($BINARY tx gov submit-proposal $CHAIN_DIR/create-alliance.json --from=$VAL_WALLET_2 --home $CHAIN_DIR/test-2 --node tcp://localhost:26657 -o json --keyring-backend test --fees 600000$UWHALE_DENOM --gas 500000 -y -o json | jq -r '.height') | ||
PROPOSAL_HEIGHT=$($BINARY tx gov submit-proposal $CHAIN_DIR/create-alliance.json --from=$VAL_WALLET_2 --home $CHAIN_DIR/test-2 --node tcp://localhost:26657 -o json --keyring-backend test --fees 600000$UHYPE_DENOM --gas 500000 -y -o json | jq -r '.height') |
Check notice
Code scanning / devskim
Accessing localhost could indicate debug code, or could hinder scaling. Note test
sleep 3 | ||
|
||
|
||
PROPOSAL_ID=$($BINARY query gov proposals --home $CHAIN_DIR/test-2 --count-total --node tcp://localhost:26657 -o json --output json --chain-id=test-2 | jq .proposals[-1].id -r) | ||
|
||
|
||
VOTE_RES=$($BINARY tx gov vote $PROPOSAL_ID yes --from=$VAL_WALLET_2 --home $CHAIN_DIR/test-2 --keyring-backend=test --fees 60000$UWHALE_DENOM --chain-id=test-2 --node tcp://localhost:26657 -o json -y) | ||
VOTE_RES=$($BINARY tx gov vote $PROPOSAL_ID yes --from=$VAL_WALLET_2 --home $CHAIN_DIR/test-2 --keyring-backend=test --fees 60000$UHYPE_DENOM --chain-id=test-2 --node tcp://localhost:26657 -o json -y) |
Check notice
Code scanning / devskim
Accessing localhost could indicate debug code, or could hinder scaling. Note test
VAL_WALLET_1=$($BINARY keys show val1 -a --keyring-backend test --home $CHAIN_DIR/test-1) | ||
VAL_WALLET_2=$($BINARY keys show val2 -a --keyring-backend test --home $CHAIN_DIR/test-2) | ||
|
||
echo "Sending tokens from validator wallet on test-1 to validator wallet on test-2" | ||
IBC_TRANSFER=$($BINARY tx ibc-transfer transfer transfer channel-0 $VAL_WALLET_2 $AMOUNT_TO_DELEGATE$UWHALE_DENOM --chain-id test-1 --from $VAL_WALLET_1 --home $CHAIN_DIR/test-1 --fees 60000$UWHALE_DENOM --node tcp://localhost:16657 --keyring-backend test -y -o json | jq -r '.raw_log' ) | ||
IBC_TRANSFER=$($BINARY tx ibc-transfer transfer transfer channel-0 $VAL_WALLET_2 $AMOUNT_TO_DELEGATE$UHYPE_DENOM --chain-id test-1 --from $VAL_WALLET_1 --home $CHAIN_DIR/test-1 --fees 60000$UHYPE_DENOM --node tcp://localhost:16657 --keyring-backend test -y -o json | jq -r '.raw_log' ) |
Check notice
Code scanning / devskim
Accessing localhost could indicate debug code, or could hinder scaling. Note test
Actions performedReview triggered.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 2
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (11)
- .gitignore (2 hunks)
- Dockerfile (2 hunks)
- scripts/run-node.sh (4 hunks)
- scripts/tests/alliance/delegate.sh (5 hunks)
- scripts/tests/init-test-framework.sh (3 hunks)
- scripts/wasm/get_contract.sh (1 hunks)
- scripts/wasm/instantiate_cw20.sh (1 hunks)
- scripts/wasm/test_wasm.sh (1 hunks)
- scripts/wasm/upload_code.sh (1 hunks)
- testnets/README.md (3 hunks)
- testnets/statesync.md (3 hunks)
Files skipped from review due to trivial changes (6)
- .gitignore
- scripts/run-node.sh
- scripts/wasm/get_contract.sh
- scripts/wasm/instantiate_cw20.sh
- scripts/wasm/test_wasm.sh
- testnets/statesync.md
Additional context used
Shellcheck
scripts/wasm/upload_code.sh
[warning] 9-9: DENOM appears unused. Verify use (or export if used externally).
(SC2034)
scripts/tests/alliance/delegate.sh
[warning] 86-86: DELEGATE_RES appears unused. Verify use (or export if used externally).
(SC2034)
GitHub Check: devskim
scripts/tests/alliance/delegate.sh
[notice] 18-18: Accessing localhost could indicate debug code, or could hinder scaling.
Do not leave debug code in production
[notice] 64-64: Accessing localhost could indicate debug code, or could hinder scaling.
Do not leave debug code in production
[notice] 71-71: Accessing localhost could indicate debug code, or could hinder scaling.
Do not leave debug code in production
Additional comments not posted (27)
scripts/wasm/upload_code.sh (2)
3-3
: Change approved: Updated binary name.The binary name has been correctly updated to
hyperiad
to standardize naming.
5-5
: Change approved: Updated chain ID.The chain ID has been correctly updated to
local-hype
to standardize naming.Dockerfile (3)
32-32
: Change approved: Updated binary name and build flags.The binary name and build flags have been correctly updated to reflect the new naming conventions.
36-36
: Change approved: Updated binary name in COPY instruction.The binary name has been correctly updated in the COPY instruction to reflect the new naming conventions.
38-38
: Change approved: Updated ENTRYPOINT.The ENTRYPOINT has been correctly updated to the new binary name to reflect the new naming conventions.
testnets/README.md (10)
1-1
: Change approved: Updated testnet name.The testnet name has been correctly updated to "Hyperia Testnet" to reflect the new naming conventions.
18-18
: Change approved: Updated binary name in installation instructions.The binary name has been correctly updated in the installation instructions to reflect the new naming conventions.
26-26
: Change approved: Updated binary name in version check.The binary name has been correctly updated in the version check instructions to reflect the new naming conventions.
29-29
: Change approved: Updated binary name in long version check.The binary name has been correctly updated in the long version check instructions to reflect the new naming conventions.
35-35
: Change approved: Updated binary name and chain ID in chain initialization.The binary name and chain ID have been correctly updated in the chain initialization instructions to reflect the new naming conventions.
41-41
: Change approved: Updated path to genesis file.The path to the genesis file has been correctly updated to reflect the new naming conventions.
49-49
: Change approved: Updated binary name in wallet creation.The binary name has been correctly updated in the wallet creation instructions to reflect the new naming conventions.
55-55
: Change approved: Updated binary name and denomination in genesis account funding.The binary name and denomination have been correctly updated in the genesis account funding instructions to reflect the new naming conventions.
61-61
: Change approved: Updated binary name, denomination, and chain ID in gentx creation.The binary name, denomination, and chain ID have been correctly updated in the gentx creation instructions to reflect the new naming conventions.
67-67
: Change approved: Updated path to gentx file.The path to the gentx file has been correctly updated to reflect the new naming conventions.
scripts/tests/alliance/delegate.sh (9)
9-9
: Change approved: Updated binary name.The binary name has been correctly updated to
hyperiad
to standardize naming.
13-13
: Change approved: Updated denomination.The denomination has been correctly updated to
uhype
to standardize naming.
18-18
: Address existing comment: Accessing localhost.Accessing localhost could indicate debug code or could hinder scaling. Do not leave debug code in production.
Tools
GitHub Check: devskim
[notice] 18-18: Accessing localhost could indicate debug code, or could hinder scaling.
Do not leave debug code in production
32-32
: Change approved: Updated denomination check.The denomination check has been correctly updated to reflect the new naming conventions.
56-56
: Change approved: Updated denomination in alliance creation.The denomination has been correctly updated in the alliance creation instructions to reflect the new naming conventions.
64-64
: Address existing comment: Accessing localhost.Accessing localhost could indicate debug code or could hinder scaling. Do not leave debug code in production.
Tools
GitHub Check: devskim
[notice] 64-64: Accessing localhost could indicate debug code, or could hinder scaling.
Do not leave debug code in production
71-71
: Address existing comment: Accessing localhost.Accessing localhost could indicate debug code or could hinder scaling. Do not leave debug code in production.
Tools
GitHub Check: devskim
[notice] 71-71: Accessing localhost could indicate debug code, or could hinder scaling.
Do not leave debug code in production
95-96
: Change approved: Updated denomination in total supply query.The denomination has been correctly updated in the total supply query to reflect the new naming conventions.
101-101
: Change approved: Updated denomination in error message.The denomination has been correctly updated in the error message to reflect the new naming conventions.
scripts/tests/init-test-framework.sh (3)
3-9
: LGTM! Consistent variable updates.The updates to the binary name, chain IDs, and denomination are consistent with the PR objectives.
91-92
: LGTM! Correct updates to gentx transactions.The updates to the gentx transactions to use the new denomination
uhype
are correct.
Line range hint
129-136
:
LGTM! Correct updates to genesis file parameters.The updates to the genesis file parameters to use the new denomination
uhype
are correctly applied.
@@ -83,7 +83,7 @@ | |||
|
|||
echo "Delegating $AMOUNT_TO_DELEGATE to the alliance $IBC_DENOM" | |||
VAL_ADDR=$($BINARY query staking validators --output json | jq .validators[0].operator_address --raw-output) | |||
DELEGATE_RES=$($BINARY tx alliance delegate $VAL_ADDR $AMOUNT_TO_DELEGATE$IBC_DENOM --from=node0 --from=$VAL_WALLET_2 --home $CHAIN_DIR/test-2 --keyring-backend=test --fees 600000$UWHALE_DENOM --gas 500000 --chain-id=test-2 -o json -y) | |||
DELEGATE_RES=$($BINARY tx alliance delegate $VAL_ADDR $AMOUNT_TO_DELEGATE$IBC_DENOM --from=node0 --from=$VAL_WALLET_2 --home $CHAIN_DIR/test-2 --keyring-backend=test --fees 600000$UHYPE_DENOM --gas 500000 --chain-id=test-2 -o json -y) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove unused variable.
The DELEGATE_RES
variable is declared but not used in the script. Consider removing it to avoid confusion.
- DELEGATE_RES=$($BINARY tx alliance delegate $VAL_ADDR $AMOUNT_TO_DELEGATE$IBC_DENOM --from=node0 --from=$VAL_WALLET_2 --home $CHAIN_DIR/test-2 --keyring-backend=test --fees 600000$UHYPE_DENOM --gas 500000 --chain-id=test-2 -o json -y)
Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
DELEGATE_RES=$($BINARY tx alliance delegate $VAL_ADDR $AMOUNT_TO_DELEGATE$IBC_DENOM --from=node0 --from=$VAL_WALLET_2 --home $CHAIN_DIR/test-2 --keyring-backend=test --fees 600000$UHYPE_DENOM --gas 500000 --chain-id=test-2 -o json -y) |
Tools
Shellcheck
[warning] 86-86: DELEGATE_RES appears unused. Verify use (or export if used externally).
(SC2034)
Did you resolve the issue with Genesis? |
ill hop on it again quick, maybe some plain default genesis file does the job |
w8 i got a hint what it could be |
… method of the HyperiaApp struct
err := baseapp.MigrateParams(sdk.UnwrapSDKContext(ctx), baseAppLegacySS, app.ConsensusParamsKeeper.ParamsStore) | ||
if err != nil { | ||
panic(err) | ||
app.Logger().Error("Failed to migrate params", "error", err) | ||
// TODO: Consider how to handle this error without panicking |
Check notice
Code scanning / devskim
A "TODO" or similar was left in source code, possibly indicating incomplete functionality Note
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 2
Outside diff range and nitpick comments (2)
scripts/wasm/gov_upload_code.sh (2)
2-2
: Consider removing or using theVOTER
variable.The
VOTER
variable is declared but not used in the script. If it's not needed, consider removing it to clean up the code.- VOTER=
7-7
: Consider removing or using theVAL
variable.The
VAL
variable is declared but not used in the script. If it's not needed, consider removing it to clean up the code.- VAL=$($BINARY keys show -a $VAL_KEY --keyring-backend test)
Tools
Shellcheck
[warning] 7-7: VAL appears unused. Verify use (or export if used externally).
(SC2034)
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (6)
- app/ante/ante_test.go (3 hunks)
- app/ante/suite.go (1 hunks)
- app/app.go (2 hunks)
- scripts/run-node.sh (4 hunks)
- scripts/tests/init-test-framework.sh (4 hunks)
- scripts/wasm/gov_upload_code.sh (2 hunks)
Files skipped from review as they are similar to previous changes (1)
- scripts/tests/init-test-framework.sh
Additional context used
Shellcheck
scripts/wasm/gov_upload_code.sh
[warning] 6-6: VOTER appears unused. Verify use (or export if used externally).
(SC2034)
[warning] 7-7: VAL appears unused. Verify use (or export if used externally).
(SC2034)
GitHub Check: devskim
app/app.go
[notice] 1096-1096: A "TODO" or similar was left in source code, possibly indicating incomplete functionality
Suspicious comment
Additional comments not posted (14)
scripts/wasm/gov_upload_code.sh (2)
10-10
: LGTM!The changes to update the denomination to
uhype
are correct.
20-20
: LGTM!The changes to update the denomination to
uhype
are correct.scripts/run-node.sh (5)
14-14
: Ensure thepkill
command targets the correct process.The
pkill
command is used to kill thehyperiad
process. Ensure that this is the correct process to target.
17-17
: LGTM!The changes to update the denomination to
uhype
are correct.
35-38
: LGTM!The changes to update the binary name to
hyperiad
are correct.
41-41
: LGTM!The changes to update the chain ID to
test-hype-1
are correct.
56-64
: LGTM!The changes to update the genesis configurations to use
uhype
are correct.app/ante/ante_test.go (5)
21-21
: LGTM!The changes to update the denomination to
uhype
are correct.
23-23
: LGTM!The changes to update the denomination to
uhype
are correct.
58-58
: LGTM!The changes to update the denomination to
uhype
are correct.
69-69
: LGTM!The changes to update the denomination to
uhype
are correct.
77-77
: LGTM!The changes to update the denomination to
uhype
are correct.app/ante/suite.go (1)
117-117
: LGTM!The changes to update the denomination to
uhype
are correct.app/app.go (1)
1071-1099
: Improve error handling and logging.The changes improve error handling and logging for consensus parameter migration. Ensure that the error handling strategy aligns with the overall application architecture.
Tools
GitHub Check: devskim
[notice] 1096-1096: A "TODO" or similar was left in source code, possibly indicating incomplete functionality
Suspicious comment
scripts/run-node.sh
Outdated
$SED_BINARY -i 's/minimum-gas-prices = "0.25ueve"/minimum-gas-prices = "0.0eve"/' $HOME_DIR/config/app.toml | ||
|
||
|
||
$SED_BINARY -i 's/minimum-gas-prices = "0.25uhype"/minimum-gas-prices = "0.0hype"/' $HOME_DIR/config/app.toml |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix the minimum gas price denomination.
The minimum gas price should be set to 0.0uhype
instead of 0.0hype
.
- $SED_BINARY -i 's/minimum-gas-prices = "0.25uhype"/minimum-gas-prices = "0.0hype"/' $HOME_DIR/config/app.toml
+ $SED_BINARY -i 's/minimum-gas-prices = "0.25uhype"/minimum-gas-prices = "0.0uhype"/' $HOME_DIR/config/app.toml
Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
$SED_BINARY -i 's/minimum-gas-prices = "0.25uhype"/minimum-gas-prices = "0.0hype"/' $HOME_DIR/config/app.toml | |
$SED_BINARY -i 's/minimum-gas-prices = "0.25uhype"/minimum-gas-prices = "0.0uhype"/' $HOME_DIR/config/app.toml |
i mean, check this: https://pkg.go.dev/github.com/cosmos/cosmos-sdk/baseapp#pkg-overview
Example: baseAppLegacySS := app.ParamsKeeper.Subspace(baseapp.Paramspace).WithKeyTable(paramstypes.ConsensusParamsKeyTable())
app.UpgradeKeeper.SetUpgradeHandler(
UpgradeName,
func(ctx sdk.Context, plan upgradetypes.Plan, fromVM module.VersionMap) (module.VersionMap, error) {
if cp := baseapp.GetConsensusParams(ctx, baseAppLegacySS); cp != nil {
app.ConsensusParamsKeeper.Set(ctx, cp)
} else {
ctx.Logger().Info("warning: consensus parameters are undefined; skipping migration", "upgrade", UpgradeName)
}
return app.ModuleManager.RunMigrations(ctx, app.Configurator(), fromVM)
},
) Developers can also bypass the use of the legacy Params subspace and set the values to app.ConsensusParamsKeeper.Set() explicitly.
Node Log: {"level":"info","module":"server","error":"rpc error: code = Internal desc = collections: not found: key 'no_key' of type github.com/cosmos/gogoproto/tendermint.types.ConsensusParams","time":"2024-07-09T08:53:41+07:00","message":"Attempting to migrate consensus parameters"}
{"level":"error","module":"server","time":"2024-07-09T08:53:41+07:00","message":"baseAppLegacySS is invalid"} |
great, wasm test passing - but does anyone know a fix for this annoying logspam with ❯ ./scripts/wasm/test_wasm.sh
Starting chain...
Wasm file already exists for cw20_base
Uploading contract...
service alliance.alliance.Msg does not have cosmos.msg.v1.service proto annotation
service alliance.alliance.Msg does not have cosmos.msg.v1.service proto annotation
gas estimate: 2784050
code: 0
codespace: ""
data: ""
events: []
gas_used: "0"
gas_wanted: "0"
height: "0"
info: ""
logs: []
raw_log: ""
timestamp: ""
tx: null
txhash: C6E838ED45BAAE1F571FBAF376C4973E51AF105848E54BE2D3404C9CFEBD7121
service alliance.alliance.Msg does not have cosmos.msg.v1.service proto annotation
code_infos: []
pagination:
next_key: null
total: "0"
Instantiating contract...
service alliance.alliance.Msg does not have cosmos.msg.v1.service proto annotation
- address: hype12lzflhjry5mkh03x5200mkwqgk32lxutqpmem7
name: demo
pubkey: '{"@type":"/cosmos.crypto.secp256k1.PubKey","key":"AmCiqZBD3JI/ehN00k8WJZTToK0zzfDmfG1ASynA7+rW"}'
type: local
**Important** write this mnemonic phrase in a safe place.
It is the only way to recover your account if you ever forget your password.
betray plunge alert aspect stomach bicycle road believe write goddess inherit legal chaos image merit point able suffer combine expire hospital chronic title left
service alliance.alliance.Msg does not have cosmos.msg.v1.service proto annotation
service alliance.alliance.Msg does not have cosmos.msg.v1.service proto annotation
service alliance.alliance.Msg does not have cosmos.msg.v1.service proto annotation
gas estimate: 274111
code: 0
codespace: ""
data: ""
events: []
gas_used: "0"
gas_wanted: "0"
height: "0"
info: ""
logs: []
raw_log: ""
timestamp: ""
tx: null
txhash: C4FB22F606573D97AB68883CA105013C89B2B610741F6E6BCF34A99C7A2EE19C
Waiting for tx to be processed...
service alliance.alliance.Msg does not have cosmos.msg.v1.service proto annotation
Validator Balance:
service alliance.alliance.Msg does not have cosmos.msg.v1.service proto annotation
data:
balance: "123456789000"
Demo Balance:
service alliance.alliance.Msg does not have cosmos.msg.v1.service proto annotation
data:
balance: "0"
service alliance.alliance.Msg does not have cosmos.msg.v1.service proto annotation
gas estimate: 215246
code: 0
codespace: ""
data: ""
events: []
gas_used: "0"
gas_wanted: "0"
height: "0"
info: ""
logs: []
raw_log: ""
timestamp: ""
tx: null
txhash: 8D0B84A6B8729B9189CCABE25463CAF69152F0DD72B92DAF6F80978BF05259C4
Waiting for tx to be processed...
Validator Balance:
service alliance.alliance.Msg does not have cosmos.msg.v1.service proto annotation
data:
balance: "122469134679"
Demo Balance:
service alliance.alliance.Msg does not have cosmos.msg.v1.service proto annotation
data:
balance: "987654321"
Success executing basic wasm tests!
~/Documents/GitHub/hyperia feat--hyperiad* 1m 11s 09:48:44 AM
❯ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (5)
- scripts/run-node.sh (4 hunks)
- scripts/tests/init-test-framework.sh (5 hunks)
- scripts/wasm/instantiate_cw20.sh (3 hunks)
- scripts/wasm/test_wasm.sh (1 hunks)
- scripts/wasm/upload_code.sh (1 hunks)
Files skipped from review as they are similar to previous changes (2)
- scripts/tests/init-test-framework.sh
- scripts/wasm/test_wasm.sh
Additional context used
Shellcheck
scripts/wasm/upload_code.sh
[warning] 9-9: DENOM appears unused. Verify use (or export if used externally).
(SC2034)
[warning] 13-13: TEST0_ADDRESS appears unused. Verify use (or export if used externally).
(SC2034)
Additional comments not posted (9)
scripts/wasm/upload_code.sh (2)
3-3
: LGTM!The BINARY variable is correctly updated to
build/hyperiad
.
5-5
: LGTM!The CHAIN_ID variable is correctly updated to
local-hype
.scripts/wasm/instantiate_cw20.sh (2)
5-5
: LGTM!The CHAIN_ID variable is correctly updated to
local-hype
.
6-6
: LGTM!The BINARY variable is correctly updated to
build/hyperiad
.scripts/run-node.sh (5)
14-14
: LGTM!The pkill command is correctly updated to
pkill -9 hyperiad
.
17-17
: LGTM!The DENOM variable is correctly updated to
uhype
.
38-38
: LGTM!The BINARY variable is correctly updated to
build/hyperiad
.
41-41
: LGTM!The CHAIN_ID variable is correctly updated to
local-hype
.
72-72
: LGTM!The minimum gas price denomination is correctly updated to
uhype
.
|
||
CONTRACT=cw20_base | ||
HOME=mytestnet | ||
DENOM="ueve" | ||
DENOM="uhype" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove unused variable.
The DENOM
variable is declared but not used in the script. Consider removing it to avoid confusion.
- DENOM="uhype"
Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
DENOM="uhype" |
Tools
Shellcheck
[warning] 9-9: DENOM appears unused. Verify use (or export if used externally).
(SC2034)
probably gonna redo this PR in smaller steps, rather than as it's current state, fyi |
Hey, actually this is pretty good and thank you. I'm going to live through it I'll probably push to your door but I'll be using your commits. thank you so much |
Description:
This PR addresses naming inconsistencies across the project and updates various configurations:
Key changes:
This standardization effort ensures consistency across the codebase, improves project coherence, and prepares for the upcoming testnet launch.
Please review before merge - ./scripts/**.sh tests not yet working, running due to:
File at mytestnet/config/genesis.json is a valid genesis file
ending up with
Summary by CodeRabbit
New Features
Bug Fixes
FinalizeBlock
method.Style
Chores
.gitignore
for improved git management.