Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bal_tools/etherscan.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Etherscan:
BASE_URL = "https://api.etherscan.io/v2/api"
# can be removed if official support is added by etherscan or a dedicated blocks subgraph is added
# no api key needed
# https://github.com/BalancerMaxis/bal_tools/pull/137
# https://github.com/balancer/bal_tools/pull/137
PLASMA_API_URL = (
"https://api.routescan.io/v2/network/mainnet/evm/9745/etherscan/api"
)
Expand Down
4 changes: 2 additions & 2 deletions bal_tools/pools_gauges.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@
)

GITHUB_RAW_OUTPUTS = (
"https://raw.githubusercontent.com/BalancerMaxis/bal_addresses/main/outputs"
"https://raw.githubusercontent.com/balancer/bal_addresses/main/outputs"
)
GITHUB_RAW_CONFIG = (
"https://raw.githubusercontent.com/BalancerMaxis/bal_addresses/main/config"
"https://raw.githubusercontent.com/balancer/bal_addresses/main/config"
)


Expand Down
2 changes: 1 addition & 1 deletion bal_tools/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


CHAINS = requests.get(
"https://raw.githubusercontent.com/BalancerMaxis/bal_addresses/refs/heads/main/extras/chains.json"
"https://raw.githubusercontent.com/balancer/bal_addresses/refs/heads/main/extras/chains.json"
).json()


Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"safe_tx_builder/templates/*.json",
]
},
url="https://github.com/BalancerMaxis/bal_tools",
url="https://github.com/balancer/bal_tools",
install_requires=[
"wheel",
"web3>=6.0.0",
Expand All @@ -37,7 +37,7 @@
],
extras_require={
"brownie": [
"eth-brownie @ git+https://github.com/BalancerMaxis/brownie.git@v1.20.x"
"eth-brownie @ git+https://github.com/balancer/brownie.git@v1.20.x"
],
},
keywords=["python", "first package"],
Expand Down