Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate contracts to 0.15.0 #318

Merged
merged 44 commits into from
Jul 6, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
31ad6e3
Upgrade packages to cosmwasm 0.15.0
uint Jun 28, 2021
3264c72
Change Uint128::new(0) to Uint128::zero()
uint Jun 28, 2021
62916ad
Merge pull request #301 from uint/v0.7.x
orkunkl Jun 28, 2021
9bf36a7
cw20-base: Upgrade to cw 0.15
orkunkl Jun 28, 2021
6b5abc2
cw20-base: update schema
orkunkl Jun 28, 2021
5c12cfd
Merge pull request #304 from CosmWasm/upgrade-0.15-cw20-base
orkunkl Jun 29, 2021
230d727
cw20-bonding: Upgrade to cw 0.15
orkunkl Jun 28, 2021
afda524
cw20-escrow: Upgrade to cw 0.15
orkunkl Jun 28, 2021
caadff2
Update cargo.lock
orkunkl Jun 29, 2021
4c6b57e
controller: fix linter errors
orkunkl Jun 28, 2021
e6a43e0
cw0: fix linter errors
orkunkl Jun 28, 2021
aac0b9b
cw1: generate schemas
orkunkl Jun 28, 2021
65a70c5
cw1155: generate schemas
orkunkl Jun 28, 2021
215d8ed
cw20: generate schemas
orkunkl Jun 28, 2021
274fd98
cw3: generate schemas
orkunkl Jun 28, 2021
7660bc3
cw721: generate schemas
orkunkl Jun 28, 2021
39bbdbe
update cw3-fixed-multisig to cosmwasm 0.15
uint Jun 29, 2021
b636538
update cw4-group to cosmwasm 0.15
uint Jun 29, 2021
8e63de2
update cw3-flex-multisig to cosmwasm 0.15
uint Jun 29, 2021
3364d10
cw20-staking: Upgrade to cw 0.15
orkunkl Jun 29, 2021
2304186
Upgrade cw1 contracts
uint Jun 28, 2021
0f21b10
Update remaining deps of cw1 contracts
uint Jun 29, 2021
057c984
Update schemas for cw1 contracts
uint Jun 29, 2021
1894665
Upgrade cw1155-base
uint Jun 29, 2021
8d9fc17
Fix cw0 tests
uint Jun 30, 2021
acba223
Fix controllers tests
uint Jun 30, 2021
afbf686
Update cw3 package schemas
uint Jun 30, 2021
969e346
Update cw4-stake to cosmwasm 0.15
uint Jun 30, 2021
abb94c0
Update cw721-base to cosmwasm 0.15
uint Jun 30, 2021
b09f276
Update cw20-atomic-swap to cosmwasm 0.15
uint Jun 30, 2021
a36cccc
Update cw20-ics20 to cosmwasm 0.15
uint Jun 30, 2021
d827683
Make linter happy
uint Jun 30, 2021
1488bc9
Make linter happier
uint Jun 30, 2021
8bd49f2
Fix check_contract in CI
uint Jun 30, 2021
c48a3d0
Bump 0.6.2 to 0.7.0
orkunkl Jun 30, 2021
490baa6
Refactor cw1-subkeys
uint Jul 5, 2021
c03a7a4
Refactor cw3-fixed-multisig and cw1 contracts
uint Jul 5, 2021
b9cefbb
Clippy
uint Jul 5, 2021
a7bfcd0
Don't explicitly specify empty fields in responses
uint Jul 6, 2021
a3af00a
Refactor cw3 contracts
uint Jul 6, 2021
b0576ab
clippy
uint Jul 6, 2021
00aa095
Update schemas
uint Jul 6, 2021
a081b5e
multi-test refactor
uint Jul 6, 2021
402c467
cw4-stake refactor
uint Jul 6, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
cw20: generate schemas
  • Loading branch information
orkunkl committed Jun 29, 2021
commit 215d8ede954a676a942410e9b442f9127295000b
2 changes: 1 addition & 1 deletion packages/cw20/schema/all_allowances_response.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
]
},
"Timestamp": {
"description": "A point in time in nanosecond precision.\n\nThis type can represent times from 1970-01-01T00:00:00Z to 2554-07-21T23:34:33Z.",
"description": "A point in time in nanosecond precision.\n\nThis type can represent times from 1970-01-01T00:00:00Z to 2554-07-21T23:34:33Z.\n\n## Examples\n\n``` # use cosmwasm_std::Timestamp; let ts = Timestamp::from_nanos(1_000_000_202); assert_eq!(ts.nanos(), 1_000_000_202); assert_eq!(ts.seconds(), 1); assert_eq!(ts.subsec_nanos(), 202);\n\nlet ts = ts.plus_seconds(2); assert_eq!(ts.nanos(), 3_000_000_202); assert_eq!(ts.seconds(), 3); assert_eq!(ts.subsec_nanos(), 202); ```",
"allOf": [
{
"$ref": "#/definitions/Uint64"
Expand Down
2 changes: 1 addition & 1 deletion packages/cw20/schema/allowance_response.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
]
},
"Timestamp": {
"description": "A point in time in nanosecond precision.\n\nThis type can represent times from 1970-01-01T00:00:00Z to 2554-07-21T23:34:33Z.",
"description": "A point in time in nanosecond precision.\n\nThis type can represent times from 1970-01-01T00:00:00Z to 2554-07-21T23:34:33Z.\n\n## Examples\n\n``` # use cosmwasm_std::Timestamp; let ts = Timestamp::from_nanos(1_000_000_202); assert_eq!(ts.nanos(), 1_000_000_202); assert_eq!(ts.seconds(), 1); assert_eq!(ts.subsec_nanos(), 202);\n\nlet ts = ts.plus_seconds(2); assert_eq!(ts.nanos(), 3_000_000_202); assert_eq!(ts.seconds(), 3); assert_eq!(ts.subsec_nanos(), 202); ```",
"allOf": [
{
"$ref": "#/definitions/Uint64"
Expand Down
2 changes: 1 addition & 1 deletion packages/cw20/schema/cw20_execute_msg.json
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@
]
},
"Timestamp": {
"description": "A point in time in nanosecond precision.\n\nThis type can represent times from 1970-01-01T00:00:00Z to 2554-07-21T23:34:33Z.",
"description": "A point in time in nanosecond precision.\n\nThis type can represent times from 1970-01-01T00:00:00Z to 2554-07-21T23:34:33Z.\n\n## Examples\n\n``` # use cosmwasm_std::Timestamp; let ts = Timestamp::from_nanos(1_000_000_202); assert_eq!(ts.nanos(), 1_000_000_202); assert_eq!(ts.seconds(), 1); assert_eq!(ts.subsec_nanos(), 202);\n\nlet ts = ts.plus_seconds(2); assert_eq!(ts.nanos(), 3_000_000_202); assert_eq!(ts.seconds(), 3); assert_eq!(ts.subsec_nanos(), 202); ```",
"allOf": [
{
"$ref": "#/definitions/Uint64"
Expand Down