Skip to content

Commit

Permalink
Merge pull request #939 from scrtlabs/instantiate-event
Browse files Browse the repository at this point in the history
Instantiate event
  • Loading branch information
assafmo authored Jun 12, 2022
2 parents c48a3b7 + 9b71359 commit 4d23963
Show file tree
Hide file tree
Showing 78 changed files with 1,826 additions and 1,238 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ update-swagger-openapi-docs: statik proto-swagger-openapi-gen
# proto-check-breaking:
# @buf check breaking --against-input '.git#branch=master'

protoVer=v0.7
protoVer=v0.2

proto-all: proto-format proto-lint proto-gen proto-swagger-openapi-gen

Expand Down
4 changes: 4 additions & 0 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -432,6 +432,10 @@ func NewSecretNetworkApp(
app.distrKeeper,
app.mintKeeper,
app.stakingKeeper,
app.capabilityKeeper.ScopeToModule(compute.ModuleName),
app.ibcKeeper.PortKeeper,
app.transferKeeper,
app.ibcKeeper.ChannelKeeper,
computeRouter,
computeDir,
computeConfig,
Expand Down
1 change: 1 addition & 0 deletions cosmwasm/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cosmwasm/contracts/burner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ cranelift = ["cosmwasm-vm/cranelift"]
backtraces = ["cosmwasm-std/backtraces", "cosmwasm-vm/backtraces"]

[dependencies]
cosmwasm-std = { path = "../../packages/std", package = "secret-cosmwasm-std", features = ["iterator"] }
cosmwasm-std = { package = "secret-cosmwasm-std", version = "0.10.1", features = ["iterator"] }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }

Expand Down
2 changes: 1 addition & 1 deletion cosmwasm/contracts/debug-print/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ default = []
backtraces = ["cosmwasm-std/backtraces"]

[dependencies]
cosmwasm-std = { path = "../../packages/std", package = "secret-cosmwasm-std", features = ["iterator", "debug-print"] }
cosmwasm-std = { package = "secret-cosmwasm-std", version = "0.10.1", features = ["iterator", "debug-print"] }
schemars = "0.7"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
#snafu = { version = "0.6.3" }
4 changes: 2 additions & 2 deletions cosmwasm/contracts/dist/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ overflow-checks = true
default = []

[dependencies]
cosmwasm-std = { path = "../../packages/std", package = "secret-cosmwasm-std" }
cosmwasm-storage = { path = "../../packages/storage", package = "secret-cosmwasm-storage" }
cosmwasm-std = { package = "secret-cosmwasm-std", version = "0.10.1" }
cosmwasm-storage = { package = "secret-cosmwasm-storage", version = "0.10.0" }
schemars = "0.7"
serde = { version = "=1.0.103", default-features = false, features = [
"derive"
Expand Down
4 changes: 2 additions & 2 deletions cosmwasm/contracts/erc20/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ cranelift = ["cosmwasm-vm/default-cranelift"]
singlepass = ["cosmwasm-vm/default-singlepass"]

[dependencies]
cosmwasm-std = { path = "../../packages/std", package = "secret-cosmwasm-std" }
cosmwasm-storage = { path = "../../packages/storage", package = "secret-cosmwasm-storage" }
cosmwasm-std = { package = "secret-cosmwasm-std", version = "0.10.1" }
cosmwasm-storage = { package = "secret-cosmwasm-storage", version = "0.10.0" }
schemars = "0.7"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
hex = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions cosmwasm/contracts/escrow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ cranelift = ["cosmwasm-vm/default-cranelift"]
singlepass = ["cosmwasm-vm/default-singlepass"]

[dependencies]
cosmwasm-std = { path = "../../packages/std", package = "secret-cosmwasm-std" }
cosmwasm-storage = { path = "../../packages/storage", package = "secret-cosmwasm-storage" }
cosmwasm-std = { package = "secret-cosmwasm-std", version = "0.10.1" }
cosmwasm-storage = { package = "secret-cosmwasm-storage", version = "0.10.0" }
schemars = "0.7"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }

Expand Down
4 changes: 2 additions & 2 deletions cosmwasm/contracts/gov/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ overflow-checks = true
default = []

[dependencies]
cosmwasm-std = { path = "../../packages/std", package = "secret-cosmwasm-std" }
cosmwasm-storage = { path = "../../packages/storage", package = "secret-cosmwasm-storage" }
cosmwasm-std = { package = "secret-cosmwasm-std", version = "0.10.1" }
cosmwasm-storage = { package = "secret-cosmwasm-storage", version = "0.10.0" }
schemars = "0.7"
serde = { version = "1", default-features = false, features = [
"derive"
Expand Down
4 changes: 2 additions & 2 deletions cosmwasm/contracts/hackatom/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ cranelift = ["cosmwasm-vm/cranelift"]
backtraces = ["cosmwasm-std/backtraces", "cosmwasm-vm/backtraces"]

[dependencies]
cosmwasm-std = { path = "../../packages/std", package = "secret-cosmwasm-std", default-features = false }
cosmwasm-std = { package = "secret-cosmwasm-std", version = "0.10.1", default-features = false }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
sha2 = "0.9.1"
thiserror = "1.0"

[dev-dependencies]
cosmwasm-schema = { path = "../../packages/schema" }
cosmwasm-storage = { path = "../../packages/storage", package = "secret-cosmwasm-storage" }
cosmwasm-storage = { package = "secret-cosmwasm-storage", version = "0.10.0" }
cosmwasm-vm = { path = "../../packages/sgx-vm", package = "cosmwasm-sgx-vm", default-features = false }
4 changes: 2 additions & 2 deletions cosmwasm/contracts/mint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ overflow-checks = true
default = []

[dependencies]
cosmwasm-std = { path = "../../packages/std", package = "secret-cosmwasm-std" }
cosmwasm-storage = { path = "../../packages/storage", package = "secret-cosmwasm-storage" }
cosmwasm-std = { package = "secret-cosmwasm-std", version = "0.10.1"}
cosmwasm-storage = { package = "secret-cosmwasm-storage", version = "0.10.0" }
schemars = "0.7"
serde = { version = "=1.0.103", default-features = false, features = [
"derive"
Expand Down
2 changes: 1 addition & 1 deletion cosmwasm/contracts/plaintext-logs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ default = []
backtraces = ["cosmwasm-std/backtraces"]

[dependencies]
cosmwasm-std = { path = "../../packages/std", package = "secret-cosmwasm-std", features = ["iterator"] }
cosmwasm-std = { package = "secret-cosmwasm-std", version = "0.10.1", features = ["iterator"] }
schemars = "0.7"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
#snafu = { version = "0.6.3" }
2 changes: 1 addition & 1 deletion cosmwasm/contracts/queue/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ backtraces = ["cosmwasm-std/backtraces", "cosmwasm-vm/backtraces"]
library = []

[dependencies]
cosmwasm-std = { path = "../../packages/std", package = "secret-cosmwasm-std", features = ["iterator"] }
cosmwasm-std = { package = "secret-cosmwasm-std", version = "0.10.1", features = ["iterator"] }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }

Expand Down
4 changes: 2 additions & 2 deletions cosmwasm/contracts/reflect/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ cranelift = ["cosmwasm-vm/cranelift"]
backtraces = ["cosmwasm-std/backtraces", "cosmwasm-vm/backtraces"]

[dependencies]
cosmwasm-std = { path = "../../packages/std", package = "secret-cosmwasm-std", features = ["staking"] }
cosmwasm-storage = { path = "../../packages/storage", package = "secret-cosmwasm-storage" }
cosmwasm-std = { package = "secret-cosmwasm-std", version = "0.10.1", features = ["staking"] }
cosmwasm-storage = { package = "secret-cosmwasm-storage", version = "0.10.0" }
schemars = "0.8.1"
serde = { version = "^1.0.117", default-features = false, features = [
"derive"
Expand Down
4 changes: 2 additions & 2 deletions cosmwasm/contracts/staking/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ cranelift = ["cosmwasm-vm/cranelift"]
backtraces = ["cosmwasm-std/backtraces", "cosmwasm-vm/backtraces"]

[dependencies]
cosmwasm-std = { path = "../../packages/std", package = "secret-cosmwasm-std",features = ["staking"] }
cosmwasm-storage = { path = "../../packages/storage", package = "secret-cosmwasm-storage" }
cosmwasm-std = { package = "secret-cosmwasm-std", version = "0.10.1", features = ["staking"] }
cosmwasm-storage = { package = "secret-cosmwasm-storage", version = "0.10.0" }
schemars = "0.8.1"
serde = { version = "1.0.103", default-features = false, features = ["derive"] }
snafu = "0.6"
Expand Down
54 changes: 34 additions & 20 deletions cosmwasm/enclaves/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 4d23963

Please sign in to comment.