@xyo-network/xl1-providers 1.26.48 → 1.26.49

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.
@@ -1509,10 +1509,12 @@ async function basicRemoteRunnerLocator(name, remoteConfig, signerTransport, dat
1509
1509
  ]);
1510
1510
  if (options?.signerFactory) {
1511
1511
  locator.register(options.signerFactory);
1512
- } else {
1512
+ } else if (isDefined2(signerTransport)) {
1513
1513
  locator.register(
1514
1514
  JsonRpcXyoSigner.factory(JsonRpcXyoSigner.dependencies, { transport: signerTransport })
1515
1515
  );
1516
+ } else {
1517
+ throw new Error("basicRemoteRunnerLocator requires either signerTransport or options.signerFactory");
1516
1518
  }
1517
1519
  if (isDefined2(dataLakeEndpoint)) {
1518
1520
  const dataLakeViewerParams = { endpoint: dataLakeEndpoint };