MsgSetDynamicStoreValue
Proto Definition
message MsgSetDynamicStoreValue {
string creator = 1; // Address setting the value (must be store creator)
string storeId = 2; // ID of the dynamic store
string address = 3; // Address to set the value for
bool value = 4; // Boolean value to set
}
message MsgSetDynamicStoreValueResponse {
bool previousValue = 1; // The previous value before the update
repeated string reviewItems = 2; // Advisory review items about the transaction
}Response
Usage Example
JSON Example
Last updated