Skip to content

Instantly share code, notes, and snippets.

@zeroFruit
Created July 5, 2022 00:31
Show Gist options
  • Save zeroFruit/8843c680dc16ea7f2bee569e478dc5a9 to your computer and use it in GitHub Desktop.
Save zeroFruit/8843c680dc16ea7f2bee569e478dc5a9 to your computer and use it in GitHub Desktop.
Cosmos Dev Series: Cosmos-SDK-based Blockchain Upgrade
// 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