Skip to content

Commit

Permalink
some style changes made before pushing up
Browse files Browse the repository at this point in the history
  • Loading branch information
CJPotter10 committed Apr 17, 2024
1 parent 8afd153 commit 9aade39
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/telliot_core/apps/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
2046399126: "Skale Europa Mainnet",
59141: "Linea Sepolia",
324: "zkSync Era Mainnet",
300: "zkSync Era Sepolia Testnet"
300: "zkSync Era Sepolia Testnet",
}

LOGLEVEL_MAP = {
Expand Down
4 changes: 2 additions & 2 deletions src/telliot_core/model/chain.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,11 +278,11 @@ class Chain(Base):
),
Chain(
chain_id=324,
name="zkSync Era Sepolia Testnet",
name="zkSync Era Sepolia Testnet",
chain="zkSync Era Sepolia Testnet",
network="testnet",
currency=EVMCurrency(name="Ether", symbol="ETH", decimals=18),
)
),
]


Expand Down
6 changes: 3 additions & 3 deletions src/telliot_core/model/endpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,15 +344,15 @@ def connect(self) -> bool:
provider="zksync",
network="ZkSync Era Mainnet",
url="https://mainnet.era.zksync.io",
explorer="https://explorer.zksync.io"
explorer="https://explorer.zksync.io",
),
RPCEndpoint(
chain_id=300,
provider="zksync",
network="ZkSync Era Sepolia Testnet",
url="https://zksync-era-sepolia.blockpi.network/v1/rpc/public",
explorer="https://sepolia.explorer.zksync.io"
)
explorer="https://sepolia.explorer.zksync.io",
),
]


Expand Down

0 comments on commit 9aade39

Please sign in to comment.