Skip to content

Commit

Permalink
config.ts: Add Soneium details
Browse files Browse the repository at this point in the history
  • Loading branch information
yashovardhan committed Oct 9, 2024
1 parent 485663e commit c70c417
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions packages/base/src/chain/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,18 @@ export const getEvmChainConfig = (chainId: number): CustomChainConfig | null =>
decimals: 18,
};
}
if (chainId === 1946) {
return {
chainNamespace: CHAIN_NAMESPACES.EIP155,
chainId: "0x79a",
rpcTarget: "https://rpc.minato.soneium.org",
displayName: "Soneium Minato Testnet",
blockExplorerUrl: "https://explorer-testnet.soneium.org",
ticker: "ETH",
tickerName: "ETH",
logo: "https://cryptologos.cc/logos/soneium-logo.png",
};
}

return null;
};
Expand Down

0 comments on commit c70c417

Please sign in to comment.