From 35328b5769aa7b6e656184f18b073bd527395950 Mon Sep 17 00:00:00 2001 From: nolash Date: Mon, 29 Mar 2021 02:35:36 +0200 Subject: [PATCH] Rename add script to minter --- python/giftable_erc20_token/runnable/minter.py | 1 - python/requirements.txt | 4 ++-- python/setup.cfg | 4 ++-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/python/giftable_erc20_token/runnable/minter.py b/python/giftable_erc20_token/runnable/minter.py index 4443786..302e1f2 100644 --- a/python/giftable_erc20_token/runnable/minter.py +++ b/python/giftable_erc20_token/runnable/minter.py @@ -35,7 +35,6 @@ data_dir = os.path.join(script_dir, '..', 'data') argparser = argparse.ArgumentParser() argparser.add_argument('-p', '--provider', dest='p', default='http://localhost:8545', type=str, help='Web3 provider url (http only)') -argparser.add_argument('-e', action='store_true', help='Treat all transactions as essential') argparser.add_argument('-w', action='store_true', help='Wait for the last transaction to be confirmed') argparser.add_argument('-ww', action='store_true', help='Wait for every transaction to be confirmed') argparser.add_argument('-i', '--chain-spec', dest='i', type=str, default='Ethereum:1', help='Chain specification string') diff --git a/python/requirements.txt b/python/requirements.txt index fe3f198..e778571 100644 --- a/python/requirements.txt +++ b/python/requirements.txt @@ -1,3 +1,3 @@ confini~=0.3.6rc3 -crypto-dev-signer~=0.4.14a9 -chainlib~=0.0.1a34 +crypto-dev-signer~=0.4.14a11 +chainlib~=0.0.1a36 diff --git a/python/setup.cfg b/python/setup.cfg index f9d47be..dc78e5f 100644 --- a/python/setup.cfg +++ b/python/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = giftable-erc20-token -version = 0.0.8a4 +version = 0.0.8a6 description = Simple ERC20 contract with deployment script that lets any address mint and gift itself tokens. author = Louis Holbrook author_email = dev@holbrook.no @@ -37,4 +37,4 @@ packages = console_scripts = giftable-token-deploy = giftable_erc20_token.runnable.deploy:main giftable-token-gift = giftable_erc20_token.runnable.gift:main - giftable-token-add = giftable_erc20_token.runnable.add:main + giftable-token-minter = giftable_erc20_token.runnable.minter:main