@xyo-network/xl1-rpc 1.19.2 → 1.19.4

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.
@@ -2533,22 +2533,28 @@ NodeXyoRunner = __decorateClass([
2533
2533
  ], NodeXyoRunner);
2534
2534
 
2535
2535
  // src/provider/signer/JsonRpcXyoSigner.ts
2536
+ import { XyoSignerMoniker as XyoSignerMoniker2 } from "@xyo-network/xl1-protocol-sdk";
2537
+
2538
+ // src/provider/signer/JsonRpcXyoSignerMethods.ts
2536
2539
  import { XyoSignerMoniker } from "@xyo-network/xl1-protocol-sdk";
2537
- var RpcXyoSigner = class _RpcXyoSigner {
2538
- static defaultMoniker = XyoSignerMoniker;
2539
- static dependencies = [];
2540
- static monikers = [XyoSignerMoniker];
2541
- moniker = _RpcXyoSigner.defaultMoniker;
2542
- transport;
2543
- constructor(transport) {
2544
- this.transport = transport;
2545
- }
2540
+ var JsonRpcXyoSignerMethods = class extends AbstractJsonRpcRunner {
2541
+ moniker = XyoSignerMoniker;
2546
2542
  async address() {
2547
2543
  return await this.transport.sendRequest("xyoSigner_address");
2548
2544
  }
2549
2545
  async signTransaction(tx) {
2550
2546
  return await this.transport.sendRequest("xyoSigner_signTransaction", [tx]);
2551
2547
  }
2548
+ schemas() {
2549
+ return XyoSignerRpcSchemas;
2550
+ }
2551
+ };
2552
+
2553
+ // src/provider/signer/JsonRpcXyoSigner.ts
2554
+ var JsonRpcXyoSigner = class extends JsonRpcXyoSignerMethods {
2555
+ static defaultMoniker = XyoSignerMoniker2;
2556
+ static dependencies = [];
2557
+ static monikers = [XyoSignerMoniker2];
2552
2558
  };
2553
2559
  export {
2554
2560
  AbstractJsonRpcRunner,
@@ -2580,6 +2586,8 @@ export {
2580
2586
  JsonRpcTimeSyncViewer,
2581
2587
  JsonRpcTimeSyncViewerMethods,
2582
2588
  JsonRpcXyoRunner,
2589
+ JsonRpcXyoSigner,
2590
+ JsonRpcXyoSignerMethods,
2583
2591
  JsonRpcXyoViewer,
2584
2592
  MemoryRpcTransport,
2585
2593
  MempoolRunnerRpcSchemas,
@@ -2599,7 +2607,6 @@ export {
2599
2607
  NoArgsZod,
2600
2608
  NodeXyoRunner,
2601
2609
  RpcXyoPermissions,
2602
- RpcXyoSigner,
2603
2610
  StakeTotalsViewerRpcSchemas,
2604
2611
  StakeViewerRpcSchemas,
2605
2612
  TimeSyncViewerRpcSchemas,