Skip to content

Commit

Permalink
change fee to reasonable for mainnet
Browse files Browse the repository at this point in the history
  • Loading branch information
yukonet committed Jun 11, 2024
1 parent 7a8cb75 commit 20e8c70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
'MULTIPLIER': os.environ.get('MULTIPLIER', '1.3'),#multiply the max fee per gas, should be >1,
'PAYOUT_MULTIPLIER': os.environ.get('PAYOUT_MULTIPLIER', '1.3'), #multiply the amount of gas for payout, should be >1,
'PRICE_MULTIPLIER' : os.environ.get('PRICE_MULTIPLIER', '0.9'), #should be <1, used in payout in calc maxFeePerGas to avoid base price changing
'MAX_PRIORITY_FEE': os.environ.get('MAX_PRIORITY_FEE', '0.000000000017'), #in MATIC
'MAX_PRIORITY_FEE': os.environ.get('MAX_PRIORITY_FEE', '0.00000005'), #in MATIC
'SLEEP_AFTER_SEEDING': os.environ.get('SLEEP_AFTER_SEEDING', 60), #in sec
'ACCOUNT_PASSWORD' : os.environ.get('ACCOUNT_PASSWORD', "shkeeper"), #Password for restoring account in metamask or others, should be str
'REDIS_HOST': os.environ.get('REDIS_HOST', 'localhost'),
Expand Down

0 comments on commit 20e8c70

Please sign in to comment.