fixed network selection (hex string) and icons

This commit is contained in:
hueso
2025-10-11 21:31:53 -03:00
parent a906fa136d
commit 358ae7410f
5 changed files with 12 additions and 10 deletions

View File

@@ -14,9 +14,10 @@ const targetNetwork = ref(DEFAULT_NETWORK);
const web3Onboard = init({
wallets: [injected],
chains: Object.entries(Networks).map(([, network]) => ({
chains: Object.values(Networks).map((network) => ({
id: network.id,
label: network.nativeCurrency.symbol,
token: network.nativeCurrency.symbol,
label: network.name,
rpcUrl: network.rpcUrls.default.http[0],
})),
connect: {