mirror of
git://holbrook.no/erc20-demurrage-token
synced 2024-11-05 10:06:45 +01:00
91 lines
2.4 KiB
Python
91 lines
2.4 KiB
Python
"""Deploy sarafu token
|
|
|
|
.. moduleauthor:: Louis Holbrook <dev@holbrook.no>
|
|
.. pgp:: 0826EDA1702D1E87C6E2875121D2E7BB88C2A746
|
|
|
|
"""
|
|
|
|
# standard imports
|
|
import sys
|
|
import os
|
|
import json
|
|
import argparse
|
|
import logging
|
|
|
|
# external imports
|
|
import confini
|
|
from funga.eth.signer import EIP155Signer
|
|
from funga.eth.keystore.dict import DictKeystore
|
|
from chainlib.chain import ChainSpec
|
|
from chainlib.eth.nonce import (
|
|
RPCNonceOracle,
|
|
OverrideNonceOracle,
|
|
)
|
|
from chainlib.eth.gas import (
|
|
RPCGasOracle,
|
|
OverrideGasOracle,
|
|
)
|
|
from chainlib.eth.connection import EthHTTPConnection
|
|
from chainlib.eth.tx import receipt
|
|
from chainlib.eth.constant import ZERO_ADDRESS
|
|
import chainlib.eth.cli
|
|
|
|
# local imports
|
|
import erc20_demurrage_token
|
|
from erc20_demurrage_token import (
|
|
DemurrageToken,
|
|
DemurrageTokenSettings,
|
|
)
|
|
|
|
logging.basicConfig(level=logging.WARNING)
|
|
logg = logging.getLogger()
|
|
|
|
script_dir = os.path.dirname(__file__)
|
|
data_dir = os.path.join(script_dir, '..', 'data')
|
|
|
|
config_dir = os.path.join(data_dir, 'config')
|
|
|
|
arg_flags = chainlib.eth.cli.argflag_std_write | chainlib.eth.cli.Flag.EXEC
|
|
argparser = chainlib.eth.cli.ArgumentParser(arg_flags)
|
|
args = argparser.parse_args()
|
|
config = chainlib.eth.cli.Config.from_args(args, arg_flags, default_fee_limit=DemurrageToken.gas(), base_config_dir=config_dir)
|
|
|
|
wallet = chainlib.eth.cli.Wallet()
|
|
wallet.from_config(config)
|
|
|
|
rpc = chainlib.eth.cli.Rpc(wallet=wallet)
|
|
conn = rpc.connect_by_config(config)
|
|
|
|
chain_spec = ChainSpec.from_chain_str(config.get('CHAIN_SPEC'))
|
|
|
|
|
|
def main():
|
|
signer = rpc.get_signer()
|
|
signer_address = rpc.get_sender_address()
|
|
|
|
gas_oracle = rpc.get_gas_oracle()
|
|
nonce_oracle = rpc.get_nonce_oracle()
|
|
|
|
c = DemurrageToken(chain_spec, signer=signer, gas_oracle=gas_oracle, nonce_oracle=nonce_oracle)
|
|
(tx_hash_hex, o) = c.apply_demurrage(config.get('_EXEC_ADDRESS'), signer_address)
|
|
if config.get('_RPC_SEND'):
|
|
conn.do(o)
|
|
if config.get('_WAIT'):
|
|
r = conn.wait(tx_hash_hex)
|
|
if r['status'] == 0:
|
|
sys.stderr.write('EVM revert while deploying contract. Wish I had more to tell you')
|
|
sys.exit(1)
|
|
# TODO: pass through translator for keys (evm tester uses underscore instead of camelcase)
|
|
address = r['contractAddress']
|
|
|
|
print(address)
|
|
else:
|
|
print(tx_hash_hex)
|
|
|
|
else:
|
|
print(o)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|