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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
use crate::{contract::Contract, error::BootError, CwEnv};
use cosmwasm_std::{Addr, Coin};
use serde::{de::DeserializeOwned, Serialize};
use std::fmt::Debug;
pub trait ContractInstance<Chain: CwEnv> {
fn as_instance(&self) -> &Contract<Chain>;
fn as_instance_mut(&mut self) -> &mut Contract<Chain>;
fn id(&self) -> String {
self.as_instance().id.clone()
}
fn address(&self) -> Result<Addr, BootError> {
Contract::address(self.as_instance())
}
fn addr_str(&self) -> Result<String, BootError> {
Contract::address(self.as_instance()).map(|addr| addr.into_string())
}
fn code_id(&self) -> Result<u64, BootError> {
Contract::code_id(self.as_instance())
}
fn set_address(&self, address: &Addr) {
Contract::set_address(self.as_instance(), address)
}
fn set_code_id(&self, code_id: u64) {
Contract::set_code_id(self.as_instance(), code_id)
}
fn get_chain(&self) -> &Chain {
Contract::get_chain(self.as_instance())
}
}
pub trait CwInterface {
type InstantiateMsg: Serialize + Debug;
type ExecuteMsg: Serialize + Debug;
type QueryMsg: Serialize + Debug;
type MigrateMsg: Serialize + Debug;
}
pub trait BootExecute<Chain: CwEnv> {
type ExecuteMsg: Serialize;
fn execute(
&self,
execute_msg: &Self::ExecuteMsg,
coins: Option<&[Coin]>,
) -> Result<Chain::Response, BootError>;
}
impl<T: CwInterface + ContractInstance<Chain>, Chain: CwEnv> BootExecute<Chain> for T {
type ExecuteMsg = <T as CwInterface>::ExecuteMsg;
fn execute(
&self,
execute_msg: &Self::ExecuteMsg,
coins: Option<&[Coin]>,
) -> Result<Chain::Response, BootError> {
self.as_instance().execute(&execute_msg, coins)
}
}
pub trait BootInstantiate<Chain: CwEnv> {
type InstantiateMsg: Serialize;
fn instantiate(
&self,
instantiate_msg: &Self::InstantiateMsg,
admin: Option<&Addr>,
coins: Option<&[Coin]>,
) -> Result<Chain::Response, BootError>;
}
impl<T: CwInterface + ContractInstance<Chain>, Chain: CwEnv> BootInstantiate<Chain> for T {
type InstantiateMsg = <T as CwInterface>::InstantiateMsg;
fn instantiate(
&self,
instantiate_msg: &Self::InstantiateMsg,
admin: Option<&Addr>,
coins: Option<&[Coin]>,
) -> Result<Chain::Response, BootError> {
self.as_instance()
.instantiate(instantiate_msg, admin, coins)
}
}
pub trait BootQuery<Chain: CwEnv> {
type QueryMsg: Serialize;
fn query<G: Serialize + DeserializeOwned + Debug>(
&self,
query_msg: &Self::QueryMsg,
) -> Result<G, BootError>;
}
impl<T: CwInterface + ContractInstance<Chain>, Chain: CwEnv> BootQuery<Chain> for T {
type QueryMsg = <T as CwInterface>::QueryMsg;
fn query<G: Serialize + DeserializeOwned + Debug>(
&self,
query_msg: &Self::QueryMsg,
) -> Result<G, BootError> {
self.as_instance().query(query_msg)
}
}
pub trait BootMigrate<Chain: CwEnv> {
type MigrateMsg: Serialize;
fn migrate(
&self,
migrate_msg: &Self::MigrateMsg,
new_code_id: u64,
) -> Result<Chain::Response, BootError>;
}
impl<T: CwInterface + ContractInstance<Chain>, Chain: CwEnv> BootMigrate<Chain> for T {
type MigrateMsg = <T as CwInterface>::MigrateMsg;
fn migrate(
&self,
migrate_msg: &Self::MigrateMsg,
new_code_id: u64,
) -> Result<Chain::Response, BootError> {
self.as_instance().migrate(migrate_msg, new_code_id)
}
}
pub trait BootUpload<Chain: CwEnv> {
fn upload(&mut self) -> Result<Chain::Response, BootError>;
}
impl<T: ContractInstance<Chain>, Chain: CwEnv> BootUpload<Chain> for T {
fn upload(&mut self) -> Result<Chain::Response, BootError> {
self.as_instance_mut().upload()
}
}
pub trait CallAs<Chain: CwEnv>: BootExecute<Chain> + ContractInstance<Chain> + Clone {
type Sender: Clone;
fn set_sender(&mut self, sender: &Self::Sender);
fn call_as(&self, sender: &Self::Sender) -> Self;
}