Skip to content

Commit ea9870e

Browse files
Merge pull request #427 from anaye1997/feat/hyperlane-bridge-docs
fix: nextjs CVE-2025-66478
2 parents 76c4b44 + 6ee0245 commit ea9870e

5 files changed

Lines changed: 28923 additions & 12 deletions

File tree

website/content/docs/bridge/hyperlane.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ The **Hyperlane Bridge** enables seamless cross-chain transfers between the **Me
88

99
**Bridge URL:**
1010

11-
* Metis <-> LazAI: ➡️ https://nexus.hyperlane.xyz/?origin=metis&token=METIS&destination=lazai
12-
* LazAI <-> Metis ➡️ https://nexus.hyperlane.xyz/?origin=lazai&token=METIS&destination=metis
11+
* Metis &lt;-&gt; LazAI: ➡️ https://nexus.hyperlane.xyz/?origin=metis&token=METIS&destination=lazai
12+
* LazAI &lt;-&gt; Metis ➡️ https://nexus.hyperlane.xyz/?origin=lazai&token=METIS&destination=metis
1313

14-
![metis -> LazAI bridge](https://github.com/user-attachments/assets/528c509b-a1df-4123-a4ee-5239a4320be5)
14+
![metis -&gt; LazAI bridge](https://github.com/user-attachments/assets/528c509b-a1df-4123-a4ee-5239a4320be5)
1515

1616
connect wallet
1717
select Token (e.g `METIS`)
@@ -20,7 +20,7 @@ enter receipts address
2020

2121
## How It Works
2222

23-
The bridge uses Hyperlane's messaging and consensus protocols to transfer assets across chains. When a user initiates a transfer from Metis to Lazai, the Hyperlane network securely relays the transaction data through coordinated validators and Multichain Messaging (MultiISM), ensuring finality and correctness on the destination chain.
23+
The bridge uses Hyperlane's messaging and consensus protocols to transfer assets across chains. When a user initiates a transfer from Metis to Lazai (vice versa), the Hyperlane network securely relays the transaction data through coordinated validators and Multichain Messaging (MultiISM), ensuring finality and correctness on the destination chain.
2424

2525
## Technical Components
2626

Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"title": "Bridge",
3-
"icon": "Network",
3+
"icon": "Waypoints",
44
"pages": ["hyperlane"]
55
}

website/next.config.mjs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,18 @@ const withMDX = createMDX();
55
/** @type {import('next').NextConfig} */
66
const config = {
77
reactStrictMode: true,
8+
images: {
9+
remotePatterns: [
10+
{
11+
protocol: "https",
12+
hostname: "github.com",
13+
},
14+
{
15+
protocol: "https",
16+
hostname: "raw.githubusercontent.com",
17+
},
18+
],
19+
},
820
webpack: (config) => {
921
// Handle native binary modules
1022
config.module.rules.push({

0 commit comments

Comments
 (0)