File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed
Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,8 @@ import {
2727 worldchainSepolia as vwcs ,
2828 hyperliquid as vhyperliquid ,
2929 hyperliquidEvmTestnet as vhyperliquidEvmTestnet ,
30+ cronos as vCronos ,
31+ cronosTestnet as vCronosTesnet ,
3032} from "viem/chains" ;
3133
3234export type AlchemyChainConfig = {
@@ -910,3 +912,23 @@ export const hyperliquidEvmTestnet: Chain = {
910912 } ,
911913 } ,
912914} ;
915+
916+ export const cronos : Chain = {
917+ ...vCronos ,
918+ rpcUrls : {
919+ ...vCronos . rpcUrls ,
920+ alchemy : {
921+ http : [ "https://cronos-mainnet.g.alchemy.com/v2" ] ,
922+ } ,
923+ } ,
924+ } ;
925+
926+ export const cronosTestnet : Chain = {
927+ ...vCronosTesnet ,
928+ rpcUrls : {
929+ ...vCronosTesnet . rpcUrls ,
930+ alchemy : {
931+ http : [ "https://cronos-testnet.g.alchemy.com/v2" ] ,
932+ } ,
933+ } ,
934+ } ;
Original file line number Diff line number Diff line change @@ -60,6 +60,8 @@ export {
6060 worldl3devnet ,
6161 hyperliquid ,
6262 hyperliquidEvmTestnet ,
63+ cronos ,
64+ cronosTestnet ,
6365} from "../chains.js" ;
6466export type * from "../client/decorators/smartAccount.js" ;
6567export { alchemyActions } from "../client/decorators/smartAccount.js" ;
You can’t perform that action at this time.
0 commit comments