Skip to content

Commit

Permalink
fraxtal deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
bout3fiddy committed Feb 13, 2024
1 parent de27a9a commit 7507f64
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/push_pr.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
on:
release:
types: [ created ]
types: [created]

name: on-creating-new-tag

Expand Down Expand Up @@ -30,7 +30,7 @@ jobs:
git config user.name "curvefi"
git remote update
git fetch
git checkout master
git checkout main
git add deployments
git commit -m "chore: add release file - $TITLE"
git push
Expand Down
6 changes: 6 additions & 0 deletions deployments.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ ethereum:sepolia:
factory: '0x4b00E8c997AeBACeEf6B8c6F89eE2bf99b2CA846'
math: '0x550574E33b81C45D3D69250b46Ae30c7bC40d330'
views: '0x59AfCD3e931018dc493AA1d833B11bb5A0744906'
fraxtal:mainnet:
amm_native_transfers_disabled: '0x1A83348F9cCFD3Fe1A8C0adBa580Ac4e267Fe495'
amm_native_transfers_enabled: '0xd3b17f862956464ae4403ccf829ce69199856e1e'
factory: '0xc9Fe0C63Af9A39402e8a5514f9c43Af0322b665F'
math: '0x0C9D8c7e486e822C29488Ff51BFf0167B4650953'
views: '0x64379C265Fc6595065D7d835AAaa731c0584dB80'
ftm:mainnet:
amm_native_transfers_disabled: '0xd125E7a0cEddF89c6473412d85835450897be6Dc'
amm_native_transfers_enabled: '0x76303e4fDcA0AbF28aB3ee42Ce086E6503431F1D'
Expand Down
6 changes: 3 additions & 3 deletions scripts/deploy_infra.py
Original file line number Diff line number Diff line change
Expand Up @@ -215,9 +215,9 @@ def main():

forkmode = False
deploy_infra(
":mainnet",
os.environ["RPC_"],
"",
"fraxtal:mainnet",
os.environ["RPC_FRAXTAL"],
"FIDDYDEPLOYER",
fork=forkmode,
)

Expand Down
4 changes: 4 additions & 0 deletions scripts/deployment_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ class CurveNetworkSettings:
thin_proxy_contract="",
fee_receiver_address="0x4920088D9a5e5De9c098FCA4960d0DA5f4caa4c1",
),
"fraxtal:mainnet": CurveNetworkSettings(
thin_proxy_contract="0x8b3EFBEfa6eD222077455d6f0DCdA3bF4f3F57A6",
fee_receiver_address="0x8b3EFBEfa6eD222077455d6f0DCdA3bF4f3F57A6",
),
}

CURVE_DAO_OWNERSHIP = {
Expand Down

0 comments on commit 7507f64

Please sign in to comment.