1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
use std::{collections::HashSet, fmt::Debug};
use abstract_os::objects::dependency::StaticDependency;
use abstract_sdk::{
base::{
AbstractContract, ExecuteHandlerFn, IbcCallbackHandlerFn, InstantiateHandlerFn,
QueryHandlerFn, ReceiveHandlerFn, ReplyHandlerFn,
},
feature_objects::AnsHost,
namespaces::BASE_STATE,
os::version_control::Core,
};
use cosmwasm_std::{Addr, Empty, StdError, StdResult, Storage};
use cw_storage_plus::{Item, Map};
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
use crate::ApiError;
pub const TRADER_NAMESPACE: &str = "traders";
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, JsonSchema)]
pub struct ApiState {
pub version_control: Addr,
pub ans_host: AnsHost,
}
pub struct ApiContract<
Error: From<cosmwasm_std::StdError> + From<ApiError> + 'static,
CustomExecMsg: 'static = Empty,
CustomInitMsg: 'static = Empty,
CustomQueryMsg: 'static = Empty,
Receive: 'static = Empty,
> {
pub(crate) contract:
AbstractContract<Self, Error, CustomExecMsg, CustomInitMsg, CustomQueryMsg, Empty, Receive>,
pub(crate) base_state: Item<'static, ApiState>,
pub traders: Map<'static, Addr, HashSet<Addr>>,
pub target_os: Option<Core>,
}
impl<
Error: From<cosmwasm_std::StdError> + From<ApiError>,
CustomExecMsg,
CustomInitMsg,
CustomQueryMsg,
ReceiveMsg,
> ApiContract<Error, CustomExecMsg, CustomInitMsg, CustomQueryMsg, ReceiveMsg>
{
pub const fn new(
name: &'static str,
version: &'static str,
metadata: Option<&'static str>,
) -> Self {
Self {
contract: AbstractContract::new(name, version, metadata),
base_state: Item::new(BASE_STATE),
traders: Map::new(TRADER_NAMESPACE),
target_os: None,
}
}
pub const fn with_dependencies(mut self, dependencies: &'static [StaticDependency]) -> Self {
self.contract = self.contract.with_dependencies(dependencies);
self
}
pub const fn with_replies(
mut self,
reply_handlers: &'static [(u64, ReplyHandlerFn<Self, Error>)],
) -> Self {
self.contract = self.contract.with_replies([&[], reply_handlers]);
self
}
pub const fn with_ibc_callbacks(
mut self,
callbacks: &'static [(&'static str, IbcCallbackHandlerFn<Self, Error>)],
) -> Self {
self.contract = self.contract.with_ibc_callbacks(callbacks);
self
}
pub const fn with_instantiate(
mut self,
instantiate_handler: InstantiateHandlerFn<Self, CustomInitMsg, Error>,
) -> Self {
self.contract = self.contract.with_instantiate(instantiate_handler);
self
}
pub const fn with_receive(
mut self,
receive_handler: ReceiveHandlerFn<Self, ReceiveMsg, Error>,
) -> Self {
self.contract = self.contract.with_receive(receive_handler);
self
}
pub const fn with_execute(
mut self,
execute_handler: ExecuteHandlerFn<Self, CustomExecMsg, Error>,
) -> Self {
self.contract = self.contract.with_execute(execute_handler);
self
}
pub const fn with_query(mut self, query_handler: QueryHandlerFn<Self, CustomQueryMsg>) -> Self {
self.contract = self.contract.with_query(query_handler);
self
}
pub fn state(&self, store: &dyn Storage) -> StdResult<ApiState> {
self.base_state.load(store)
}
pub fn target(&self) -> Result<&Addr, ApiError> {
Ok(&self
.target_os
.as_ref()
.ok_or_else(|| StdError::generic_err("No target OS specified to execute on."))?
.proxy)
}
}