-
Notifications
You must be signed in to change notification settings - Fork 0
docs: add proposal 4 with upgrade v7.1 #24
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,20 @@ | ||||||
| { | ||||||
| "messages": [ | ||||||
| { | ||||||
| "@type": "/cosmos.upgrade.v1beta1.MsgSoftwareUpgrade", | ||||||
| "authority": "kii10d07y265gmmuvt4z0w9aw880jnsr700jrff0qv", | ||||||
| "plan": { | ||||||
| "name": "v7.1.0-mainnet", | ||||||
| "time": "0001-01-01T00:00:00Z", | ||||||
| "height": "3733250", | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Major: Block height mismatch between plan and summary. The upgrade plan specifies height 📝 Proposed fix- "summary": "This proposal upgrades Kiichain to version v7.1.0-mainnet.\n\nThe upgrade is scheduled for 2026-03-19 around 17:00:00 UTC (block height 3,585,457).\n\nChangelog and release details:\n- https://github.com/KiiChain/kiichain/releases/tag/v7.1.0-mainnet",
+ "summary": "This proposal upgrades Kiichain to version v7.1.0-mainnet.\n\nThe upgrade is scheduled for 2026-03-19 around 17:00:00 UTC (block height 3,733,250).\n\nChangelog and release details:\n- https://github.com/KiiChain/kiichain/releases/tag/v7.1.0-mainnet",Also applies to: 18-18 🤖 Prompt for AI Agents |
||||||
| "info": "", | ||||||
| "upgraded_client_state": null | ||||||
| } | ||||||
| } | ||||||
| ], | ||||||
| "metadata": "ipfs://CID", | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Replace IPFS CID placeholder. The metadata field contains a placeholder 🤖 Prompt for AI Agents |
||||||
| "deposit": "3500000000000000000000akii", | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Description: Verify the expedited_min_deposit parameter from genesis or governance module
# Check governance params in genesis.json
if [ -f "kiichain/genesis.json" ]; then
echo "=== Expedited Min Deposit from genesis.json ==="
cat kiichain/genesis.json | jq -r '.app_state.gov.params.expedited_min_deposit'
fi
# Also check if there are any governance parameter update proposals
echo -e "\n=== Searching for governance parameter updates ==="
rg -n "expedited_min_deposit" --type jsonRepository: KiiChain/mainnets Length of output: 294 🏁 Script executed: cat kiichain/proposals/proposal_4.json | jq -r '.deposit'Repository: KiiChain/mainnets Length of output: 87 Critical: Deposit amount insufficient for expedited proposal. The deposit is Proposed fix- "deposit": "3500000000000000000000akii",
+ "deposit": "35000000000000000000000akii",📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| "title": "Upgrade Kiichain to v7.1.0-mainnet", | ||||||
| "summary": "This proposal upgrades Kiichain to version v7.1.0-mainnet.\n\nThe upgrade is scheduled for 2026-03-19 around 17:00:00 UTC (block height 3,585,457).\n\nChangelog and release details:\n- https://github.com/KiiChain/kiichain/releases/tag/v7.1.0-mainnet", | ||||||
| "expedited": true | ||||||
| } | ||||||
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.
🧩 Analysis chain
🏁 Script executed:
Repository: KiiChain/mainnets
Length of output: 467
🏁 Script executed:
Repository: KiiChain/mainnets
Length of output: 1794
Update summary field with correct block height.
Proposal 4 reschedules the same upgrade (
v7.1.0-mainnet) for a later block height (3733250), but its summary field still references the original height from proposal 3 (3,585,457). Update the summary to reflect the new scheduled height: "block height 3,733,250" instead of "3,585,457".🤖 Prompt for AI Agents