@polkadot/rpc-augment 8.10.1 → 8.11.1

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.
@@ -56,11 +56,11 @@ declare module '@polkadot/rpc-core/types/jsonrpc' {
56
56
  /**
57
57
  * Submit and subscribe to watch an extrinsic until unsubscribed
58
58
  **/
59
- submitAndWatchExtrinsic: AugmentedRpc<(extrinsic: IExtrinsic) => Observable<ExtrinsicStatus>>;
59
+ submitAndWatchExtrinsic: AugmentedRpc<(extrinsic: Extrinsic | IExtrinsic | string | Uint8Array) => Observable<ExtrinsicStatus>>;
60
60
  /**
61
61
  * Submit a fully formatted extrinsic for block inclusion
62
62
  **/
63
- submitExtrinsic: AugmentedRpc<(extrinsic: IExtrinsic) => Observable<Hash>>;
63
+ submitExtrinsic: AugmentedRpc<(extrinsic: Extrinsic | IExtrinsic | string | Uint8Array) => Observable<Hash>>;
64
64
  };
65
65
  babe: {
66
66
  /**
@@ -11,6 +11,6 @@ const packageInfo = {
11
11
  name: '@polkadot/rpc-augment',
12
12
  path: typeof __dirname === 'string' ? __dirname : 'auto',
13
13
  type: 'cjs',
14
- version: '8.10.1'
14
+ version: '8.11.1'
15
15
  };
16
16
  exports.packageInfo = packageInfo;
package/package.json CHANGED
@@ -20,7 +20,7 @@
20
20
  "./cjs/detectPackage.js"
21
21
  ],
22
22
  "type": "module",
23
- "version": "8.10.1",
23
+ "version": "8.11.1",
24
24
  "main": "./cjs/index.js",
25
25
  "module": "./index.js",
26
26
  "types": "./index.d.ts",
@@ -72,10 +72,10 @@
72
72
  }
73
73
  },
74
74
  "dependencies": {
75
- "@babel/runtime": "^7.18.3",
76
- "@polkadot/rpc-core": "8.10.1",
77
- "@polkadot/types": "8.10.1",
78
- "@polkadot/types-codec": "8.10.1",
79
- "@polkadot/util": "^9.6.2"
75
+ "@babel/runtime": "^7.18.6",
76
+ "@polkadot/rpc-core": "8.11.1",
77
+ "@polkadot/types": "8.11.1",
78
+ "@polkadot/types-codec": "8.11.1",
79
+ "@polkadot/util": "^9.7.1"
80
80
  }
81
81
  }
package/packageInfo.js CHANGED
@@ -5,5 +5,5 @@ export const packageInfo = {
5
5
  name: '@polkadot/rpc-augment',
6
6
  path: (import.meta && import.meta.url) ? new URL(import.meta.url).pathname.substring(0, new URL(import.meta.url).pathname.lastIndexOf('/') + 1) : 'auto',
7
7
  type: 'esm',
8
- version: '8.10.1'
8
+ version: '8.11.1'
9
9
  };