Skip to content
New issue

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

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

Already on GitHub? # to your account

Adds gas_target optional fields to utilize evaporation api #75

Open
wants to merge 12 commits into
base: master
Choose a base branch
from
Open
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
secretdev:
# Docker Hub image
options: --name secretdev
image: ghcr.io/scrtlabs/localsecret:v1.6.0-alpha.4
image: ghcr.io/scrtlabs/localsecret:v1.12.2
volumes:
- "/home/runner/work/snip20-reference-impl/snip20-reference-impl/:/root/code"
ports:
Expand Down
215 changes: 115 additions & 100 deletions Cargo.lock

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

14 changes: 4 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,11 @@ backtraces = ["cosmwasm-std/backtraces"]

# debug-print = ["cosmwasm-std/debug-print"]
[dependencies]
cosmwasm-std = { git = "https://github.com/scrtlabs/cosmwasm/", default-features = false, tag = "v1.1.9-secret" }
cosmwasm-storage = { git = "https://github.com/scrtlabs/cosmwasm/", tag = "v1.1.9-secret" }
cosmwasm-std = { package = "secret-cosmwasm-std", version = "1.1.11" }
cosmwasm-storage = { package = "secret-cosmwasm-storage", version = "1.1.11" }
rand = { version = "0.8.5", default-features = false }
secret-toolkit = { git = "https://github.com/scrtlabs/secret-toolkit", features = [
"permit",
"viewing-key",
], rev = "9b74bdac71c2fedcc12246f18cdfdd94b8991282" }
secret-toolkit-crypto = { git = "https://github.com/scrtlabs/secret-toolkit", features = [
"rand",
"hash",
], rev = "9b74bdac71c2fedcc12246f18cdfdd94b8991282" }
secret-toolkit = { version = "0.10.0", default-features = false, features = ["crypto", "permit", "storage", "viewing-key"] }
secret-toolkit-crypto = { version = "0.10.0", features = ["rand", "hash"] }

schemars = "0.8.12"
serde = { version = "1.0.158", default-features = false, features = ["derive"] }
Expand Down
Loading