Skip to content

Commit

Permalink
chore: deploy mainnet (#252)
Browse files Browse the repository at this point in the history
Closes #251

---------

Co-authored-by: K1-R1 <[email protected]>
Co-authored-by: Viraz Malhotra <[email protected]>
  • Loading branch information
3 people authored Oct 11, 2024
1 parent 36db2af commit 2f61bd8
Show file tree
Hide file tree
Showing 35 changed files with 5,534 additions and 12 deletions.
5 changes: 5 additions & 0 deletions .changeset/hot-wombats-confess.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@fuel-bridge/solidity-contracts': minor
---

Deploy mainnet contracts
32 changes: 32 additions & 0 deletions .github/workflows/verify-upgrade-mainnet.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Verify Mainnet Deployment

on:
push:
branches:
- main
pull_request:
branches:
- main # Target branch for the PR
release:
types: [published]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true

jobs:
verify-upgrade:
runs-on: ubuntu-latest
env:
RPC_URL: ${{ secrets.RPC_URL || 'https://eth.llamarpc.com' }}
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v3
- uses: FuelLabs/github-actions/setups/node@master
with:
node-version: 20.16.0
pnpm-version: 9.0.6
- name: Verify deployment bytecode
run: |
npx hardhat compile && npx hardhat verify-mainnet-deployments --network mainnet
working-directory: ./packages/solidity-contracts
Loading

0 comments on commit 2f61bd8

Please sign in to comment.