erc20-transfer-authorization

Simple approval escrow for ERC20 spending
Log | Files | Refs

commit d128a0e53bc3e90c0b1385a3fef4315674bc5217
parent 5603ac10ded4da8c954e167e825b222f8b524098
Author: nolash <dev@holbrook.no>
Date:   Sun,  6 Dec 2020 17:27:53 +0100

Cleanup setup file

Diffstat:
Mpython/erc20_approval_escrow/runnable/deploy.py | 1+
Mpython/setup.cfg | 2+-
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/python/erc20_approval_escrow/runnable/deploy.py b/python/erc20_approval_escrow/runnable/deploy.py @@ -50,6 +50,7 @@ def main(): if args.a != None: for a in args.a: approvers.append(a) + logg.info('add approver {}'.format(a)) tx_hash = c.constructor(approvers).transact({'from': w3.eth.accounts[0]}) diff --git a/python/setup.cfg b/python/setup.cfg @@ -37,4 +37,4 @@ testing = [options.entry_points] console_scripts = - simple-multisig-deploy = erc20_approval_escrow.runnable.deploy:main + erc20-approval-escrow-deploy = erc20_approval_escrow.runnable.deploy:main