@latticexyz/entrykit 2.2.24-7fc3f6370bc1c1107de1471098f0ba3225fb62d8 → 2.2.24-c51b045b2fcc364fa55495dd758071c24f01f94b
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -229,11 +229,14 @@ function userOpExecutor({
|
|
|
229
229
|
}
|
|
230
230
|
|
|
231
231
|
// src/getBundlerTransport.ts
|
|
232
|
-
import { wiresaw } from "@latticexyz/common/internal";
|
|
232
|
+
import { wiresaw, alto } from "@latticexyz/common/internal";
|
|
233
233
|
function getBundlerTransport(chain) {
|
|
234
234
|
if ("wiresaw" in chain.rpcUrls) {
|
|
235
235
|
return wiresaw();
|
|
236
236
|
}
|
|
237
|
+
if ("alto" in chain.rpcUrls) {
|
|
238
|
+
return alto();
|
|
239
|
+
}
|
|
237
240
|
const bundlerHttpUrl = chain.rpcUrls.bundler?.http[0];
|
|
238
241
|
if (bundlerHttpUrl) {
|
|
239
242
|
return http(bundlerHttpUrl);
|