@dedot/chaintypes 0.0.1-alpha.49 → 0.0.1-alpha.51
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.
- package/moonbeam/rpc.d.ts +44 -0
- package/package.json +2 -2
- package/rococo/consts.d.ts +21 -3
- package/rococo/errors.d.ts +25 -86
- package/rococo/events.d.ts +13 -13
- package/rococo/query.d.ts +101 -89
- package/rococo/runtime.d.ts +149 -57
- package/rococo/tx.d.ts +96 -33
- package/rococo/types.d.ts +289 -264
- package/rococoAssetHub/rpc.d.ts +13 -0
- package/westendAssetHub/rpc.d.ts +13 -0
package/rococoAssetHub/rpc.d.ts
CHANGED
|
@@ -741,6 +741,19 @@ export interface RpcCalls extends GenericRpcCalls {
|
|
|
741
741
|
**/
|
|
742
742
|
unstable_unwatch: GenericRpcCall;
|
|
743
743
|
|
|
744
|
+
[method: string]: GenericRpcCall;
|
|
745
|
+
};
|
|
746
|
+
transaction: {
|
|
747
|
+
/**
|
|
748
|
+
* @rpcname: transaction_unstable_broadcast
|
|
749
|
+
**/
|
|
750
|
+
unstable_broadcast: GenericRpcCall;
|
|
751
|
+
|
|
752
|
+
/**
|
|
753
|
+
* @rpcname: transaction_unstable_stop
|
|
754
|
+
**/
|
|
755
|
+
unstable_stop: GenericRpcCall;
|
|
756
|
+
|
|
744
757
|
[method: string]: GenericRpcCall;
|
|
745
758
|
};
|
|
746
759
|
}
|
package/westendAssetHub/rpc.d.ts
CHANGED
|
@@ -741,6 +741,19 @@ export interface RpcCalls extends GenericRpcCalls {
|
|
|
741
741
|
**/
|
|
742
742
|
unstable_unwatch: GenericRpcCall;
|
|
743
743
|
|
|
744
|
+
[method: string]: GenericRpcCall;
|
|
745
|
+
};
|
|
746
|
+
transaction: {
|
|
747
|
+
/**
|
|
748
|
+
* @rpcname: transaction_unstable_broadcast
|
|
749
|
+
**/
|
|
750
|
+
unstable_broadcast: GenericRpcCall;
|
|
751
|
+
|
|
752
|
+
/**
|
|
753
|
+
* @rpcname: transaction_unstable_stop
|
|
754
|
+
**/
|
|
755
|
+
unstable_stop: GenericRpcCall;
|
|
756
|
+
|
|
744
757
|
[method: string]: GenericRpcCall;
|
|
745
758
|
};
|
|
746
759
|
}
|