File tree 7 files changed +69
-52
lines changed
contracts/cw-ics20-latest
7 files changed +69
-52
lines changed Original file line number Diff line number Diff line change @@ -6,4 +6,7 @@ libwasmvm_muslc.a
6
6
tests /test-data.json
7
7
** /artifacts /*
8
8
! ** /artifacts /* .wasm
9
- .env
9
+ .env
10
+
11
+ .scannerwork /
12
+ clippy-report.json
Original file line number Diff line number Diff line change @@ -5,7 +5,17 @@ resolver = "2"
5
5
6
6
[workspace .dependencies ]
7
7
cosmwasm-testing-util = { git = " https://github.com/oraichain/cosmwasm-testing-util.git" , rev = " 24c138c" }
8
- oraiswap = { git = " https://github.com/oraichain/oraiswap.git" , rev = " 03f4955b" }
8
+ oraiswap = { git = " https://github.com/oraichain/oraiswap.git" , rev = " 29decac" }
9
+ cw2 = { version = " 1.0.1" }
10
+ cw20 = { version = " 1.0.1" }
11
+ cw20-base = { version = " 1.0.1" }
12
+ cw-storage-plus = { version = " 1.0.1" }
13
+ cw-controllers = { version = " 1.0.1" }
14
+ cw-utils = " 0.16.0"
15
+ cw20-ics20-msg = { path = " ./packages/cw20-ics20-msg" }
16
+ cosmwasm-schema = { version = " 1.2.8" }
17
+ cosmwasm-std = { version = " 1.2.8" , default-features = false }
18
+ cosmwasm-vm = { version = " 1.2.8" }
9
19
# osmosis-test-tube = { git = "https://github.com/oraichain/test-tube.git", rev = "354d580" }
10
20
11
21
[profile .release ]
Original file line number Diff line number Diff line change @@ -18,21 +18,20 @@ backtraces = ["cosmwasm-std/backtraces"]
18
18
library = []
19
19
20
20
[dependencies ]
21
- cosmwasm-schema = " =1.2 "
22
- cw-utils = " 0.16.0 "
23
- cw2 = " 1.0.1 "
24
- cw20 = " 1.0.1 "
25
- cw20-ics20-msg = { path = " ../../packages/cw20-ics20-msg " }
21
+ cosmwasm-schema = { workspace = true }
22
+ cw-utils = { workspace = true }
23
+ cw2 = { workspace = true }
24
+ cw20 = { workspace = true }
25
+ cw20-ics20-msg = { workspace = true }
26
26
oraiswap = { workspace = true }
27
- cosmwasm-std = { version = " =1.2 " , features = [" ibc3" ] }
28
- cw-storage-plus = " 1.0.1 "
29
- cw-controllers = " 1.0.1 "
27
+ cosmwasm-std = { workspace = true , features = [" ibc3" ] }
28
+ cw-storage-plus = { workspace = true }
29
+ cw-controllers = { workspace = true }
30
30
thiserror = { version = " 1.0.23" }
31
31
sha256 = " =1.1.0"
32
32
33
33
[dev-dependencies ]
34
- cosmwasm-vm = { version = " =1.2 " }
34
+ cosmwasm-vm = { workspace = true }
35
35
# osmosis-test-tube = { workspace = true }
36
36
cosmwasm-testing-util = { workspace = true }
37
37
anybuf = " 0.3.0"
38
- cw-multi-test = " 0.16.0"
Original file line number Diff line number Diff line change @@ -11,15 +11,14 @@ documentation = "https://docs.orai.io"
11
11
readme = " README.md"
12
12
13
13
[dependencies ]
14
- cosmwasm-schema = " =1.2"
15
- cosmwasm-std = { version = " =1.2" , default-features = false }
16
- cw-storage-plus = " 1.0.1"
17
- cw20 = " 1.0.1"
18
- bech32 = " 0.8.1"
14
+ cosmwasm-schema = { workspace = true }
15
+ cosmwasm-std = { workspace = true }
16
+ cw-storage-plus = { workspace = true }
17
+ cw20 = { workspace = true }
19
18
oraiswap = { workspace = true }
19
+ bech32 = " 0.8.1"
20
20
anybuf = " 0.3.0"
21
21
22
22
[dev-dependencies ]
23
- cw-multi-test = " 0.16.0"
24
23
cosmwasm-testing-util = { workspace = true }
25
- cosmwasm-vm = { version = " =1.2 " }
24
+ cosmwasm-vm = { workspace = true }
Original file line number Diff line number Diff line change @@ -186,6 +186,7 @@ mod tests {
186
186
SystemResult :: Ok ( ContractResult :: Ok (
187
187
to_binary ( & ConvertInfoResponse {
188
188
token_ratio : TokenRatio {
189
+ is_mint_burn : false ,
189
190
info : AssetInfo :: Token {
190
191
contract_addr : Addr :: unchecked ( "orai123" ) ,
191
192
} ,
@@ -252,6 +253,7 @@ mod tests {
252
253
res,
253
254
Some ( ConvertInfoResponse {
254
255
token_ratio: TokenRatio {
256
+ is_mint_burn: false ,
255
257
info: AssetInfo :: Token {
256
258
contract_addr: Addr :: unchecked( "orai123" ) ,
257
259
} ,
Original file line number Diff line number Diff line change
1
+ [toolchain ]
2
+ channel = " 1.76"
3
+ components = [" rustfmt" , " rust-src" , " clippy" ]
4
+ targets = [" wasm32-unknown-unknown" ]
5
+ profile = " minimal"
You can’t perform that action at this time.
0 commit comments