Skip to content

Commit 1edacf6

Browse files
committedApr 20, 2023
feat(cognitarium): design instantiate message
1 parent 0a52136 commit 1edacf6

File tree

1 file changed

+13
-1
lines changed
  • contracts/okp4-cognitarium/src

1 file changed

+13
-1
lines changed
 

‎contracts/okp4-cognitarium/src/msg.rs

+13-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ use cosmwasm_schema::{cw_serde, QueryResponses};
22

33
/// Instantiate message
44
#[cw_serde]
5-
pub struct InstantiateMsg {}
5+
pub struct InstantiateMsg {
6+
/// Limitations regarding store usage.
7+
pub limits: StoreLimits,
8+
}
69

710
/// Execute messages
811
#[cw_serde]
@@ -12,3 +15,12 @@ pub enum ExecuteMsg {}
1215
#[cw_serde]
1316
#[derive(QueryResponses)]
1417
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

Comments
 (0)
Please sign in to comment.