For the complete documentation index, see llms.txt. This page is also available as Markdown.

MsgSetDynamicStoreValue

Sets a boolean value for a specific address in a dynamic store.

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

The response includes:

  • previousValue: The boolean value that was stored before this update

  • reviewItems: Advisory strings about the transaction (see Review Items)

Usage Example

JSON Example

Last updated