Skip to content

Commit

Permalink
feat: voucher contract
Browse files Browse the repository at this point in the history
  • Loading branch information
ratik committed Dec 18, 2023
1 parent cb8cc32 commit e4b4d49
Show file tree
Hide file tree
Showing 15 changed files with 316 additions and 37 deletions.
201 changes: 166 additions & 35 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ members = [

"contracts/stargate-poc",
"contracts/distribution",
"contracts/withdrawal-voucher",
"contracts/factory",
"contracts/interchain-interceptor",
"contracts/interchain-interceptor-authz",
Expand Down Expand Up @@ -34,6 +35,8 @@ cosmwasm-schema = { version = "1.5.0", default-features = false }
cw-storage-plus = { version = "1.2.0", default-features = false }
cw2 = { version = "1.1.2", default-features = false }
cw20 = { version = "1.0.1" }
cw721 = { version = "0.18.0" }
cw721-base = { version = "0.18.0", features = ["library"] }
cosmwasm-storage = { version = "1.5.0" }
cw-multi-test = "0.20.0"
cw-utils = { version = "1.0.3", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ compile:
--platform linux/amd64 \
cosmwasm/workspace-optimizer:0.15.0

compile64:
compile_arm64:
@docker run --rm -v "$(CURDIR)":/code \
--mount type=volume,source="$(notdir $(CURDIR))_cache",target=/target \
--mount type=volume,source=registry_cache,target=/usr/local/cargo/registry \
Expand Down
2 changes: 2 additions & 0 deletions contracts/withdrawal-voucher/.cargo/config
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[alias]
schema = "run --bin lido-withdraval-voucher-schema"
Loading

0 comments on commit e4b4d49

Please sign in to comment.