@polkadot/rpc-augment 9.13.4 → 9.13.6
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 +1 -1
- package/cjs/packageInfo.js +1 -1
- package/package.json +4 -4
- package/packageInfo.js +1 -1
package/augment/jsonrpc.d.ts
CHANGED
|
@@ -311,7 +311,7 @@ declare module '@polkadot/rpc-core/types/jsonrpc' {
|
|
|
311
311
|
/**
|
|
312
312
|
* Returns the number of transactions sent from given address at given time (block number).
|
|
313
313
|
**/
|
|
314
|
-
getTransactionCount: AugmentedRpc<(
|
|
314
|
+
getTransactionCount: AugmentedRpc<(address: H160 | string | Uint8Array, number?: BlockNumber | AnyNumber | Uint8Array) => Observable<U256>>;
|
|
315
315
|
/**
|
|
316
316
|
* Returns transaction receipt by transaction hash.
|
|
317
317
|
**/
|
package/cjs/packageInfo.js
CHANGED
package/package.json
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"./cjs/detectPackage.js"
|
|
21
21
|
],
|
|
22
22
|
"type": "module",
|
|
23
|
-
"version": "9.13.
|
|
23
|
+
"version": "9.13.6",
|
|
24
24
|
"main": "./cjs/index.js",
|
|
25
25
|
"module": "./index.js",
|
|
26
26
|
"types": "./index.d.ts",
|
|
@@ -71,9 +71,9 @@
|
|
|
71
71
|
},
|
|
72
72
|
"dependencies": {
|
|
73
73
|
"@babel/runtime": "^7.20.13",
|
|
74
|
-
"@polkadot/rpc-core": "9.13.
|
|
75
|
-
"@polkadot/types": "9.13.
|
|
76
|
-
"@polkadot/types-codec": "9.13.
|
|
74
|
+
"@polkadot/rpc-core": "9.13.6",
|
|
75
|
+
"@polkadot/types": "9.13.6",
|
|
76
|
+
"@polkadot/types-codec": "9.13.6",
|
|
77
77
|
"@polkadot/util": "^10.3.1"
|
|
78
78
|
}
|
|
79
79
|
}
|
package/packageInfo.js
CHANGED
|
@@ -7,5 +7,5 @@ export const packageInfo = {
|
|
|
7
7
|
name: '@polkadot/rpc-augment',
|
|
8
8
|
path: (import.meta && import.meta.url) ? new URL(import.meta.url).pathname.substring(0, new URL(import.meta.url).pathname.lastIndexOf('/') + 1) : 'auto',
|
|
9
9
|
type: 'esm',
|
|
10
|
-
version: '9.13.
|
|
10
|
+
version: '9.13.6'
|
|
11
11
|
};
|