Technical Details
New Data Structures
ContractInfo Enhancement
message ContractInfo {
// ... existing fields ...
bool require_governance = 9; // NEW FIELD
}New Message Types
message MigrateContractInfo {
string address = 1;
uint64 new_code_id = 2;
}message MsgMigrateContractProposal {
string authority = 1; // Governance module address
string title = 2; // Proposal title
string description = 3; // Proposal description
repeated MigrateContractInfo contracts = 4; // Multiple contracts
}New Query Types
Last updated
Was this helpful?