We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a52136 commit 1edacf6Copy full SHA for 1edacf6
contracts/okp4-cognitarium/src/msg.rs
@@ -2,7 +2,10 @@ use cosmwasm_schema::{cw_serde, QueryResponses};
2
3
/// Instantiate message
4
#[cw_serde]
5
-pub struct InstantiateMsg {}
+pub struct InstantiateMsg {
6
+ /// Limitations regarding store usage.
7
+ pub limits: StoreLimits,
8
+}
9
10
/// Execute messages
11
@@ -12,3 +15,12 @@ pub enum ExecuteMsg {}
12
15
13
16
#[derive(QueryResponses)]
14
17
pub enum QueryMsg {}
18
+
19
+/// # StoreLimits
20
+/// Contains limitations regarding store usages.
21
+#[cw_serde]
22
+pub struct StoreLimits {
23
+ /// max_triple_count denotes the maximum number of triples the store can contains.
24
+ /// If None, there is no limit on the number of triples.
25
+ pub max_triple_count: Option<Uint128>,
26
0 commit comments