From 5d70b166199d6bc6b3b6222bffef2a9c5345fe05 Mon Sep 17 00:00:00 2001 From: hueso Date: Sun, 12 Oct 2025 19:14:17 -0300 Subject: [PATCH] fix web3onboard calling wrong rpcUrl --- src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 7bbedfa..36c8b05 100644 --- a/src/App.vue +++ b/src/App.vue @@ -15,7 +15,7 @@ const targetNetwork = ref(DEFAULT_NETWORK); const web3Onboard = init({ wallets: [injected], chains: Object.values(Networks).map((network) => ({ - id: network.id, + id: `0x${network.id.toString(16)}`, token: network.nativeCurrency.symbol, label: network.name, rpcUrl: network.rpcUrls.default.http[0],