"""Deploys giftable token, and optionally gifts a set amount to all accounts in wallet .. moduleauthor:: Louis Holbrook .. pgp:: 0826EDA1702D1E87C6E2875121D2E7BB88C2A746 """ # SPDX-License-Identifier: GPL-3.0-or-later # standard imports import json import argparse import logging # third-party imports import web3 logging.basicConfig(level=logging.WARNING) logg = logging.getLogger() logging.getLogger('web3').setLevel(logging.WARNING) logging.getLogger('urllib3').setLevel(logging.WARNING) 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('-g', '--gift', dest='g', action='store_true', help='If set, tokens will be gifted to all accounts in provider wallet') argparser.add_argument('-n', '--name', dest='n', default='Giftable Token', type=str, help='Token name') argparser.add_argument('-s', '--symbol', dest='s', default='GFT', type=str, help='Token symbol') argparser.add_argument('-d', '--decimals', dest='d', default=18, type=int, help='Token decimals') argparser.add_argument('-a', '--account', dest='a', action='append', type=str, help='Account to fund') argparser.add_argument('-v', action='store_true', help='Be verbose') argparser.add_argument('amount', type=int, help='Initial token supply (will be owned by contract creator)') args = argparser.parse_args() if args.v: logg.setLevel(logging.DEBUG) if __name__ == '__main__': w3 = web3.Web3(web3.Web3.HTTPProvider(args.p)) f = open('./GiftableToken.abi.json', 'r') abi = json.load(f) f.close() f = open('./GiftableToken.bin', 'r') bytecode = f.read() f.close() w3.eth.defaultAccount = w3.eth.accounts[0] c = w3.eth.contract(abi=abi, bytecode=bytecode) tx_hash = c.constructor(args.n, args.s, args.d, args.amount).transact() rcpt = w3.eth.getTransactionReceipt(tx_hash) address = rcpt.contractAddress c = w3.eth.contract(abi=abi, address=address) logg.debug('construct tx {} address {}'.format(tx_hash.hex(), address)) balance = c.functions.balanceOf(w3.eth.defaultAccount).call() logg.info('balance {}: {}'.format(w3.eth.defaultAccount, balance)) if args.a != None: for a in args.a: if a == w3.eth.defaultAccount: continue tx_hash = c.functions.gift(a, args.amount).transact() rcpt = w3.eth.getTransactionReceipt(tx_hash) balance = c.functions.balanceOf(a).call() logg.info('balance {}: {}'.format(a, balance)) print(address)