From 3b9f393f78589e4c5a3b020bc65eca37e4d0e731 Mon Sep 17 00:00:00 2001 From: sergey-melnychuk <8093171+sergey-melnychuk@users.noreply.github.com> Date: Mon, 30 Sep 2024 18:39:49 +0200 Subject: [PATCH] fix(wasm): use rpc 0.7.1 url --- web/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app.js b/web/app.js index a848b3f4..73b9c052 100644 --- a/web/app.js +++ b/web/app.js @@ -160,7 +160,7 @@ document.addEventListener("DOMContentLoaded", () => { const config = JSON.stringify({ network: "mainnet", ethereum_url: `http://127.0.0.1:3000/eth-mainnet.g.alchemy.com/v2/${alchemyKey}`, - starknet_url: `http://127.0.0.1:3000/starknet-mainnet.g.alchemy.com/v2/${alchemyKey}` + starknet_url: `http://127.0.0.1:3000/starknet-mainnet.g.alchemy.com/starknet/version/rpc/v0_7/${alchemyKey}` }); worker.postMessage(config); statusSpan.innerText = statusIcons.pending;