Introducing Archway v5.0.0 #27
emperorjm
announced in
Announcements
Replies: 1 comment 3 replies
-
Hiya, chksum mismatch ? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We are pleased to announce that we’ve tagged a new version of the Archway protocol which has some major changes and therefore we’ve jumped from
v4.0.2
tov5.0.0
.A myriad of updates has been made, the most notable being the shift to
Cosmos SDK
version0.47.5
fromv0.45.16
. This transition also allows us to upgrade bothwasmd
(from v0.33 to v0.43) andibc-go
(from v4 to v7).Before introducing these changes to our Testnet and Mainnet, we will deploy these updates to our Development chain to facilitate comprehensive testing. This step is crucial, especially for developers, ensuring that contracts and frontend apps are rigorously vetted to eliminate potential issues. We will make an announcement once this development environment is up and running.
Now, let's explore the implications for the various stakeholders in the Archway ecosystem.
Smart Contract Developer
x/gov v1
types. The legacy gov props forx/wasmd
have been removed from the codebase.DistributionQuery::DelegationRewards
,DistributionQuery::DelegationTotalRewards
andDistributionQuery::DelegatorValidators
queries.Frontend Developer
x/gov v1
types. Some legacy proposal types are still supported so, good luck!Validator & Node Operators
One important reminder is to back up the private keys of your nodes. Some migrations could affect these keys, so it's crucial to ensure you can reimport them if any issues arise.
archwayd export -h
for more details.archwayd genesis validate-gentx
--broadcast-mode block
has been removed. RIP You can use-b sync
and thenarchwayd q tx <txhash>
to get the response.Relayer Operator
--broadcast-mode block
has been removed.The Community
archwayd tx gov submit-proposal -h
for more details.MinInitialDepositRatio
has been added which mandates the proposal creator to pay minimumx%
of the deposit. This will help counter spam. (Currently, this feature is disabled. Can be enabled post upgrade if needed)x/nft
modulex/rewards
parameters has changed. It now follows thex/gov v1
type.Beta Was this translation helpful? Give feedback.
All reactions