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
use crate::{
self as fadroma,
prelude::{Humanize, Canonize},
cosmwasm_std::{self, HumanAddr, Env},
schemars::{self, JsonSchema},
impl_canonize_default
};
use serde::{Deserialize, Serialize};
pub type CodeId = u64;
pub type CodeHash = String;
#[derive(Serialize, Deserialize, JsonSchema, Clone, Debug)]
pub struct ContractInstantiationInfo {
pub code_hash: CodeHash,
pub id: CodeId
}
impl_canonize_default!(ContractInstantiationInfo);
impl PartialEq for ContractInstantiationInfo {
fn eq(&self, other: &Self) -> bool {
self.id == other.id
}
}
#[derive(Default, Serialize, Canonize, Deserialize, JsonSchema, Clone, Debug)]
pub struct ContractLink<A> {
pub address: A,
pub code_hash: CodeHash
}
impl<A: PartialEq> PartialEq for ContractLink<A> {
fn eq(&self, other: &Self) -> bool {
self.address == other.address
}
}
impl From<Env> for ContractLink<HumanAddr> {
fn from (env: Env) -> ContractLink<HumanAddr> {
ContractLink {
address: env.contract.address,
code_hash: env.contract_code_hash,
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_eq() {
assert_eq!(
ContractInstantiationInfo {
id: 1,
code_hash: "c1dc8261059fee1de9f1873cd1359ccd7a6bc5623772661fa3d55332eb652084".into()
},
ContractInstantiationInfo {
id: 1,
code_hash: "c1dc8261059fee1de9f1873cd1359ccd7a6bc5623772661fa3d55332eb652084".into()
}
);
assert_eq!(
ContractInstantiationInfo {
id: 1,
code_hash: "c1dc8261059fee1de9f1873cd1359ccd7a6bc5623772661fa3d55332eb652084".into()
},
ContractInstantiationInfo {
id: 1,
code_hash: "C1dc8261059fee1de9f1873cd1359ccd7a6bc5623772661fa3d55332eb652084".into()
}
);
assert_ne!(
ContractInstantiationInfo {
id: 1,
code_hash: "c1dc8261059fee1de9f1873cd1359ccd7a6bc5623772661fa3d55332eb652084".into()
},
ContractInstantiationInfo {
id: 2,
code_hash: "C1dc8261059fee1de9f1873cd1359ccd7a6bc5623772661fa3d55332eb652084".into()
}
);
assert_eq!(
ContractLink {
address: HumanAddr::from("secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4"),
code_hash: "c1dc8261059fee1de9f1873cd1359ccd7a6bc5623772661fa3d55332eb652084".into()
},
ContractLink {
address: HumanAddr::from("secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4"),
code_hash: "c1dc8261059fee1de9f1873cd1359ccd7a6bc5623772661fa3d55332eb652084".into()
}
);
assert_eq!(
ContractLink {
address: HumanAddr::from("secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4"),
code_hash: "c1dc8261059fee1de9f1873cd1359ccd7a6bc5623772661fa3d55332eb652084".into()
},
ContractLink {
address: HumanAddr::from("secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4"),
code_hash: "C1dc8261059fee1de9f1873cd1359ccd7a6bc5623772661fa3d55332eb652084".into()
}
);
assert_ne!(
ContractLink {
address: HumanAddr::from("secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml4"),
code_hash: "c1dc8261059fee1de9f1873cd1359ccd7a6bc5623772661fa3d55332eb652084".into()
},
ContractLink {
address: HumanAddr::from("secret1rgm2m5t530tdzyd99775n6vzumxa5luxcllml5"),
code_hash: "C1dc8261059fee1de9f1873cd1359ccd7a6bc5623772661fa3d55332eb652084".into()
}
);
}
}