From ed9fa61365e29d0fe2c084f4408888ac4e0aff0a Mon Sep 17 00:00:00 2001 From: hueso Date: Fri, 24 Oct 2025 20:33:06 -0300 Subject: [PATCH] fix: chainID as hex on web3onboard call --- 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],