Skip to content

Commit

Permalink
deploy usdc3crv
Browse files Browse the repository at this point in the history
  • Loading branch information
bout3fiddy committed Nov 11, 2023
1 parent 7fb7a1b commit 304d17b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion contracts/main/LiquidityGauge.vy
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ def __init__(_lp_token: address):
"""
self.lp_token = _lp_token
self.factory = msg.sender
self.manager = msg.sender
self.manager = tx.origin

symbol: String[32] = ERC20Extended(_lp_token).symbol()
name: String[64] = concat("Curve.fi ", symbol, " Gauge Deposit")
Expand Down
6 changes: 3 additions & 3 deletions scripts/deploy_pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def deploy_pool(network, url, account, pool_type, fork):
elif pool_type == "meta":
amm_address = factory.deploy_metapool(*args)

logger.log(f"Deployed Plain pool {amm_address}.")
logger.log(f"Deployed pool {amm_address}.")

return amm_address

Expand Down Expand Up @@ -187,7 +187,7 @@ def deploy_pool_and_gauge(network, url, account, pool_type, fork):
elif pool_type == "meta":
amm_address = factory.deploy_metapool(*args)

logger.log(f"Deployed Plain pool {amm_address}.")
logger.log(f"Deployed pool {amm_address}.")

gauge_address = factory.deploy_gauge(amm_address)

Expand All @@ -197,7 +197,7 @@ def deploy_pool_and_gauge(network, url, account, pool_type, fork):
def main():

fork = False
deploy_pool_and_gauge("ethereum:mainnet", "http://localhost:9090", "FIDDYDEPLOYER", "meta", fork)
deploy_pool_and_gauge("ethereum:mainnet", os.environ["RPC_ETHEREUM"], "FIDDYDEPLOYER", "meta", fork)


if __name__ == "__main__":
Expand Down

0 comments on commit 304d17b

Please sign in to comment.