Skip to content

Commit 626a917

Browse files
Remove MapIntToInt (#285)
* 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]>
1 parent 8ee34fe commit 626a917

27 files changed

+197
-1119
lines changed

deps/kwasm_release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.70
1+
0.1.71

flake.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description = "K Semantics of MultiversX";
33

44
inputs = {
5-
wasm-semantics.url = "github:runtimeverification/wasm-semantics/v0.1.70";
5+
wasm-semantics.url = "github:runtimeverification/wasm-semantics/v0.1.71";
66
k-framework.url = "github:runtimeverification/k/v7.1.30";
77
pyk.url = "github:runtimeverification/k/v7.1.30?dir=pyk";
88
nixpkgs.follows = "k-framework/nixpkgs";

kmultiversx/poetry.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

kmultiversx/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

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

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

kmultiversx/src/kmultiversx/kasmer.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
from kmultiversx.scenario import (
2525
KList,
26-
KMapBytesToBytes,
26+
KMap,
2727
KWasmString,
2828
ListBytes,
2929
get_steps_sc_call,
@@ -84,7 +84,7 @@ def deploy_test(krun: KRun, test_wasm: KInner, contract_wasms: dict[bytes, KInne
8484
token(100000),
8585
KApply('.Code', []),
8686
token(b''),
87-
KMapBytesToBytes([]),
87+
KMap([]),
8888
],
8989
)
9090

0 commit comments

Comments
 (0)