Homepage | Docs | Developers
Quickstart | Configuration | Message Execution Options | Endpoint Addresses
Template project for getting started with LayerZero's OFT
contract development.
ProxyAdmin
:0x223a681fc5c5522c85c96157c0efa18cd6c5405c
- Msigs (links to gnosis safe)
- Chain:
Ethereum
,Metis
,Blast
,Base
- Chain to convert from native token into OFT: Ethereum
- Admin: Chain-respective msig
- OFTs
FRAX
:0x909DBdE1eBE906Af95660033e478D59EFe831fED
sFRAX
:0xe4796cCB6bB5DE2290C417Ac337F2b66CA2E770E
sfrxETH
:0x1f55a02A049033E3419a8E2975cF3F572F4e6E9A
FXS
:0x23432452B720C80553458496D4D9d7C5003280d0
frxETH
:0xF010a7c8877043681D59AD125EbF575633505942
FPI
:0x6Eca253b102D41B6B69AC815B9CC6bD47eF1979d
- Chain:
Mode
,Sei
,Fraxtal
,X-Layer
- Admin:
ProxyAdmin
(owned by chain-respective msig) - OFTs
FRAX
:0x80eede496655fb9047dd39d9f418d5483ed600df
sFRAX
:0x5bff88ca1442c2496f7e475e9e7786383bc070c0
sfrxETH
:0x3ec3849c33291a9ef4c5db86de593eb4a37fde45
FXS
:0x64445f0aecc51e94ad52d8ac56b7190e764e561a
frxETH
:0x43eDD7f3831b08FE70B7555ddD373C8bF65a9050
FPI
:0x90581eCa9469D8D7F5D3B60f4715027aDFCf7927
- Admin: Chain-respective msig
FRAX
- SPL Token:
B4Ds2fCbxjSiVLNyGQd44htvvNuVxzdoJSxNsRv3nxpE
- OFT Config:
7pw5h3gc4LQCGPdq9qsqCdBDt6vtyk5CWjL9spsjp7Sa
- As bytes32:
0x656d91ab3d464c05cd1345ce21c78e36140a36491e102fbb08c58af73aafe89b
- As bytes32:
- SPL Token:
sFrax
- SPL Token:
DnVyztLHnDyTqL3xfPYF9Uqpgrhcxphn6e31sVAwtg6K
- OFT Config:
3BcysJF4fQx86fVTDTBGNpZyRpeMyTF8XsuvPHJQuP3V
- As bytes32:
0x206fdd7d0be90d8ff93f6f7f4bd4d8b42ca8977317da0b7d2861299e3c589dd8
- As bytes32:
- SPL Token:
sfrxETH
- SPL Token:
6iHW2j5dvW8EiEVSXqQFjm7c5xNd4MdYuXLrW3eQ1UYw
- OFT Config:
8AdTghMT8yyNpWrTuPoDjrtXW7t1YEZgLVjWDftWfCxo
- As bytes32:
0x6a7942e4eb4938d5490d8187183d01123f515025f4244670aff7f8ecd2250d50
- As bytes32:
- SPL Token:
FXS
- SPL Token:
8QRvtWw4XYQW7UqTiGhzyWZkhCqSwZDA5qjRWDotSZ4e
- OFT Config:
5KYEyuA1cAdnZFj4i6zUjTEre4s7snacyXbkTmNqLjJs
- As bytes32:
0x402e86d1cfd2cde4fac63aa8d9892eca6d3c0e08e8335622124332a95df6c10c
- As bytes32:
- SPL Token:
frxETH
- SPL Token:
CuXHLCxCcyPkmbemPxh7PAWedfFffeL82b6VPJmonTaa
- OFT Config:
AzaSy9yr44e4bnWNdrNkxmye1kEYmbbgGfY8a3ZqzuMf
- As bytes32:
0x94791ba0aae2b57460c63d36346392d849b22f39fd3eafad5bc82d01e352dde6
- As bytes32:
- SPL Token:
FPI
- SPL Token:
FqRC7vNLS3ubbhtdqNSz8Q5ei8VdUxF6H6eoXQLHxihr
- OFT Config:
BG9oPj76NRPbj1e1GbL4imnqo9VD7W2ukpnRFSWtq5CA
- As bytes32:
0x9876880bee04a9020e619b1be124ee307e03ca94bab4f32a7a22cfd2ccee3927
- As bytes32:
- SPL Token:
- Ensure
PK_OFT_DEPLOYER
andPK_CONFIG_DEPLOYER
are the private keys for0x9C9dD956b413cdBD81690c9394a6B4D22afe6745
and0x0990be6dB8c785FBbF9deD8bAEc612A10CaE814b
, respectively. - Modify
.env
RPC_URL
to the new chain RPC - Add an item to
scripts/L0Config.json:Proxy
with the new chain details (incorrect data will cause the script to fail). source .env && forge script scripts/DeployFraxOFTProtocol.s.sol --broadcast --slow
- Manually verify each contract on the deployed chain (TODO: add to script cmd).
- Modify
scripts/tx/{SOURCE_CHAIN_ID}-{DESTINATION_CHAIN_ID}.json
values to strings so that:
"operation": "0",
...
"value": "0"
TODO: automatically save as strings.
- Submit each newly crafted json to the respective
DESTINATION_CHAIN_ID
msig.
We recommend using pnpm
as a package manager (but you can of course use a package manager of your choice):
pnpm install
This project supports both hardhat
and forge
compilation. By default, the compile
command will execute both:
pnpm compile
If you prefer one over the other, you can use the tooling-specific commands:
pnpm compile:forge
pnpm compile:hardhat
Or adjust the package.json
to for example remove forge
build:
- "compile": "$npm_execpath run compile:forge && $npm_execpath run compile:hardhat",
- "compile:forge": "forge build",
- "compile:hardhat": "hardhat compile",
+ "compile": "hardhat compile"
Similarly to the contract compilation, we support both hardhat
and forge
tests. By default, the test
command will execute both:
pnpm test
If you prefer one over the other, you can use the tooling-specific commands:
pnpm test:forge
pnpm test:hardhat
Or adjust the package.json
to for example remove hardhat
tests:
- "test": "$npm_execpath test:forge && $npm_execpath test:hardhat",
- "test:forge": "forge test",
- "test:hardhat": "$npm_execpath hardhat test"
+ "test": "forge test"
Set up deployer wallet/account:
- Rename
.env.example
->.env
- Choose your preferred means of setting up your deployer wallet/account:
MNEMONIC="test test test test test test test test test test test junk"
or...
PRIVATE_KEY="0xabc...def"
- Fund this address with the corresponding chain's native tokens you want to deploy to.
To deploy your contracts to your desired blockchains, run the following command in your project's folder:
npx hardhat lz:deploy
More information about available CLI arguments can be found using the --help
flag:
npx hardhat lz:deploy --help
By following these steps, you can focus more on creating innovative omnichain solutions and less on the complexities of cross-chain communication.