Skip to content

Commit

Permalink
Remove TODOs & update README
Browse files Browse the repository at this point in the history
  • Loading branch information
Lesigh-3100 committed Jun 18, 2024
1 parent a19962f commit b2fe04c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ export WEB3_ALCHEMY_BASE="api_key_here"
export WEB3_FANTOM="api_key_here"
export WEB3_MANTLE="api_key_here"
export WEB3_LINEA="api_key_here"
export WEB3_SEI="api_key_here"
```
**Note:** To use the Fantom public RPC, write "public" in place of the API key.

Expand Down
8 changes: 4 additions & 4 deletions fastlane_bot/config/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -791,7 +791,7 @@ class _ConfigNetworkSei(ConfigNetwork):
"""

NETWORK = S.NETWORK_SEI
NETWORK_ID = "1329" # TODO
NETWORK_ID = "1329"
NETWORK_NAME = "sei"
DEFAULT_PROVIDER = S.PROVIDER_ALCHEMY
RPC_ENDPOINT = "https://evm-rpc.sei-apis.com/?x-apikey="
Expand All @@ -808,15 +808,15 @@ class _ConfigNetworkSei(ConfigNetwork):
WRAPPED_GAS_TOKEN_ADDRESS = "0xE30feDd158A2e3b13e9badaeABaFc5516e95e8C7"
NATIVE_GAS_TOKEN_SYMBOL = "SEI"
WRAPPED_GAS_TOKEN_SYMBOL = "WSEI"
STABLECOIN_ADDRESS = "0xace5f7Ea93439Af39b46d2748fA1aC19951c8d7C" #TODO USDC on devnet
STABLECOIN_ADDRESS = "0x3894085Ef7Ff0f0aeDf52E2A2704928d1Ec074F1"

IS_INJECT_POA_MIDDLEWARE = False
# Balancer
BALANCER_VAULT_ADDRESS = "0x7ccBebeb88696f9c8b061f1112Bb970158e29cA5" # # TODO Jellyswap on devnet
BALANCER_VAULT_ADDRESS = "0xFB43069f6d0473B85686a85F4Ce4Fc1FD8F00875"

CHAIN_FLASHLOAN_TOKENS = {
"0xE30feDd158A2e3b13e9badaeABaFc5516e95e8C7": "WSEI",
"0xace5f7Ea93439Af39b46d2748fA1aC19951c8d7C": "USDC", #TODO confirm for Mainnet
"0x3894085Ef7Ff0f0aeDf52E2A2704928d1Ec074F1": "USDC",
}
# Add any exchanges unique to the chain here
CHAIN_SPECIFIC_EXCHANGES = []
Expand Down

0 comments on commit b2fe04c

Please sign in to comment.