-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Sync existing examples * Add new examples * Use version instead of path * Fix pulled version of `substrate-contracts-node`
- Loading branch information
Showing
72 changed files
with
869 additions
and
177 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
[package] | ||
name = "basic-contract-caller" | ||
version = "5.0.0" | ||
version = "5.1.0" | ||
authors = ["Use Ink <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
[dependencies] | ||
ink = { version = "5.0.0", default-features = false } | ||
ink = { version = "5.1.0", default-features = false } | ||
|
||
# Note: We **need** to specify the `ink-as-dependency` feature. | ||
# | ||
# If we don't we will end up with linking errors! | ||
other-contract = { path = "other-contract", default-features = false, features = ["ink-as-dependency"] } | ||
|
||
[dev-dependencies] | ||
ink_e2e = { version = "5.0.0" } | ||
ink_e2e = { version = "5.1.0" } | ||
|
||
[lib] | ||
path = "lib.rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[package] | ||
name = "other-contract" | ||
version = "5.0.0" | ||
version = "5.1.0" | ||
authors = ["Use Ink <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
[dependencies] | ||
ink = { version = "5.0.0", default-features = false } | ||
ink = { version = "5.1.0", default-features = false } | ||
|
||
[dev-dependencies] | ||
ink_e2e = { version = "5.0.0" } | ||
ink_e2e = { version = "5.1.0" } | ||
|
||
[lib] | ||
path = "lib.rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "call-runtime" | ||
version = "5.0.0" | ||
version = "5.1.0" | ||
authors = ["Use Ink <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
[dependencies] | ||
ink = { version = "5.0.0", default-features = false } | ||
ink = { version = "5.1.0", default-features = false } | ||
|
||
# Substrate | ||
# | ||
|
@@ -18,7 +18,7 @@ sp-io = { version = "23.0.0", default-features = false, features = ["disable_pan | |
sp-runtime = { version = "24.0.0", default-features = false } | ||
|
||
[dev-dependencies] | ||
ink_e2e = { version = "5.0.0" } | ||
ink_e2e = { version = "5.1.0" } | ||
|
||
[lib] | ||
path = "lib.rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
[package] | ||
name = "combined_extension" | ||
version = "5.0.0" | ||
version = "5.1.0" | ||
authors = ["Use Ink <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
[dependencies] | ||
ink = { version = "5.0.0", default-features = false } | ||
ink = { version = "5.1.0", default-features = false } | ||
psp22_extension = { path = "../psp22-extension", default-features = false, features = ["ink-as-dependency"] } | ||
rand_extension = { path = "../rand-extension", default-features = false, features = ["ink-as-dependency"] } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "conditional-compilation" | ||
version = "5.0.0" | ||
version = "5.1.0" | ||
authors = ["Use Ink <[email protected]>"] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
ink = { version = "5.0.0", default-features = false } | ||
ink = { version = "5.1.0", default-features = false } | ||
|
||
[dev-dependencies] | ||
ink_e2e = { version = "5.0.0" } | ||
ink_e2e = { version = "5.1.0" } | ||
|
||
[lib] | ||
path = "lib.rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[package] | ||
name = "contract-storage" | ||
version = "5.0.0" | ||
version = "5.1.0" | ||
authors = ["Use Ink <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
[dependencies] | ||
ink = { version = "5.0.0", default-features = false } | ||
ink = { version = "5.1.0", default-features = false } | ||
|
||
[dev-dependencies] | ||
ink_e2e = { version = "5.0.0" } | ||
ink_e2e = { version = "5.1.0" } | ||
|
||
[lib] | ||
path = "lib.rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[package] | ||
name = "contract_terminate" | ||
version = "5.0.0" | ||
version = "5.1.0" | ||
authors = ["Use Ink <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
[dependencies] | ||
ink = { version = "5.0.0", default-features = false } | ||
ink = { version = "5.1.0", default-features = false } | ||
|
||
[dev-dependencies] | ||
ink_e2e = { version = "5.0.0" } | ||
ink_e2e = { version = "5.1.0" } | ||
|
||
[lib] | ||
path = "lib.rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
[package] | ||
name = "contract_transfer" | ||
version = "5.0.0" | ||
version = "5.1.0" | ||
authors = ["Use Ink <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
[dependencies] | ||
ink = { version = "5.0.0", default-features = false } | ||
ink = { version = "5.1.0", default-features = false } | ||
|
||
[dev-dependencies] | ||
ink_e2e = { version = "5.0.0" } | ||
ink_e2e = { version = "5.1.0" } | ||
|
||
[lib] | ||
path = "lib.rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
[package] | ||
name = "contract-xcm" | ||
version = "5.1.0" | ||
authors = ["Use Ink <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
[dependencies] | ||
ink = { version = "5.1.0", default-features = false } | ||
frame-support = { version = "32.0.0", default-features = false } | ||
pallet-balances = { version = "33.0.0", default-features = false } | ||
|
||
[dev-dependencies] | ||
ink_e2e = { version = "5.1.0", features = ["sandbox"] } | ||
|
||
[lib] | ||
path = "lib.rs" | ||
|
||
[features] | ||
default = ["std"] | ||
std = [ | ||
"ink/std", | ||
"pallet-balances/std", | ||
"frame-support/std", | ||
] | ||
ink-as-dependency = [] | ||
e2e-tests = [] |
Oops, something went wrong.