This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
from web3 import Web3 | |
# Populate these fields. | |
WEB3_PROVIDER = Web3(Web3.HTTPProvider('https://<your-provider-url>')) | |
LEVERAGE_STRATEGY_ADAPTER_ADDRESS = '<your-strategy-address-here>' | |
LEVERAGE_REBALANCE_VIEWER_ADDRESS = '<your-viewer-address-here>' | |
LEVERAGE_STRATEGY_ADAPTER_ABI = '[<your ABI>]' | |
LEVERAGE_REBALANCE_VIEWER_ABI = '[<your ABI>]' |