Skip to content

Commit

Permalink
Update config.py
Browse files Browse the repository at this point in the history
  • Loading branch information
zaivanza authored Jun 5, 2023
1 parent 6b6daa5 commit bf7dc70
Showing 1 changed file with 20 additions and 2 deletions.
22 changes: 20 additions & 2 deletions config.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
from tabulate import tabulate
import math
import decimal
from uniswap import Uniswap

from setting import *
from data.abi.abi import *
Expand Down Expand Up @@ -173,6 +174,17 @@ def sleeping(from_sleep, to_sleep):
'starknet' : '',
}

BUNGEE_REFUEL_CONTRACTS = {
'ethereum' : '0xb584D4bE1A5470CA1a8778E9B86c81e165204599',
'optimism' : '0x5800249621da520adfdca16da20d8a5fc0f814d8',
'bsc' : '0xbe51d38547992293c89cc589105784ab60b004a9',
'arbitrum' : '0xc0e02aa55d10e38855e13b64a8e1387a04681a00',
'polygon' : '0xAC313d7491910516E06FBfC2A0b5BB49bb072D91',
'polygon_zkevm' : '0x555a64968e4803e27669d64e349ef3d18fca0895',
'zksync' : '0x7Ee459D7fDe8b4a3C22b9c8C7aa52AbadDd9fFD5',
'avalanche' : '0x040993fbf458b95871cd2d73ee2e09f4af6d56bb',
}


text1 = '''
/$$ /$$ /$$$$$$ /$$$$$$$ /$$ /$$ /$$ /$$$$$$ /$$$$$$$
Expand Down Expand Up @@ -253,7 +265,13 @@ def get_prices():
time.sleep(1)
return get_prices()

def get_bungee_data():
url = "https://refuel.socket.tech/chains"
response = requests.get(url)
if response.status_code == 200:
data = json.loads(response.text)
return data

PRICES_NATIVE = get_prices()
WALLET_PROXIES = get_wallet_proxies()


BUNGEE_LIMITS = get_bungee_data()

0 comments on commit bf7dc70

Please sign in to comment.