Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Deploy Lightbridge contracts on sepolia #3

Merged
merged 6 commits into from
Feb 13, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
39 changes: 25 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

This service monitors the on-chain events and release funds when a new deposit is found.

## Run hardhat scripts
Example: `npx hardhat run ./deploy/transfer-ownership.ts --network boba_goerli`

## Configuration

All configuration is done via environment variables. See all variables at [.env.example](.env.example); copy into a `.env` file before running.
Expand Down Expand Up @@ -34,35 +37,43 @@ Connect to Postgres on CLI:

## Deployments

Audits outstanding.
Contract audited.

---

## Testnet deployments

### Sepolia (L1)
- LightBridge deployed to: `0x45B9877497d73C683D38e0C7FfCf089D5D9FDCDf`
- Proxy__LightBridge deployed to: `0x670b130112C6f03E17192e63c67866e67D77c3ee`

### Goerli (L1)
- Teleportation deployed to: `0xB93d9748808A5cC7dC6b61b31F15b87F50BfcAd0`
- Proxy__Teleportation deployed to: `0x84b22166366a6f7E0cD0c3ce9998f2913Bf17A13`
- LightBridge deployed to: `0xB93d9748808A5cC7dC6b61b31F15b87F50BfcAd0`
- Proxy__LightBridge deployed to: `0x84b22166366a6f7E0cD0c3ce9998f2913Bf17A13`

### BNB Testnet (L1)
- Teleportation deployed to: `0xD151c8F0dc69618e6180a2dC74B05cCE3E08e0aC`
- Proxy__Teleportation deployed to: `0x7f6a32bCaA70c65E08F2f221737612F6fC18347A`
- LightBridge deployed to: `0xD151c8F0dc69618e6180a2dC74B05cCE3E08e0aC`
- Proxy__LightBridge deployed to: `0x7f6a32bCaA70c65E08F2f221737612F6fC18347A`

### Boba Sepolia
- LightBridge deployed to: `0x3f7Da9C51138E0475aA26E80677d27A568cFD6b9`
- Proxy__LightBridge deployed to: `0x2dE73Bd1660Fbf4D521a52Ec2a91CCc106113801`

### Boba Goerli
- Teleportation deployed to: `0x95ec63aE2573bD5e70C223E075D9483573968699`
- Proxy__Teleportation deployed to: `0xB43EE846Aa266228FeABaD1191D6cB2eD9808894`
- LightBridge deployed to: `0x95ec63aE2573bD5e70C223E075D9483573968699`
- Proxy__LightBridge deployed to: `0xB43EE846Aa266228FeABaD1191D6cB2eD9808894`

### Boba BNB Testnet
- Teleportation deployed to: `0x46FA6144C61d2bb9aCDc3Ca90C8673dd9B6caEB2`
- Proxy__Teleportation deployed to: `0xf4d179d3a083Fa3Eede935FaF4C679D32d514186`
- LightBridge deployed to: `0x46FA6144C61d2bb9aCDc3Ca90C8673dd9B6caEB2`
- Proxy__LightBridge deployed to: `0xf4d179d3a083Fa3Eede935FaF4C679D32d514186`

### Arbitrum Goerli
- Teleportation deployed to: `0x81F27a114A25ac1c6186fC36888B1b120a46a650`
- Proxy__Teleportation deployed to: `0x7063f59e1Db3e505D844d11A71C78F92D39E5963`
- LightBridge deployed to: `0x81F27a114A25ac1c6186fC36888B1b120a46a650`
- Proxy__LightBridge deployed to: `0x7063f59e1Db3e505D844d11A71C78F92D39E5963`

### Optimism Goerli
- Teleportation deployed to: `0x885bfeC3D89755d2bCc1e73b6EeEEae94D54eBE4`
- Proxy__Teleportation deployed to: `0xC226F132A686A08018431C913d87693396246024`
- LightBridge deployed to: `0x885bfeC3D89755d2bCc1e73b6EeEEae94D54eBE4`
- Proxy__LightBridge deployed to: `0xC226F132A686A08018431C913d87693396246024`


---
Expand All @@ -76,7 +87,7 @@ Audits outstanding.
## Contract params
This section describes how whitelisted routes between networks can be configured. By default no asset can be bridged, not even the native asset - all need to be explicitly whitelisted.

Asset support is configured on-chain on the Teleportation contract via
Asset support is configured on-chain on the LightBridge contract via
`function addSupportedToken(address _token, uint32 _toChainId, uint256 _minDepositAmount, uint256 _maxDepositAmount, uint256 _maxTransferAmountPerDay)`.

### Indicate support
Expand Down
Loading
Loading