Skip to content

Commit 0a129c5

Browse files
committed
feat(dataverse): add triple store config to instantiate msg
1 parent 9e1b882 commit 0a129c5

File tree

4 files changed

+20
-7
lines changed

4 files changed

+20
-7
lines changed

Cargo.lock

+1-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ cw-utils = "1.0.2"
1111
cw2 = "1.1.1"
1212
okp4-logic-bindings = { path = "packages/okp4-logic-bindings" }
1313
okp4-objectarium = { path = "contracts/okp4-objectarium" }
14+
okp4-cognitarium = { path = "contracts/okp4-cognitarium" }
1415
okp4-objectarium-client = { path = "packages/okp4-objectarium-client" }
1516
schemars = "0.8.16"
1617
serde = { version = "1.0.192", default-features = false, features = ["derive"] }

contracts/okp4-dataverse/Cargo.toml

+1-3
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,7 @@ cw-storage-plus.workspace = true
3535
cw-utils.workspace = true
3636
cw2.workspace = true
3737
itertools = "0.12.0"
38-
okp4-logic-bindings.workspace = true
39-
okp4-objectarium-client.workspace = true
40-
okp4-objectarium.workspace = true
38+
okp4-cognitarium.workspace = true
4139
schemars.workspace = true
4240
serde.workspace = true
4341
thiserror.workspace = true

contracts/okp4-dataverse/src/msg.rs

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
use cosmwasm_schema::{cw_serde, QueryResponses};
2-
use cosmwasm_std::Binary;
2+
use cosmwasm_std::{Binary, Uint64};
33

44
/// `InstantiateMsg` is used to initialize a new instance of the dataverse.
55
#[cw_serde]
66
pub struct InstantiateMsg {
77
/// A unique name to identify the dataverse instance.
88
pub name: String,
9+
10+
/// The configuration used to instantiate the triple store.
11+
pub triplestore_config: TripleStoreConfig,
912
}
1013

1114
/// `ExecuteMsg` defines the set of possible actions that can be performed on the dataverse.
@@ -120,6 +123,19 @@ pub enum ExecuteMsg {
120123
},
121124
}
122125

126+
/// # TripleStoreConfig
127+
/// `TripleStoreConfig` represents the configuration related to the management of the triple store.
128+
#[cw_serde]
129+
pub struct TripleStoreConfig {
130+
/// The code id that will be used to instantiate the triple store contract in which
131+
/// to store dataverse semantic data. It must implement the cognitarium interface.
132+
pub code_id: Uint64,
133+
134+
/// Limitations regarding triple store usage.
135+
#[serde(default = "okp4_cognitarium::msg::StoreLimitsInput::default")]
136+
pub limits: okp4_cognitarium::msg::StoreLimitsInput,
137+
}
138+
123139
/// # RdfFormat
124140
/// `RdfFormat` represents the various serialization formats for RDF (Resource Description Framework) data.
125141
#[cw_serde]

0 commit comments

Comments
 (0)