File tree Expand file tree Collapse file tree 7 files changed +93
-74
lines changed Expand file tree Collapse file tree 7 files changed +93
-74
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " cw2981-royalties"
3
- version = " 0.10 .0"
3
+ version = " 0.12 .0"
4
4
authors = [" Alex Lynham <alex@lynh.am>" ]
5
5
edition = " 2018"
6
6
description = " Basic implementation of royalties for cw721 NFTs with token level royalties"
@@ -25,12 +25,14 @@ backtraces = ["cosmwasm-std/backtraces"]
25
25
library = []
26
26
27
27
[dependencies ]
28
- cw721 = { path = " ../../packages/cw721" , version = " 0.11" }
29
- cw721-base = { path = " ../cw721-base" , version = " 0.11" , features = [" library" ] }
30
- cosmwasm-std = { version = " 1.0.0-beta" }
28
+ cw721 = { path = " ../../packages/cw721" , version = " 0.12.0" }
29
+ cw721-base = { path = " ../cw721-base" , version = " 0.12.0" , features = [
30
+ " library" ,
31
+ ] }
32
+ cosmwasm-std = { version = " 1.0.0-beta5" }
31
33
schemars = " 0.8.1"
32
34
serde = { version = " 1.0.103" , default-features = false , features = [" derive" ] }
33
35
thiserror = { version = " 1.0.23" }
34
36
35
37
[dev-dependencies ]
36
- cosmwasm-schema = { version = " 0.16.0 " }
38
+ cosmwasm-schema = { version = " 1.0.0-beta5 " }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " cw721-base"
3
- version = " 0.11.1"
4
- authors = [" Ethan Frey <ethanfrey@users.noreply.github.com>" , " Orkun Külçe <orkun@deuslabs.fi>" ]
3
+ version = " 0.12.0"
4
+ authors = [
5
+ " Ethan Frey <ethanfrey@users.noreply.github.com>" ,
6
+ " Orkun Külçe <orkun@deuslabs.fi>" ,
7
+ ]
5
8
edition = " 2018"
6
9
description = " Basic implementation cw721 NFTs"
7
10
license = " Apache-2.0"
@@ -25,14 +28,14 @@ backtraces = ["cosmwasm-std/backtraces"]
25
28
library = []
26
29
27
30
[dependencies ]
28
- cw-utils = { version = " 0.11 " }
29
- cw2 = { version = " 0.11 " }
30
- cw721 = { path = " ../../packages/cw721" , version = " 0.11 " }
31
- cw-storage-plus = { version = " 0.11 " }
32
- cosmwasm-std = { version = " 1.0.0-beta " }
31
+ cw-utils = " 0.12.1 "
32
+ cw2 = " 0.12.1 "
33
+ cw721 = { path = " ../../packages/cw721" , version = " 0.12.0 " }
34
+ cw-storage-plus = " 0.12.1 "
35
+ cosmwasm-std = { version = " 1.0.0-beta5 " }
33
36
schemars = " 0.8"
34
37
serde = { version = " 1.0" , default-features = false , features = [" derive" ] }
35
38
thiserror = { version = " 1.0" }
36
39
37
40
[dev-dependencies ]
38
- cosmwasm-schema = { version = " 1.0.0-beta " }
41
+ cosmwasm-schema = { version = " 1.0.0-beta5 " }
Original file line number Diff line number Diff line change 65
65
) -> StdResult < OperatorsResponse > {
66
66
let limit = limit. unwrap_or ( DEFAULT_LIMIT ) . min ( MAX_LIMIT ) as usize ;
67
67
let start_addr = maybe_addr ( deps. api , start_after) ?;
68
- let start = start_addr. map ( |addr| Bound :: exclusive ( addr . as_ref ( ) ) ) ;
68
+ let start = start_addr. as_ref ( ) . map ( Bound :: exclusive) ;
69
69
70
70
let owner_addr = deps. api . addr_validate ( & owner) ?;
71
71
let res: StdResult < Vec < _ > > = self
@@ -150,7 +150,7 @@ where
150
150
limit : Option < u32 > ,
151
151
) -> StdResult < TokensResponse > {
152
152
let limit = limit. unwrap_or ( DEFAULT_LIMIT ) . min ( MAX_LIMIT ) as usize ;
153
- let start = start_after. map ( Bound :: exclusive ) ;
153
+ let start = start_after. map ( |s| Bound :: ExclusiveRaw ( s . into ( ) ) ) ;
154
154
155
155
let owner_addr = deps. api . addr_validate ( & owner) ?;
156
156
let tokens: Vec < String > = self
@@ -173,7 +173,7 @@ where
173
173
limit : Option < u32 > ,
174
174
) -> StdResult < TokensResponse > {
175
175
let limit = limit. unwrap_or ( DEFAULT_LIMIT ) . min ( MAX_LIMIT ) as usize ;
176
- let start = start_after. map ( Bound :: exclusive ) ;
176
+ let start = start_after. map ( |s| Bound :: ExclusiveRaw ( s . into ( ) ) ) ;
177
177
178
178
let tokens: StdResult < Vec < String > > = self
179
179
. tokens
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " cw721-fixed-price"
3
- version = " 0.1 .0"
3
+ version = " 0.12 .0"
4
4
authors = [" Vernon Johnson <vtj2105@columbia.edu>" ]
5
5
edition = " 2018"
6
6
@@ -40,17 +40,20 @@ optimize = """docker run --rm -v "$(pwd)":/code \
40
40
"""
41
41
42
42
[dependencies ]
43
- cosmwasm-std = { version = " 1.0.0-beta " }
44
- cosmwasm-storage = { version = " 1.0.0-beta " }
45
- cw-storage-plus = " 0.11 .1"
46
- cw2 = " 0.11 .1"
43
+ cosmwasm-std = { version = " 1.0.0-beta5 " }
44
+ cosmwasm-storage = { version = " 1.0.0-beta5 " }
45
+ cw-storage-plus = " 0.12 .1"
46
+ cw2 = " 0.12 .1"
47
47
schemars = " 0.8.3"
48
- cw721-base = { path = " ../cw721-base" , version = " 0.11.1" , features = [ " library" ] }
49
- cw20 = " 0.11.1"
48
+ cw721-base = { path = " ../cw721-base" , version = " 0.12.0" , features = [
49
+ " library" ,
50
+ ] }
51
+ cw20 = " 0.12.1"
50
52
serde = { version = " 1.0.127" , default-features = false , features = [" derive" ] }
51
53
thiserror = { version = " 1.0.26" }
52
- cw-utils = { version = " 0.11 .1" }
54
+ cw-utils = " 0.12 .1"
53
55
prost = " 0.9.0"
56
+ cw3 = " 0.12.1"
54
57
55
58
[dev-dependencies ]
56
- cosmwasm-schema = { version = " 1.0.0-beta " }
59
+ cosmwasm-schema = { version = " 1.0.0-beta5 " }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " cw721-metadata-onchain"
3
- version = " 0.11.1"
4
- authors = [" Ethan Frey <ethanfrey@users.noreply.github.com>" , " Orkun Külçe <orkun@deuslabs.fi>" ]
3
+ version = " 0.12.0"
4
+ authors = [
5
+ " Ethan Frey <ethanfrey@users.noreply.github.com>" ,
6
+ " Orkun Külçe <orkun@deuslabs.fi>" ,
7
+ ]
5
8
edition = " 2018"
6
9
description = " Example extending CW721 NFT to store metadata on chain"
7
10
license = " Apache-2.0"
@@ -25,12 +28,14 @@ backtraces = ["cosmwasm-std/backtraces"]
25
28
library = []
26
29
27
30
[dependencies ]
28
- cw721 = { path = " ../../packages/cw721" , version = " 0.11" }
29
- cw721-base = { path = " ../cw721-base" , version = " 0.11" , features = [" library" ] }
30
- cosmwasm-std = { version = " 1.0.0-beta" }
31
+ cw721 = { path = " ../../packages/cw721" , version = " 0.12.0" }
32
+ cw721-base = { path = " ../cw721-base" , version = " 0.12.0" , features = [
33
+ " library" ,
34
+ ] }
35
+ cosmwasm-std = { version = " 1.0.0-beta5" }
31
36
schemars = " 0.8"
32
37
serde = { version = " 1.0.130" , default-features = false , features = [" derive" ] }
33
38
thiserror = { version = " 1.0.30" }
34
39
35
40
[dev-dependencies ]
36
- cosmwasm-schema = { version = " 1.0.0-beta " }
41
+ cosmwasm-schema = { version = " 1.0.0-beta5 " }
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " cw721"
3
- version = " 0.11.1"
4
- authors = [" Ethan Frey <ethanfrey@users.noreply.github.com>" , " Orkun Külçe <orkun@deuslabs.fi>" ]
3
+ version = " 0.12.0"
4
+ authors = [
5
+ " Ethan Frey <ethanfrey@users.noreply.github.com>" ,
6
+ " Orkun Külçe <orkun@deuslabs.fi>" ,
7
+ ]
5
8
edition = " 2018"
6
9
description = " Definition and types for the CosmWasm-721 NFT interface"
7
10
license = " Apache-2.0"
@@ -10,10 +13,10 @@ homepage = "https://cosmwasm.com"
10
13
documentation = " https://docs.cosmwasm.com"
11
14
12
15
[dependencies ]
13
- cw-utils = { version = " 0.11 " }
14
- cosmwasm-std = { version = " 1.0.0-beta " }
16
+ cw-utils = " 0.12.1 "
17
+ cosmwasm-std = { version = " 1.0.0-beta5 " }
15
18
schemars = " 0.8"
16
19
serde = { version = " 1.0" , default-features = false , features = [" derive" ] }
17
20
18
21
[dev-dependencies ]
19
- cosmwasm-schema = { version = " 1.0.0-beta " }
22
+ cosmwasm-schema = { version = " 1.0.0-beta5 " }
You can’t perform that action at this time.
0 commit comments