@polkadot/rpc-augment 10.9.1 → 10.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.
- package/augment/jsonrpc.d.ts +3 -3
- package/cjs/packageInfo.js +1 -1
- package/package.json +7 -7
- package/packageInfo.js +1 -1
package/augment/jsonrpc.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ import type { Bytes, HashMap, Json, Null, Option, Text, U256, U64, Vec, bool, f6
|
|
|
5
5
|
import type { AnyNumber, Codec } from '@polkadot/types-codec/types';
|
|
6
6
|
import type { ExtrinsicOrHash, ExtrinsicStatus } from '@polkadot/types/interfaces/author';
|
|
7
7
|
import type { EpochAuthorship } from '@polkadot/types/interfaces/babe';
|
|
8
|
-
import type {
|
|
8
|
+
import type { BeefyVersionedFinalityProof } from '@polkadot/types/interfaces/beefy';
|
|
9
9
|
import type { BlockHash } from '@polkadot/types/interfaces/chain';
|
|
10
10
|
import type { PrefixedStorageKey } from '@polkadot/types/interfaces/childstate';
|
|
11
11
|
import type { AuthorityId } from '@polkadot/types/interfaces/consensus';
|
|
@@ -76,9 +76,9 @@ declare module '@polkadot/rpc-core/types/jsonrpc' {
|
|
|
76
76
|
**/
|
|
77
77
|
getFinalizedHead: AugmentedRpc<() => Observable<H256>>;
|
|
78
78
|
/**
|
|
79
|
-
* Returns the block most recently finalized by BEEFY, alongside
|
|
79
|
+
* Returns the block most recently finalized by BEEFY, alongside its justification.
|
|
80
80
|
**/
|
|
81
|
-
subscribeJustifications: AugmentedRpc<() => Observable<
|
|
81
|
+
subscribeJustifications: AugmentedRpc<() => Observable<BeefyVersionedFinalityProof>>;
|
|
82
82
|
};
|
|
83
83
|
chain: {
|
|
84
84
|
/**
|
package/cjs/packageInfo.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.packageInfo = void 0;
|
|
4
|
-
exports.packageInfo = { name: '@polkadot/rpc-augment', path: typeof __dirname === 'string' ? __dirname : 'auto', type: 'cjs', version: '10.
|
|
4
|
+
exports.packageInfo = { name: '@polkadot/rpc-augment', path: typeof __dirname === 'string' ? __dirname : 'auto', type: 'cjs', version: '10.11.1' };
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"bugs": "https://github.com/polkadot-js/api/issues",
|
|
4
4
|
"description": "RPC generated augmentation",
|
|
5
5
|
"engines": {
|
|
6
|
-
"node": ">=
|
|
6
|
+
"node": ">=18"
|
|
7
7
|
},
|
|
8
8
|
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/rpc-augment#readme",
|
|
9
9
|
"license": "Apache-2.0",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"./cjs/detectPackage.js"
|
|
19
19
|
],
|
|
20
20
|
"type": "module",
|
|
21
|
-
"version": "10.
|
|
21
|
+
"version": "10.11.1",
|
|
22
22
|
"main": "./cjs/index.js",
|
|
23
23
|
"module": "./index.js",
|
|
24
24
|
"types": "./index.d.ts",
|
|
@@ -79,10 +79,10 @@
|
|
|
79
79
|
}
|
|
80
80
|
},
|
|
81
81
|
"dependencies": {
|
|
82
|
-
"@polkadot/rpc-core": "10.
|
|
83
|
-
"@polkadot/types": "10.
|
|
84
|
-
"@polkadot/types-codec": "10.
|
|
85
|
-
"@polkadot/util": "^12.
|
|
86
|
-
"tslib": "^2.
|
|
82
|
+
"@polkadot/rpc-core": "10.11.1",
|
|
83
|
+
"@polkadot/types": "10.11.1",
|
|
84
|
+
"@polkadot/types-codec": "10.11.1",
|
|
85
|
+
"@polkadot/util": "^12.6.1",
|
|
86
|
+
"tslib": "^2.6.2"
|
|
87
87
|
}
|
|
88
88
|
}
|
package/packageInfo.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const packageInfo = { name: '@polkadot/rpc-augment', path: (import.meta && import.meta.url) ? new URL(import.meta.url).pathname.substring(0, new URL(import.meta.url).pathname.lastIndexOf('/') + 1) : 'auto', type: 'esm', version: '10.
|
|
1
|
+
export const packageInfo = { name: '@polkadot/rpc-augment', path: (import.meta && import.meta.url) ? new URL(import.meta.url).pathname.substring(0, new URL(import.meta.url).pathname.lastIndexOf('/') + 1) : 'auto', type: 'esm', version: '10.11.1' };
|