Comparing ens with layerzero
ens
View full →Author
@0xinit
Stars
53
Repository
0xinit/cryptoskills
ENS (Ethereum Name Service)
ENS maps human-readable names (alice.eth) to Ethereum addresses, content hashes, and arbitrary metadata. It is the identity layer for Ethereum — used for wallets, dApps, and onchain profiles. The architecture separates the registry (who owns a name) from resolvers (what data a name points to).
What You Probably Got Wrong
- ENS uses
namehash, not plain strings -- The registry and resolvers never see "alice.eth" as a string. Names are normalized (UTS-46), then hashed with the recursivenamehashalgorithm (EIP-137). If you pass a raw string to a contract call, it will not work. viem handles this automatically in its ENS actions but you must usenamehash()andlabelhash()for direct contract calls. - Registry vs Resolver vs Registrar -- three different contracts -- The Registry tracks name ownership and which resolver to use. The Resolver stores records (address, text, contenthash). The Registrar handles
.ethname registration and renewal. Confusing these is the most common ENS integration bug. .ethregistrar uses commit-reveal, not a single transaction -- Registration requires two transactions separated by at least 60 seconds: firstcommit(secret), wait, thenregister(name, owner, duration, secret, ...). This prevents frontrunning. Skipping the wait or reusing a secret will revert.- Reverse resolution is opt-in -- An address only has a "primary name" if the owner explicitly set it via the Reverse Registrar. Do not assume every address has a reverse record. Always handle
nullreturns fromgetEnsName(). - Name Wrapper changes ownership semantics -- Since 2023, ENS names can be "wrapped" as ERC-1155 tokens via the Name Wrapper contract. Wrapped names have fuses that permanently restrict operations (cannot unwrap, cannot set resolver, etc.). Check
isWrappedbefore assuming standard ownership patterns. - CCIP-Read (ERC-3668) enables offchain resolution -- Resolvers can return an
OffchainLookuperror that instructs the client to fetch data from an offchain gateway and verify it onchain. This powers offchain subdomains, L2 resolution, and gasless record updates. viem handles CCIP-Read automatically. - Wildcard resolution (ENSIP-10) is real -- Resolvers can implement
resolve(bytes name, bytes data)to handle any subdomain dynamically, even ones not explicitly registered. This is how services like cb.id and lens.xyz work. - ENS names expire --
.ethnames require annual renewal. Expired names enter a 90-day grace period, then a 21-day premium auction, then become available. Do not cache resolution results indefinitely. normalize()before any ENS operation -- Names must be UTS-46 normalized before hashing. "Alice.ETH" and "alice.eth" produce different hashes. viem normalizes automatically, but if you build raw calldata you must normalize first using@adraffy/ens-normalize.
Quick Start
Installation
npm install viem
viem has built-in ENS support -- no additional packages needed for resolution.
Forward Resolution (Name to Address)
import { createPublicClient, http } from "viem";
import { mainnet } from "viem/chains";
const client = createPublicClient({
chain: mainnet,
transport: http(process.env.RPC_URL),
});
const address = await client.getEnsAddress({
name: "vitalik.eth",
});
// "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045"
Reverse Resolution (Address to Name)
const name = await client.getEnsName({
address: "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
});
// "vitalik.eth" (or null if no primary name set)
Get Avatar
const avatar = await client.getEnsAvatar({
name: "vitalik.eth",
});
// HTTPS URL to avatar image, or null
Name Resolution
Forward Resolution with Coin Types
ENS can store addresses for any blockchain, not just Ethereum. Each chain has a SLIP-44 coin type.
const ethAddress = await client.getEnsAddress({
name: "vitalik.eth",
});
// BTC address (coin type 0)
const btcAddress = await client.getEnsAddress({
name: "vitalik.eth",
coinType: 0,
});
// Solana address (coin type 501)
const solAddress = await client.getEnsAddress({
name: "vitalik.eth",
coinType: 501,
});
Text Records
ENS text records store arbitrary key-value metadata. Standard keys are defined in ENSIP-5.
const twitter = await client.getEnsText({
name: "vitalik.eth",
key: "com.twitter",
});
const github = await client.getEnsText({
name: "vitalik.eth",
key: "com.github",
});
const email = await client.getEnsText({
name: "vitalik.eth",
key: "email",
});
const url = await client.getEnsText({
name: "vitalik.eth",
key: "url",
});
const description = await client.getEnsText({
name: "vitalik.eth",
key: "description",
});
// Avatar is also a text record (ENSIP-12 supports NFT references)
const avatarRecord = await client.getEnsText({
name: "vitalik.eth",
key: "avatar",
});
// Can be HTTPS URL, IPFS URI, or NFT reference like
// "eip155:1/erc721:0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d/1234"
Standard Text Record Keys
| Key | Description |
|---|---|
email | Email address |
url | Website URL |
avatar | Avatar image (HTTPS, IPFS, or NFT reference) |
description | Short bio |
display | Display name (may differ from ENS name) |
com.twitter | Twitter/X handle |
com.github | GitHub username |
com.discord | Discord username |
org.telegram | Telegram handle |
notice | Contract notice text |
keywords | Comma-separated keywords |
header | Profile header/banner image |
Content Hash
import { createPublicClient, http, parseAbi } from "viem";
import { mainnet } from "viem/chains";
import { namehash } from "viem/ens";
const client = createPublicClient({
chain: mainnet,
transport: http(process.env.RPC_URL),
});
const RESOLVER_ABI = parseAbi([
"function contenthash(bytes32 node) view returns (bytes)",
]);
const node = namehash("vitalik.eth");
// First get the resolver address
const resolverAddress = await client.getEnsResolver({
name: "vitalik.eth",
});
const contenthash = await client.readContract({
address: resolverAddress,
abi: RESOLVER_ABI,
functionName: "contenthash",
args: [node],
});
// Encoded content hash (IPFS, Swarm, Arweave, etc.)
Batch Resolution with Multicall
import { createPublicClient, http, parseAbi } from "viem";
import { mainnet } from "viem/chains";
import { namehash } from "viem/ens";
const client = createPublicClient({
chain: mainnet,
transport: http(process.env.RPC_URL),
});
const RESOLVER_ABI = parseAbi([
"function addr(bytes32 node) view returns (address)",
"function text(bytes32 node, string key) view returns (string)",
]);
const node = namehash("vitalik.eth");
const resolverAddress = await client.getEnsResolver({
name: "vitalik.eth",
});
const results = await client.multicall({
contracts: [
{
address: resolverAddress,
abi: RESOLVER_ABI,
functionName: "addr",
args: [node],
},
{
address: resolverAddress,
abi: RESOLVER_ABI,
functionName: "text",
args: [node, "com.twitter"],
},
{
address: resolverAddress,
abi: RESOLVER_ABI,
functionName: "text",
args: [node, "com.github"],
},
{
address: resolverAddress,
abi: RESOLVER_ABI,
functionName: "text",
args: [node, "url"],
},
],
});
const [addr, twitter, github, url] = results.map((r) => r.result);
Registration
Commit-Reveal Process
ENS .eth registration uses a two-step commit-reveal to prevent frontrunning. You must wait at least 60 seconds between commit and register.
import {
createPublicClient,
createWalletClient,
http,
parseAbi,
encodePacked,
keccak256,
parseEther,
} from "viem";
import { privateKeyToAccount } from "viem/accounts";
import { mainnet } from "viem/chains";
const ETH_REGISTRAR_CONTROLLER =
"0x253553366Da8546fC250F225fe3d25d0C782303b" as const;
const CONTROLLER_ABI = parseAbi([
"function rentPrice(string name, uint256 duration) view returns (tuple(uint256 base, uint256 premium))",
"function available(string name) view returns (bool)",
"function makeCommitment(string name, address owner, uint256 duration, bytes32 secret, address resolver, bytes[] data, bool reverseRecord, uint16 ownerControlledFuses) pure returns (bytes32)",
"function commit(bytes32 commitment) external",
"function register(string name, address owner, uint256 duration, bytes32 secret, address resolver, bytes[] data, bool reverseRecord, uint16 ownerControlledFuses) payable",
]);
const PUBLIC_RESOLVER = "0x231b0Ee14048e9dCcD1d247744d114a4EB5E8E63" as const;
const account = privateKeyToAccount(
process.env.PRIVATE_KEY as `0x${string}`
);
const client = createPublicClient({
chain: mainnet,
transport: http(process.env.RPC_URL),
});
const walletClient = createWalletClient({
account,
chain: mainnet,
transport: http(process.env.RPC_URL),
});
async function registerName(label: string, durationSeconds: bigint) {
// 1. Check availability
const isAvailable = await client.readContract({
address: ETH_REGISTRAR_CONTROLLER,
abi: CONTROLLER_ABI,
functionName: "available",
args: [label],
});
if (!isAvailable) throw new Error(`${label}.eth is not available`);
// 2. Get price
const rentPrice = await client.readContract({
address: ETH_REGISTRAR_CONTROLLER,
abi: CONTROLLER_ABI,
functionName: "rentPrice",
args: [label, durationSeconds],
});
// Add 10% buffer for price fluctuation during commit-reveal wait
const totalPrice =
((rentPrice.base + rentPrice.premium) * 110n) / 100n;
// 3. Generate secret (random 32 bytes)
const secret = keccak256(
encodePacked(["address", "uint256"], [account.address, BigInt(Date.now())])
);
// 4. Create commitment
const commitment = await client.readContract({
address: ETH_REGISTRAR_CONTROLLER,
abi: CONTROLLER_ABI,
functionName: "makeCommitment",
args: [
label,
account.address,
durationSeconds,
secret,
PUBLIC_RESOLVER,
[], // data (encoded resolver calls to set records at registration)
true, // reverseRecord (set as primary name)
0, // ownerControlledFuses (0 = no fuses)
],
});
// 5. Submit commitment
const commitHash = await walletClient.writeContract({
address: ETH_REGISTRAR_CONTROLLER,
abi: CONTROLLER_ABI,
functionName: "commit",
args: [commitment],
});
await client.waitForTransactionReceipt({ hash: commitHash });
console.log("Commitment submitted. Waiting 60 seconds...");
// 6. Wait at least 60 seconds (minCommitmentAge)
await new Promise((resolve) => setTimeout(resolve, 65_000));
// 7. Register
const registerHash = await walletClient.writeContract({
address: ETH_REGISTRAR_CONTROLLER,
abi: CONTROLLER_ABI,
functionName: "register",
args: [
label,
account.address,
durationSeconds,
secret,
PUBLIC_RESOLVER,
[],
true,
0,
],
value: totalPrice,
});
const receipt = await client.waitForTransactionReceipt({
hash: registerHash,
});
if (receipt.status !== "success") {
throw new Error("Registration transaction reverted");
}
console.log(`Registered ${label}.eth for ${durationSeconds / 31536000n} year(s)`);
return receipt;
}
// Register for 1 year (365 days in seconds)
await registerName("myname", 31536000n);
Renewal
const CONTROLLER_ABI_RENEW = parseAbi([
"function rentPrice(string name, uint256 duration) view returns (tuple(uint256 base, uint256 premium))",
"function renew(string name, uint256 duration) payable",
]);
async function renewName(label: string, durationSeconds: bigint) {
const rentPrice = await client.readContract({
address: ETH_REGISTRAR_CONTROLLER,
abi: CONTROLLER_ABI_RENEW,
functionName: "rentPrice",
args: [label, durationSeconds],
});
// 5% buffer for price changes
const totalPrice = ((rentPrice.base + rentPrice.premium) * 105n) / 100n;
const hash = await walletClient.writeContract({
address: ETH_REGISTRAR_CONTROLLER,
abi: CONTROLLER_ABI_RENEW,
functionName: "renew",
args: [label, durationSeconds],
value: totalPrice,
});
const receipt = await client.waitForTransactionReceipt({ hash });
if (receipt.status !== "success") {
throw new Error("Renewal transaction reverted");
}
console.log(`Renewed ${label}.eth for ${durationSeconds / 31536000n} year(s)`);
return receipt;
}
Check Price Before Registering
async function getRegistrationCost(
label: string,
durationSeconds: bigint
): Promise<{ base: bigint; premium: bigint; total: bigint }> {
const rentPrice = await client.readContract({
address: ETH_REGISTRAR_CONTROLLER,
abi: CONTROLLER_ABI,
functionName: "rentPrice",
args: [label, durationSeconds],
});
return {
base: rentPrice.base,
premium: rentPrice.premium,
total: rentPrice.base + rentPrice.premium,
};
}
Working with Resolvers
Setting Text Records
import {
createPublicClient,
createWalletClient,
http,
parseAbi,
} from "viem";
import { privateKeyToAccount } from "viem/accounts";
import { mainnet } from "viem/chains";
import { namehash } from "viem/ens";
const PUBLIC_RESOLVER = "0x231b0Ee14048e9dCcD1d247744d114a4EB5E8E63" as const;
const RESOLVER_ABI = parseAbi([
"function setText(bytes32 node, string key, string value) external",
"function setAddr(bytes32 node, address addr) external",
"function setAddr(bytes32 node, uint256 coinType, bytes value) external",
"function setContenthash(bytes32 node, bytes hash) external",
"function multicall(bytes[] data) external returns (bytes[])",
]);
const account = privateKeyToAccount(
process.env.PRIVATE_KEY as `0x${string}`
);
const client = createPublicClient({
chain: mainnet,
transport: http(process.env.RPC_URL),
});
const walletClient = createWalletClient({
account,
chain: mainnet,
transport: http(process.env.RPC_URL),
});
const node = namehash("myname.eth");
// Set a single text record
const hash = await walletClient.writeContract({
address: PUBLIC_RESOLVER,
abi: RESOLVER_ABI,
functionName: "setText",
args: [node, "com.twitter", "myhandle"],
});
await client.waitForTransactionReceipt({ hash });
Batch Update Records with Multicall
Setting multiple records in a single transaction using the resolver's built-in multicall.
import { encodeFunctionData } from "viem";
const node = namehash("myname.eth");
const calls = [
encodeFunctionData({
abi: RESOLVER_ABI,
functionName: "setText",
args: [node, "com.twitter", "myhandle"],
}),
encodeFunctionData({
abi: RESOLVER_ABI,
functionName: "setText",
args: [node, "com.github", "mygithub"],
}),
encodeFunctionData({
abi: RESOLVER_ABI,
functionName: "setText",
args: [node, "url", "https://mysite.com"],
}),
encodeFunctionData({
abi: RESOLVER_ABI,
functionName: "setText",
args: [node, "email", "me@mysite.com"],
}),
encodeFunctionData({
abi: RESOLVER_ABI,
functionName: "setText",
args: [node, "avatar", "https://mysite.com/avatar.png"],
}),
];
const hash = await walletClient.writeContract({
address: PUBLIC_RESOLVER,
abi: RESOLVER_ABI,
functionName: "multicall",
args: [calls],
});
const receipt = await client.waitForTransactionReceipt({ hash });
if (receipt.status !== "success") {
throw new Error("Multicall record update reverted");
}
Setting the Primary Name (Reverse Record)
const REVERSE_REGISTRAR = "0xa58E81fe9b61B5c3fE2AFD33CF304c454AbFc7Cb" as const;
const REVERSE_ABI = parseAbi([
"function setName(string name) external returns (bytes32)",
]);
const hash = await walletClient.writeContract({
address: REVERSE_REGISTRAR,
abi: REVERSE_ABI,
functionName: "setName",
args: ["myname.eth"],
});
await client.waitForTransactionReceipt({ hash });
Subdomains
Creating an Onchain Subdomain
import { parseAbi } from "viem";
import { namehash, labelhash } from "viem/ens";
const ENS_REGISTRY = "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e" as const;
const REGISTRY_ABI = parseAbi([
"function setSubnodeRecord(bytes32 node, bytes32 label, address owner, address resolver, uint64 ttl) external",
"function owner(bytes32 node) view returns (address)",
"function resolver(bytes32 node) view returns (address)",
]);
const parentNode = namehash("myname.eth");
const subLabel = labelhash("sub");
const hash = await walletClient.writeContract({
address: ENS_REGISTRY,
abi: REGISTRY_ABI,
functionName: "setSubnodeRecord",
args: [
parentNode,
subLabel,
account.address, // owner of sub.myname.eth
PUBLIC_RESOLVER, // resolver
0n, // TTL
],
});
await client.waitForTransactionReceipt({ hash });
// sub.myname.eth now exists and points to PUBLIC_RESOLVER
Offchain Subdomains (CCIP-Read / ERC-3668)
Offchain subdomains let you issue unlimited subdomains without gas costs. The resolver responds with an OffchainLookup error that directs the client to a gateway URL. The gateway returns signed data that is verified onchain.
This is how services like cb.id (Coinbase), uni.eth (Uniswap), and lens.xyz work.
For offchain resolution, viem handles CCIP-Read transparently -- no client-side changes needed:
// Resolving an offchain subdomain works identically to onchain names
const address = await client.getEnsAddress({
name: "myuser.cb.id",
});
// viem automatically:
// 1. Calls resolver.resolve(...)
// 2. Catches OffchainLookup revert
// 3. Fetches from the gateway URL
// 4. Calls resolver with the gateway proof
// 5. Returns the verified address
const avatar = await client.getEnsAvatar({
name: "myuser.cb.id",
});
To build your own offchain resolver, implement ERC-3668:
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
import {IExtendedResolver} from "@ensdomains/ens-contracts/contracts/resolvers/profiles/IExtendedResolver.sol";
/// @notice Offchain resolver that delegates lookups to a gateway
/// @dev Implements ERC-3668 (CCIP-Read) and ENSIP-10 (wildcard resolution)
contract OffchainResolver is IExtendedResolver {
string public url;
address public signer;
error OffchainLookup(
address sender,
string[] urls,
bytes callData,
bytes4 callbackFunction,
bytes extraData
);
constructor(string memory _url, address _signer) {
url = _url;
signer = _signer;
}
/// @notice ENSIP-10 wildcard resolve entry point
function resolve(
bytes calldata name,
bytes calldata data
) external view returns (bytes memory) {
string[] memory urls = new string[](1);
urls[0] = url;
revert OffchainLookup(
address(this),
urls,
data,
this.resolveWithProof.selector,
abi.encode(name, data)
);
}
/// @notice Callback that verifies the gateway signature
function resolveWithProof(
bytes calldata response,
bytes calldata extraData
) external view returns (bytes memory) {
// Verify signature from gateway matches expected signer
// Return decoded result
// Implementation depends on your signing scheme
}
}
Contract Addresses
Ethereum Mainnet. Last verified: 2025-03-01.
| Contract | Address | Purpose |
|---|---|---|
| ENS Registry | 0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e | Core registry -- maps names to owners and resolvers |
| Public Resolver | 0x231b0Ee14048e9dCcD1d247744d114a4EB5E8E63 | Default resolver for address, text, contenthash, and ABI records |
| ETH Registrar Controller | 0x253553366Da8546fC250F225fe3d25d0C782303b | Handles .eth name registration and renewal (commit-reveal) |
| Name Wrapper | 0xD4416b13d2b3a9aBae7AcD5D6C2BbDBE25686401 | Wraps names as ERC-1155 tokens with permission fuses |
| Reverse Registrar | 0xa58E81fe9b61B5c3fE2AFD33CF304c454AbFc7Cb | Manages reverse records (address-to-name mapping) |
| Base Registrar (NFT) | 0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85 | ERC-721 NFT for .eth second-level names |
| Universal Resolver | 0xce01f8eee7E30F8E3BfC1C22bCBc01faBc8680E4 | Batch resolution with CCIP-Read support |
Address Constants for TypeScript
const ENS_ADDRESSES = {
registry: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e",
publicResolver: "0x231b0Ee14048e9dCcD1d247744d114a4EB5E8E63",
ethRegistrarController: "0x253553366Da8546fC250F225fe3d25d0C782303b",
nameWrapper: "0xD4416b13d2b3a9aBae7AcD5D6C2BbDBE25686401",
reverseRegistrar: "0xa58E81fe9b61B5c3fE2AFD33CF304c454AbFc7Cb",
baseRegistrar: "0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85",
universalResolver: "0xce01f8eee7E30F8E3BfC1C22bCBc01faBc8680E4",
} as const satisfies Record<string, `0x${string}`>;
Sepolia Testnet
Last verified: 2025-03-01.
| Contract | Address |
|---|---|
| ENS Registry | 0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e |
| Public Resolver | 0x8FADE66B79cC9f707aB26799354482EB93a5B7dD |
| ETH Registrar Controller | 0xFED6a969AaA60E4961FCD3EBF1A2e8913DeBe6c7 |
| Name Wrapper | 0x0635513f179D50A207757E05759CbD106d7dFcE8 |
| Reverse Registrar | 0xA0a1AbcDAe1a2a4A2EF8e9113Ff0e02DD81DC0C6 |
Error Handling
Common Resolution Errors
async function safeResolve(name: string) {
try {
const address = await client.getEnsAddress({ name });
if (!address) {
console.log(`${name} has no address record set`);
return null;
}
return address;
} catch (error) {
if (error instanceof Error) {
// Name does not exist or is malformed
if (error.message.includes("Could not find resolver")) {
console.log(`${name} is not registered or has no resolver`);
return null;
}
// CCIP-Read gateway failure
if (error.message.includes("OffchainLookup")) {
console.log(`Offchain resolution failed for ${name}`);
return null;
}
}
throw error;
}
}
Common Registration Errors
| Error | Cause | Fix |
|---|---|---|
CommitmentTooNew | Called register() less than 60s after commit() | Wait at least 60 seconds between commit and register |
CommitmentTooOld | Commitment expired (older than 24 hours) | Submit a new commitment |
NameNotAvailable | Name is registered or in grace period | Check available() first |
DurationTooShort | Duration under minimum (28 days) | Use at least 2419200 seconds |
InsufficientValue | Sent less ETH than rentPrice() requires | Add a 5-10% buffer to rentPrice() result |
Unauthorised | Caller is not the name owner | Verify ownership via registry before writing records |
Validating ENS Names
import { normalize } from "viem/ens";
function isValidEnsName(name: string): boolean {
try {
normalize(name);
return true;
} catch {
return false;
}
}
// normalize() throws on invalid names
// Valid: "alice.eth", "sub.alice.eth", "alice.xyz"
// Invalid: names with zero-width characters, confusable Unicode, etc.
Key Constants
| Constant | Value | Notes |
|---|---|---|
| Min commitment age | 60 seconds | Wait between commit and register |
| Max commitment age | 86400 seconds (24h) | Commitment expires after this |
| Min registration duration | 2419200 seconds (28 days) | Shortest allowed registration |
| Grace period | 90 days | After expiry, owner can still renew |
| Premium auction | 21 days | After grace period, decaying price auction |
Namehash of eth | 0x93cdeb708b7545dc668eb9280176169d1c33cfd8ed6f04690a0bcc88a93fc4ae | Used as parent node for .eth names |
References
- ENS Documentation -- official docs covering architecture, resolution, registration, and CCIP-Read
- EIP-137: ENS -- core ENS specification (registry, namehash, resolvers)
- EIP-181: Reverse Resolution -- reverse registrar and addr.reverse namespace
- EIP-2304: Multichain Address Resolution -- SLIP-44 coin type support in resolvers
- ERC-3668: CCIP-Read -- offchain data retrieval standard
- ENSIP-5: Text Records -- standardized text record keys
- ENSIP-10: Wildcard Resolution -- dynamic subdomain resolution
- ENSIP-12: Avatar Text Records -- NFT and IPFS avatar specification
- ENS Deployments -- official contract addresses per network
- viem ENS Actions -- built-in ENS resolution in viem
- @adraffy/ens-normalize -- reference UTS-46 normalization library used by viem
layerzero
View full →Author
@0xinit
Stars
53
Repository
0xinit/cryptoskills
LayerZero
LayerZero V2 is an immutable, censorship-resistant messaging protocol for cross-chain communication. It enables smart contracts on different blockchains to send arbitrary messages to each other through a modular security stack of Decentralized Verifier Networks (DVNs). The core primitive is the OApp (Omnichain Application) — a contract that inherits OApp.sol and implements _lzSend / _lzReceive to send and receive cross-chain messages through EndpointV2.
What You Probably Got Wrong
AI agents trained before mid-2024 confuse V1 and V2 architecture. These are the critical corrections.
- V2 is NOT V1 — completely different architecture. V1 used
LZApp,ILayerZeroEndpoint, and a monolithic oracle+relayer model. V2 usesOApp,EndpointV2, and modular DVNs+Executors. Do NOT import@layerzerolabs/solidity-examples— that is V1. Use@layerzerolabs/oapp-evmfor V2. - OFT burns on source, mints on destination — NOT a lock/mint bridge. The Omnichain Fungible Token standard burns tokens on the source chain and mints equivalent tokens on the destination. For existing ERC-20s that cannot add burn/mint, use
OFTAdapterwhich locks on source and mints an OFT representation on destination. - DVNs replace the V1 oracle+relayer model. V1 had a single Oracle and Relayer operated by LayerZero Labs. V2 decouples verification into configurable DVN sets — you choose which DVNs must verify your messages and set quorum thresholds.
_lzSendrequires proper fee estimation viaquoteSend()or_quote(). You must call the quote function first to determine the exactMessagingFee(native + lzToken), then pass that fee asmsg.value. Underpaying reverts.- Peer addresses must be set on BOTH chains. Calling
setPeer(dstEid, bytes32(peerAddress))on chain A is not enough. You must also callsetPeer(srcEid, bytes32(chainAAddress))on chain B. Unset peers causeNoPeerreverts. - Message ordering is NOT guaranteed unless you configure ordered delivery. V2 delivers messages in a nonce-based system, but by default the executor can deliver messages out of order. Use the
OrderedNonceenforcement option if strict ordering matters. eid(Endpoint ID) is NOT the chain ID. LayerZero uses its own Endpoint ID system. Ethereum mainnet is eid30101, Arbitrum is30110, Base is30184, Optimism is30111, Polygon is30109. Using chain IDs instead of eids is the most common integration mistake.- Peer addresses are
bytes32, notaddress. All peer addresses are stored asbytes32to support non-EVM chains. For EVM addresses, left-pad with zeros:bytes32(uint256(uint160(addr))). Passing a rawaddresstosetPeerwill fail. - The Executor is separate from DVNs. DVNs verify messages, but the Executor actually calls
lzReceiveon the destination. You can configure a custom Executor or use the LayerZero default. If you set gas limits too low in message options, the Executor will run out of gas on the destination.
Quick Start
Installation
npm install @layerzerolabs/oapp-evm @layerzerolabs/lz-evm-protocol-v2 @openzeppelin/contracts
For Foundry projects:
forge install LayerZero-Labs/LayerZero-v2
Minimal OApp Contract
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.22;
import {OApp, Origin, MessagingFee} from "@layerzerolabs/oapp-evm/contracts/oapp/OApp.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
contract MyOApp is OApp {
event MessageSent(uint32 dstEid, bytes payload, uint256 nativeFee);
event MessageReceived(uint32 srcEid, bytes32 sender, bytes payload);
constructor(
address _endpoint,
address _delegate
) OApp(_endpoint, _delegate) Ownable(_delegate) {}
/// @notice Sends a message to a destination chain
/// @param _dstEid Destination endpoint ID
/// @param _payload Arbitrary bytes payload
/// @param _options Message execution options (gas, value)
function sendMessage(
uint32 _dstEid,
bytes calldata _payload,
bytes calldata _options
) external payable {
MessagingFee memory fee = _quote(_dstEid, _payload, _options, false);
if (msg.value < fee.nativeFee) revert InsufficientFee(msg.value, fee.nativeFee);
_lzSend(_dstEid, _payload, _options, fee, payable(msg.sender));
emit MessageSent(_dstEid, _payload, fee.nativeFee);
}
/// @notice Quotes the fee for sending a message
/// @param _dstEid Destination endpoint ID
/// @param _payload Arbitrary bytes payload
/// @param _options Message execution options
/// @return fee The messaging fee breakdown
function quote(
uint32 _dstEid,
bytes calldata _payload,
bytes calldata _options
) external view returns (MessagingFee memory fee) {
return _quote(_dstEid, _payload, _options, false);
}
/// @dev Called by EndpointV2 when a message arrives from a source chain
function _lzReceive(
Origin calldata _origin,
bytes32 /*_guid*/,
bytes calldata _payload,
address /*_executor*/,
bytes calldata /*_extraData*/
) internal override {
emit MessageReceived(_origin.srcEid, _origin.sender, _payload);
}
error InsufficientFee(uint256 sent, uint256 required);
}
Client Setup (TypeScript)
import { createPublicClient, createWalletClient, http, parseAbi, type Address } from "viem";
import { privateKeyToAccount } from "viem/accounts";
import { mainnet } from "viem/chains";
const publicClient = createPublicClient({
chain: mainnet,
transport: http(process.env.RPC_URL),
});
const account = privateKeyToAccount(
process.env.PRIVATE_KEY as `0x${string}`
);
const walletClient = createWalletClient({
account,
chain: mainnet,
transport: http(process.env.RPC_URL),
});
Core Concepts
Architecture Overview
Source Chain Destination Chain
+-----------+ +-----------+
| Your | _lzSend() | Your |
| OApp | -----> EndpointV2 | OApp |
+-----------+ | +-----------+
| ^
v | lzReceive()
+------------+ +------------+
| MessageLib | | EndpointV2 |
+------------+ +------------+
| ^
v |
+------+------+ +-----+-----+
| DVN 1 | DVN 2| | Executor |
+------+------+ +-----------+
| ^
+---------------------+
(off-chain verification & relay)
OApp
The base contract for all cross-chain applications. Inherits from OAppSender and OAppReceiver. Manages peer addresses and delegates message send/receive through EndpointV2.
OFT (Omnichain Fungible Token)
An ERC-20 that natively supports cross-chain transfers. Burns on source, mints on destination. For existing tokens, OFTAdapter wraps them.
ONFT (Omnichain Non-Fungible Token)
ERC-721 that supports cross-chain transfers. Locks on source, mints on destination.
EndpointV2
The immutable on-chain entry point. One per chain. Handles message dispatching, DVN verification, and executor relay. Cannot be upgraded.
DVN (Decentralized Verifier Network)
Off-chain verifiers that attest to cross-chain message validity. Each OApp configures which DVNs must verify its messages. Multiple DVNs can be required for higher security.
Executor
Calls lzReceive() on the destination contract. The default LayerZero Executor is used unless overridden. Executors are paid via the messaging fee.
MessageLib
Handles message serialization, DVN verification, and nonce tracking. V2 uses UltraLightNodeV2 (ULN302) as the default send/receive library.
OApp Development
Sending Messages
// _lzSend is inherited from OAppSender
function _lzSend(
uint32 _dstEid, // destination endpoint ID
bytes memory _message, // encoded payload
bytes memory _options, // execution options (gas, value)
MessagingFee memory _fee, // fee from _quote()
address payable _refundAddress
) internal returns (MessagingReceipt memory receipt);
The full send flow:
function sendPing(uint32 _dstEid) external payable {
bytes memory payload = abi.encode("ping", block.timestamp);
// Build options: 200k gas for lzReceive on destination
bytes memory options = OptionsBuilder.newOptions().addExecutorLzReceiveOption(200_000, 0);
MessagingFee memory fee = _quote(_dstEid, payload, options, false);
if (msg.value < fee.nativeFee) revert InsufficientFee(msg.value, fee.nativeFee);
_lzSend(_dstEid, payload, options, fee, payable(msg.sender));
}
Receiving Messages
// Override _lzReceive to handle incoming messages
function _lzReceive(
Origin calldata _origin, // srcEid, sender (bytes32), nonce
bytes32 _guid, // globally unique message ID
bytes calldata _payload, // the message bytes
address _executor, // executor that delivered this
bytes calldata _extraData // additional data from executor
) internal override {
(string memory message, uint256 timestamp) = abi.decode(_payload, (string, uint256));
// Process the message
}
Peer Configuration
Peers must be set bidirectionally. The peer address is bytes32-encoded.
// On Ethereum OApp — register Arbitrum peer
oapp.setPeer(
30110, // Arbitrum eid
bytes32(uint256(uint160(arbitrumOAppAddress)))
);
// On Arbitrum OApp — register Ethereum peer
oapp.setPeer(
30101, // Ethereum eid
bytes32(uint256(uint160(ethereumOAppAddress)))
);
From TypeScript:
const oappAbi = parseAbi([
"function setPeer(uint32 eid, bytes32 peer) external",
]);
function addressToBytes32(addr: Address): `0x${string}` {
return `0x${addr.slice(2).padStart(64, "0")}` as `0x${string}`;
}
const { request } = await publicClient.simulateContract({
address: ethereumOApp,
abi: oappAbi,
functionName: "setPeer",
args: [30110, addressToBytes32(arbitrumOApp)],
account: account.address,
});
const hash = await walletClient.writeContract(request);
const receipt = await publicClient.waitForTransactionReceipt({ hash });
if (receipt.status !== "success") throw new Error("setPeer reverted");
OFT (Omnichain Fungible Token)
Deploy a New OFT
For new tokens that do not already exist on any chain:
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.22;
import {OFT} from "@layerzerolabs/oft-evm/contracts/OFT.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
contract MyToken is OFT {
constructor(
string memory _name,
string memory _symbol,
address _lzEndpoint,
address _delegate
) OFT(_name, _symbol, _lzEndpoint, _delegate) Ownable(_delegate) {
// Mint initial supply to deployer
_mint(_delegate, 1_000_000 * 10 ** decimals());
}
}
OFTAdapter for Existing ERC-20s
If an ERC-20 already exists and cannot be modified, deploy OFTAdapter on the token's home chain. It locks the original token and coordinates minting on remote chains.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.22;
import {OFTAdapter} from "@layerzerolabs/oft-evm/contracts/OFTAdapter.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
contract MyTokenAdapter is OFTAdapter {
constructor(
address _token, // existing ERC-20 address
address _lzEndpoint,
address _delegate
) OFTAdapter(_token, _lzEndpoint, _delegate) Ownable(_delegate) {}
}
Sending OFT Cross-Chain
const oftAbi = parseAbi([
"function send((uint32 dstEid, bytes32 to, uint256 amountLD, uint256 minAmountLD, bytes extraOptions, bytes composeMsg, bytes oftCmd) calldata sendParam, (uint256 nativeFee, uint256 lzTokenFee) calldata fee, address refundAddress) payable returns ((bytes32 guid, uint64 nonce, (uint256 nativeFee, uint256 lzTokenFee) fee) receipt)",
"function quoteSend((uint32 dstEid, bytes32 to, uint256 amountLD, uint256 minAmountLD, bytes extraOptions, bytes composeMsg, bytes oftCmd) calldata sendParam, bool payInLzToken) view returns ((uint256 nativeFee, uint256 lzTokenFee) fee)",
]);
const DST_EID = 30110; // Arbitrum
const AMOUNT = 1000_000000000000000000n; // 1000 tokens (18 decimals)
const sendParam = {
dstEid: DST_EID,
to: addressToBytes32(account.address),
amountLD: AMOUNT,
minAmountLD: (AMOUNT * 995n) / 1000n, // 0.5% slippage
extraOptions: "0x" as `0x${string}`,
composeMsg: "0x" as `0x${string}`,
oftCmd: "0x" as `0x${string}`,
};
// Quote the fee
const fee = await publicClient.readContract({
address: oftAddress,
abi: oftAbi,
functionName: "quoteSend",
args: [sendParam, false],
});
// Execute the send
const { request } = await publicClient.simulateContract({
address: oftAddress,
abi: oftAbi,
functionName: "send",
args: [sendParam, fee, account.address],
value: fee.nativeFee,
account: account.address,
});
const hash = await walletClient.writeContract(request);
const receipt = await publicClient.waitForTransactionReceipt({ hash });
if (receipt.status !== "success") throw new Error("OFT send reverted");
OFT Shared Decimals
OFT uses a concept of "shared decimals" to normalize precision across chains. The default shared decimals is 6. Tokens with more than 6 decimals will have dust removed during transfers.
Local Decimals: 18 (standard ERC-20)
Shared Decimals: 6 (LayerZero default)
Dust removed: 12 decimal places
Sending 1.123456789012345678 tokens
Actually transferred: 1.123456000000000000 tokens
Dust lost: 0.000000789012345678 tokens
Override sharedDecimals() to change this behavior:
function sharedDecimals() public pure override returns (uint8) {
return 8; // higher precision cross-chain
}
DVN & Security Configuration
Setting Required and Optional DVNs
Each OApp configures its security stack through the EndpointV2's delegate (typically the OApp owner).
import {SetConfigParam} from "@layerzerolabs/lz-evm-protocol-v2/contracts/interfaces/IMessageLibManager.sol";
struct UlnConfig {
uint64 confirmations; // block confirmations before DVN can verify
uint8 requiredDVNCount; // DVNs that MUST verify (all required)
uint8 optionalDVNCount; // DVNs from optional pool
uint8 optionalDVNThreshold; // how many optional DVNs must verify
address[] requiredDVNs; // addresses of required DVNs
address[] optionalDVNs; // addresses of optional DVNs
}
Example configuration — require LayerZero Labs DVN and one of two optional DVNs:
UlnConfig memory ulnConfig = UlnConfig({
confirmations: 15, // 15 block confirmations
requiredDVNCount: 1,
optionalDVNCount: 2,
optionalDVNThreshold: 1, // 1 of 2 optional must verify
requiredDVNs: [LZ_DVN_ADDRESS],
optionalDVNs: [GOOGLE_DVN_ADDRESS, POLYHEDRA_DVN_ADDRESS]
});
Configuring via EndpointV2
const endpointAbi = parseAbi([
"function setConfig(address oapp, address lib, (uint32 eid, uint32 configType, bytes config)[] calldata params) external",
]);
// ULN config type for send library
const CONFIG_TYPE_ULN = 2;
// Encode the ULN config
// confirmations(uint64) + requiredDVNCount(uint8) + optionalDVNCount(uint8)
// + optionalDVNThreshold(uint8) + requiredDVNs(address[]) + optionalDVNs(address[])
import { encodeAbiParameters, parseAbiParameters } from "viem";
const ulnConfigEncoded = encodeAbiParameters(
parseAbiParameters("uint64, uint8, uint8, uint8, address[], address[]"),
[
15n, // confirmations
1, // requiredDVNCount
2, // optionalDVNCount
1, // optionalDVNThreshold
[LZ_DVN], // requiredDVNs
[GOOGLE_DVN, POLYHEDRA_DVN], // optionalDVNs
]
);
Security Best Practices
- Always set at least one required DVN. The default config uses the LayerZero Labs DVN. For production, add at least one additional DVN (Google Cloud, Polyhedra, etc.).
- Set block confirmations appropriate to the chain. Ethereum: 15+, L2s (Arbitrum, Base, Optimism): 5+. Higher confirmations reduce reorg risk.
- Configure BOTH send and receive libraries. Security config applies per-direction. A message sent from Ethereum to Arbitrum uses Ethereum's send config AND Arbitrum's receive config. Configure both.
Message Options
Building Options with OptionsBuilder
import {OptionsBuilder} from "@layerzerolabs/oapp-evm/contracts/oapp/libs/OptionsBuilder.sol";
using OptionsBuilder for bytes;
// Gas limit for lzReceive execution on destination
bytes memory options = OptionsBuilder.newOptions()
.addExecutorLzReceiveOption(200_000, 0);
// Gas limit + native airdrop to recipient on destination
bytes memory optionsWithDrop = OptionsBuilder.newOptions()
.addExecutorLzReceiveOption(200_000, 0)
.addExecutorNativeDropOption(1 ether, receiverAddress);
// Composed message — triggers lzCompose after lzReceive
bytes memory composedOptions = OptionsBuilder.newOptions()
.addExecutorLzReceiveOption(200_000, 0)
.addExecutorLzComposeOption(0, 100_000, 0); // index, gas, value
// Ordered delivery — enforce nonce ordering
bytes memory orderedOptions = OptionsBuilder.newOptions()
.addExecutorLzReceiveOption(200_000, 0)
.addExecutorOrderedExecutionOption();
Options Encoding in TypeScript
import { encodePacked } from "viem";
// Option type constants
const EXECUTOR_WORKER_ID = 1;
const OPTION_TYPE_LZRECEIVE = 1;
const OPTION_TYPE_NATIVE_DROP = 2;
// Encode lzReceive option: 200k gas, 0 value
// Format: workerID(uint8) + optionLength(uint16) + optionType(uint8) + gas(uint128) + value(uint128)
function buildLzReceiveOption(gasLimit: bigint, value: bigint = 0n): `0x${string}` {
// Options V2 encoding
const TYPE_3 = "0x0003" as `0x${string}`;
const workerIdAndOption = encodePacked(
["uint8", "uint16", "uint8", "uint128", "uint128"],
[EXECUTOR_WORKER_ID, 34, OPTION_TYPE_LZRECEIVE, gasLimit, value]
);
return `${TYPE_3}${workerIdAndOption.slice(2)}` as `0x${string}`;
}
const options = buildLzReceiveOption(200_000n);
Composed Messages
Composed messages allow an OApp to trigger follow-up logic after the initial lzReceive. The destination contract receives the message in lzReceive, then the Executor calls lzCompose separately.
// In your OApp
function _lzReceive(
Origin calldata _origin,
bytes32 _guid,
bytes calldata _payload,
address _executor,
bytes calldata _extraData
) internal override {
// Decode and store state from the message
// Queue a composed message for follow-up execution
endpoint.sendCompose(
address(this), // composeTo — typically self
_guid,
0, // compose index
_payload // data for lzCompose
);
}
// Called by the Executor after lzReceive completes
function lzCompose(
address _from,
bytes32 _guid,
bytes calldata _message,
address _executor,
bytes calldata _extraData
) external payable {
require(msg.sender == address(endpoint), "Only endpoint");
// Execute follow-up logic (swap, stake, etc.)
}
Deployment Pattern
Multi-Chain Deploy Sequence
- Deploy OApp on each chain (with that chain's EndpointV2 address)
- Set peers bidirectionally between every chain pair
- Configure DVNs for each pathway
- Verify with a test message
const ENDPOINT_V2: Record<number, Address> = {
30101: "0x1a44076050125825900e736c501f859c50fE728c", // Ethereum
30110: "0x1a44076050125825900e736c501f859c50fE728c", // Arbitrum
30184: "0x1a44076050125825900e736c501f859c50fE728c", // Base
30111: "0x1a44076050125825900e736c501f859c50fE728c", // Optimism
30109: "0x1a44076050125825900e736c501f859c50fE728c", // Polygon
};
// After deploying OApp on each chain, set peers pairwise
async function setPeers(
deployments: Map<number, Address>,
walletClients: Map<number, typeof walletClient>,
publicClients: Map<number, typeof publicClient>,
) {
const eids = [...deployments.keys()];
for (const srcEid of eids) {
for (const dstEid of eids) {
if (srcEid === dstEid) continue;
const oapp = deployments.get(srcEid)!;
const peer = deployments.get(dstEid)!;
const client = walletClients.get(srcEid)!;
const pub = publicClients.get(srcEid)!;
const { request } = await pub.simulateContract({
address: oapp,
abi: oappAbi,
functionName: "setPeer",
args: [dstEid, addressToBytes32(peer)],
account: account.address,
});
const hash = await client.writeContract(request);
const receipt = await pub.waitForTransactionReceipt({ hash });
if (receipt.status !== "success") {
throw new Error(`setPeer failed: ${srcEid} -> ${dstEid}`);
}
}
}
}
Hardhat Deploy Script
import { ethers } from "hardhat";
async function main() {
const [deployer] = await ethers.getSigners();
const endpointV2 = "0x1a44076050125825900e736c501f859c50fE728c";
const MyOApp = await ethers.getContractFactory("MyOApp");
const oapp = await MyOApp.deploy(endpointV2, deployer.address);
await oapp.waitForDeployment();
const address = await oapp.getAddress();
console.log(`MyOApp deployed at: ${address}`);
// Verify on explorer
await run("verify:verify", {
address,
constructorArguments: [endpointV2, deployer.address],
});
}
main().catch(console.error);
Foundry Deploy Script
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.22;
import {Script, console} from "forge-std/Script.sol";
import {MyOApp} from "../src/MyOApp.sol";
contract DeployOApp is Script {
function run() external {
uint256 deployerKey = vm.envUint("PRIVATE_KEY");
address endpoint = 0x1a44076050125825900e736c501f859c50fE728c;
address delegate = vm.addr(deployerKey);
vm.startBroadcast(deployerKey);
MyOApp oapp = new MyOApp(endpoint, delegate);
console.log("MyOApp deployed:", address(oapp));
vm.stopBroadcast();
}
}
Fee Estimation
Quoting Send Fees
Always quote before sending. The fee depends on payload size, message options (gas, native drop), DVN configuration, and destination chain gas prices.
const oappAbi = parseAbi([
"function quote(uint32 dstEid, bytes calldata payload, bytes calldata options) view returns ((uint256 nativeFee, uint256 lzTokenFee) fee)",
]);
const fee = await publicClient.readContract({
address: oappAddress,
abi: oappAbi,
functionName: "quote",
args: [30110, payload, options],
});
// fee.nativeFee — amount of ETH/native token to send as msg.value
// fee.lzTokenFee — if paying with ZRO token (usually 0)
Fee Breakdown
| Component | Determines |
|---|---|
| DVN fees | Cost of DVN verification (based on DVN count and destination) |
| Executor fee | Gas cost of calling lzReceive on destination + native drop |
| Treasury fee | Protocol fee paid to LayerZero treasury |
Paying with LZ Token (ZRO)
// To pay with ZRO instead of native:
// 1. Approve ZRO token to EndpointV2
// 2. Pass payInLzToken = true in quote
// 3. lzTokenFee will be non-zero, nativeFee reduced
MessagingFee memory fee = _quote(_dstEid, _payload, _options, true);
// fee.lzTokenFee > 0, fee.nativeFee may be lower
Error Handling
Common Reverts
| Error | Cause | Fix |
|---|---|---|
NoPeer | Peer not set for destination eid | Call setPeer(dstEid, peerBytes32) on source |
OnlyPeer | Message from unregistered sender | Set peer on the receiving chain |
InvalidEndpointCall | Direct call instead of via endpoint | Only EndpointV2 can call lzReceive |
InsufficientFee | msg.value less than quoted fee | Call _quote() or quoteSend() first, pass exact fee |
LzTokenUnavailable | Trying to pay with ZRO when not enabled | Pass false for payInLzToken parameter |
InvalidOptions | Malformed options bytes | Use OptionsBuilder to construct options |
SlippageExceeded | OFT minAmountLD check failed | Increase minAmountLD tolerance or retry |
InvalidAmount | OFT amount below shared decimal minimum | Send larger amount; dust below shared decimals is removed |
Unauthorized | Caller is not the delegate/owner | Check OApp ownership and delegate settings |
InvalidEid | Endpoint ID does not exist | Use correct eid from LayerZero docs (NOT chain ID) |
Debugging Cross-Chain Failures
-
Check source chain transaction. If it reverted, the message was never sent. Fix the source-side issue (fee, peer, options).
-
Use LayerZero Scan. Go to
layerzeroscan.comand enter the source tx hash. It shows message status: Sent, Verifying, Verified, Delivered, or Failed. -
Check DVN verification status. If stuck at "Verifying", DVNs have not confirmed yet. Wait for block confirmations, or check if your DVN config is valid.
-
Check executor delivery. If verified but not delivered, the Executor may have failed. Common cause: insufficient gas in options. Increase
lzReceiveOptiongas limit. -
Retry failed messages. If
lzReceivereverted on destination, the message is stored and can be retried:
const endpointAbi = parseAbi([
"function retryPayload(uint32 srcEid, bytes32 sender, uint64 nonce, bytes calldata payload) external payable",
]);
- Common debugging commands:
# Check if peer is set
cast call <oapp_address> "peers(uint32)(bytes32)" 30110 --rpc-url $RPC_URL
# Check endpoint delegate
cast call <oapp_address> "endpoint()(address)" --rpc-url $RPC_URL
# Verify contract has code
cast code <oapp_address> --rpc-url $RPC_URL
Contract Addresses
Last verified: February 2026
EndpointV2
| Chain | eid | EndpointV2 |
|---|---|---|
| Ethereum | 30101 | 0x1a44076050125825900e736c501f859c50fE728c |
| Arbitrum | 30110 | 0x1a44076050125825900e736c501f859c50fE728c |
| Optimism | 30111 | 0x1a44076050125825900e736c501f859c50fE728c |
| Polygon | 30109 | 0x1a44076050125825900e736c501f859c50fE728c |
| Base | 30184 | 0x1a44076050125825900e736c501f859c50fE728c |
Send/Receive Libraries (ULN302)
| Chain | SendUln302 | ReceiveUln302 |
|---|---|---|
| Ethereum | 0xbB2Ea70C9E858123480642Cf96acbcCE1372dCe1 | 0xc02Ab410f0734EFa3F14628780e6e695156024C2 |
| Arbitrum | 0x975bcD720be66659e3EB3C0e4F1866a3020E493A | 0x7B9E184e07a6EE1aC23eAe0fe8D6Be60f4f19eF3 |
| Base | 0xB5320B0B3a13cC860893E2Bd79FCd7e13484Dda2 | 0xc70AB6f32772f59fBfc23889Caf4Ba3376C84bAf |
| Optimism | 0x1322871e4ab09Bc7f5717189434f97bBD9546e95 | 0x3c4962Ff6258dcfCafD23a814237571571899985 |
| Polygon | 0x6c26c61a97006888ea9E4FA36584c7df57Cd9dA3 | 0x1322871e4ab09Bc7f5717189434f97bBD9546e95 |
LayerZero Labs DVN
| Chain | Address |
|---|---|
| Ethereum | 0x589dEDbD617eE7783Ae3a7427E16b13280a2C00C |
| Arbitrum | 0x2f55C492897526677C5B68fb199ea31E2c126416 |
| Base | 0x9e059a54699a285714207b43B055483E78FAac25 |
| Optimism | 0x6A02D83e8d433304bba74EF1c427913958187142 |
| Polygon | 0x23DE2FE932d9043291f870F07B7D2Bbca42e46c6 |
Default Executor
| Chain | Address |
|---|---|
| Ethereum | 0x173272739Bd7Aa6e4e214714048a9fE699453059 |
| Arbitrum | 0x31CAe3B7fB82d847621859571BF619D4600e37c8 |
| Base | 0x2CCA08ae69E0C44b18a57Ab36A1CCb013C54B1d3 |
| Optimism | 0x2D2ea0697bdbede3F01553D2Ae4B8d0c486B666e |
| Polygon | 0xCd3F213AD101472e1713C72B1697E727C803885b |