Skip to content

Commit

Permalink
Remove MapIntToInt (#285)
Browse files Browse the repository at this point in the history
* Remove MapIntToInt

* Remove MapIntToInt

* Remove MapIntToInt

* Remove MapBytesToBytes

* Remove MAaInt2Bytes

* Preserves definedness

* Fixes

* Update wasm

* Set Version: 0.1.89

* Fix KMap calls

* Fixes

* Whitespace change to trigger github's actions

---------

Co-authored-by: devops <[email protected]>
  • Loading branch information
virgil-serbanuta and devops authored Jul 1, 2024
1 parent 8ee34fe commit 626a917
Show file tree
Hide file tree
Showing 27 changed files with 197 additions and 1,119 deletions.
2 changes: 1 addition & 1 deletion deps/kwasm_release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.70
0.1.71
8 changes: 4 additions & 4 deletions flake.lock

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

2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
description = "K Semantics of MultiversX";

inputs = {
wasm-semantics.url = "github:runtimeverification/wasm-semantics/v0.1.70";
wasm-semantics.url = "github:runtimeverification/wasm-semantics/v0.1.71";
k-framework.url = "github:runtimeverification/k/v7.1.30";
pyk.url = "github:runtimeverification/k/v7.1.30?dir=pyk";
nixpkgs.follows = "k-framework/nixpkgs";
Expand Down
8 changes: 4 additions & 4 deletions kmultiversx/poetry.lock

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

4 changes: 2 additions & 2 deletions kmultiversx/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "kmultiversx"
version = "0.1.88"
version = "0.1.89"
description = "Python tools for Elrond semantics"
authors = [
"Runtime Verification, Inc. <[email protected]>",
Expand All @@ -20,7 +20,7 @@ mx-semantics = "kmultiversx.kdist.plugin"

[tool.poetry.dependencies]
python = "^3.10"
pykwasm = { git = "https://github.com/runtimeverification/wasm-semantics.git", tag = "v0.1.70", subdirectory = "pykwasm" }
pykwasm = { git = "https://github.com/runtimeverification/wasm-semantics.git", tag = "v0.1.71", subdirectory = "pykwasm" }
pycryptodomex = "^3.18.0"
hypothesis = "^6.82.6"

Expand Down
4 changes: 2 additions & 2 deletions kmultiversx/src/kmultiversx/kasmer.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

from kmultiversx.scenario import (
KList,
KMapBytesToBytes,
KMap,
KWasmString,
ListBytes,
get_steps_sc_call,
Expand Down Expand Up @@ -84,7 +84,7 @@ def deploy_test(krun: KRun, test_wasm: KInner, contract_wasms: dict[bytes, KInne
token(100000),
KApply('.Code', []),
token(b''),
KMapBytesToBytes([]),
KMap([]),
],
)

Expand Down
Loading

0 comments on commit 626a917

Please sign in to comment.