Created
July 5, 2022 00:31
-
-
Save zeroFruit/8843c680dc16ea7f2bee569e478dc5a9 to your computer and use it in GitHub Desktop.
Cosmos Dev Series: Cosmos-SDK-based Blockchain Upgrade
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SoftwareUpgradeProposal is a gov Content type for initiating a software | |
// upgrade. | |
message SoftwareUpgradeProposal { | |
string title = 1; | |
string description = 2; | |
Plan plan = 3 [(gogoproto.nullable) = false]; | |
} | |
// Plan specifies information about a planned upgrade and when it should occur. | |
message Plan { | |
string name = 1; | |
... | |
int64 height = 3; | |
string info = 4; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment