Skip to content

Add NFT kasmer test #260

New issue

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

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

Already on GitHub? Sign in to your account

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions generate-claims.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,9 @@ wasm2wat deps/mx-sdk-rs/contracts/examples/multisig/output/multisig.wasm -o gene
wasm2wat tests/contracts/test_multisig/output/test_multisig.wasm -o generated_claims/w-test_multisig.wat
poetry -C kmultiversx run -- kasmer --directory "tests/contracts/test_multisig" --gen-claims 2>&1 | tee kasmer.log

# NFT

sc-meta all build --path tests/contracts/test_nft --wasm-symbols --no-wasm-opt
wasm2wat tests/contracts/test_nft/output/test_nft.wasm -o generated_claims/w-test_nft.wat
poetry -C kmultiversx run -- kasmer --directory "tests/contracts/test_nft" --gen-claims 2>&1 | tee kasmer.log

2 changes: 1 addition & 1 deletion 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.54"
version = "0.1.55"
description = "Python tools for Elrond semantics"
authors = [
"Runtime Verification, Inc. <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion package/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.54
0.1.55
7 changes: 7 additions & 0 deletions tests/contracts/test_nft/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Generated by Cargo
# will have compiled files and executables
/target/
*/target/

# The mxpy output
/output*/
Loading
Loading