diff --git a/packages/common/src/chains/types.ts b/packages/common/src/chains/types.ts index 08d7d91b99..f8705b1e6a 100644 --- a/packages/common/src/chains/types.ts +++ b/packages/common/src/chains/types.ts @@ -8,11 +8,6 @@ export type RpcUrls = { }; export type MUDChain = Chain & { - iconUrls?: readonly string[]; - indexerUrl?: string; - /** @deprecated */ - faucetUrl?: string; - iconUrls?: readonly string[]; rpcUrls?: Chain["rpcUrls"] & { erc4337Bundler?: RpcUrls | undefined; }; @@ -22,4 +17,8 @@ export type MUDChain = Chain & { [sourceId: number]: ChainContract | undefined; }; }; + iconUrls?: readonly string[]; + indexerUrl?: string; + /** @deprecated */ + faucetUrl?: string; };