Skip to content

Commit

Permalink
improve script naming
Browse files Browse the repository at this point in the history
  • Loading branch information
sskeirik committed Dec 18, 2024
1 parent 5e739e8 commit e8a66ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ As an example, to deploy a Wasm contract and invoke a function on it, you can do
3. Generate an account for use in the test

```sh
poetry -C pykwasm run mkaddr > pk_file
poetry -C pykwasm run mkacct > pk_file
```

4. Fund the new account
Expand Down
4 changes: 2 additions & 2 deletions pykwasm/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ authors = [
]

[tool.poetry.scripts]
mkaddr = "pykwasm.mkaddr:main"
mkacct = "pykwasm.mkacct:main"
call = "pykwasm.call:main"
fund = "pykwasm.fund_acct:main"
deploy = "pykwasm.deploy_contract:main"
Expand Down Expand Up @@ -71,7 +71,7 @@ skip-string-normalization = true
disallow_untyped_defs = true
# TODO fix type errors
exclude = [
'src/pykwasm/mkaddr\.py',
'src/pykwasm/mkacct\.py',
'src/pykwasm/wasm2kast\.py',
'src/pykwasm/wasm2kore\.py',
'src/pykwasm/run_wasm\.py',
Expand Down
File renamed without changes.

0 comments on commit e8a66ae

Please sign in to comment.