File tree Expand file tree Collapse file tree 12 files changed +75
-67
lines changed Expand file tree Collapse file tree 12 files changed +75
-67
lines changed Original file line number Diff line number Diff line change 3232 "@types/jest" : " ^26.0.16" ,
3333 "copyfiles" : " ^2.4.1"
3434 },
35- "version" : " 2.9.2-11 "
35+ "version" : " 2.9.2-12 "
3636}
Original file line number Diff line number Diff line change 11{
22 "name" : " @polkadot/api-contract" ,
3- "version" : " 2.9.2-11 " ,
3+ "version" : " 2.9.2-12 " ,
44 "description" : " Interfaces for interacting with contracts and contract ABIs" ,
55 "main" : " index.js" ,
66 "sideEffects" : false ,
1717 "homepage" : " https://github.com/polkadot-js/api/tree/master/packages/api-contract#readme" ,
1818 "dependencies" : {
1919 "@babel/runtime" : " ^7.12.5" ,
20- "@polkadot/api" : " 2.9.2-11 " ,
21- "@polkadot/types" : " 2.9.2-11 " ,
20+ "@polkadot/api" : " 2.9.2-12 " ,
21+ "@polkadot/types" : " 2.9.2-12 " ,
2222 "@polkadot/util" : " ^4.2.1" ,
2323 "bn.js" : " ^4.11.9" ,
2424 "rxjs" : " ^6.6.3"
Original file line number Diff line number Diff line change 11{
22 "name" : " @polkadot/api-derive" ,
3- "version" : " 2.9.2-11 " ,
3+ "version" : " 2.9.2-12 " ,
44 "description" : " Common functions used across Polkadot, derived from RPC calls and storage queries." ,
55 "main" : " index.js" ,
66 "sideEffects" : false ,
1818 "homepage" : " https://github.com/polkadot-js/api/tree/master/packages/api-derive#readme" ,
1919 "dependencies" : {
2020 "@babel/runtime" : " ^7.12.5" ,
21- "@polkadot/api" : " 2.9.2-11 " ,
22- "@polkadot/rpc-core" : " 2.9.2-11 " ,
23- "@polkadot/types" : " 2.9.2-11 " ,
21+ "@polkadot/api" : " 2.9.2-12 " ,
22+ "@polkadot/rpc-core" : " 2.9.2-12 " ,
23+ "@polkadot/types" : " 2.9.2-12 " ,
2424 "@polkadot/util" : " ^4.2.1" ,
2525 "@polkadot/util-crypto" : " ^4.2.1" ,
2626 "bn.js" : " ^4.11.9" ,
2929 },
3030 "devDependencies" : {
3131 "@polkadot/keyring" : " ^4.2.1" ,
32- "@polkadot/rpc-provider" : " 2.9.2-11 "
32+ "@polkadot/rpc-provider" : " 2.9.2-12 "
3333 }
3434}
Original file line number Diff line number Diff line change 11{
22 "name" : " @polkadot/api" ,
3- "version" : " 2.9.2-11 " ,
3+ "version" : " 2.9.2-12 " ,
44 "description" : " Promise and RxJS wrappers around the Polkadot JS RPC" ,
55 "main" : " index.js" ,
66 "sideEffects" : false ,
1717 "homepage" : " https://github.com/polkadot-js/api/tree/master/packages/api#readme" ,
1818 "dependencies" : {
1919 "@babel/runtime" : " ^7.12.5" ,
20- "@polkadot/api-derive" : " 2.9.2-11 " ,
20+ "@polkadot/api-derive" : " 2.9.2-12 " ,
2121 "@polkadot/keyring" : " ^4.2.1" ,
22- "@polkadot/metadata" : " 2.9.2-11 " ,
23- "@polkadot/rpc-core" : " 2.9.2-11 " ,
24- "@polkadot/rpc-provider" : " 2.9.2-11 " ,
25- "@polkadot/types" : " 2.9.2-11 " ,
26- "@polkadot/types-known" : " 2.9.2-11 " ,
22+ "@polkadot/metadata" : " 2.9.2-12 " ,
23+ "@polkadot/rpc-core" : " 2.9.2-12 " ,
24+ "@polkadot/rpc-provider" : " 2.9.2-12 " ,
25+ "@polkadot/types" : " 2.9.2-12 " ,
26+ "@polkadot/types-known" : " 2.9.2-12 " ,
2727 "@polkadot/util" : " ^4.2.1" ,
2828 "@polkadot/util-crypto" : " ^4.2.1" ,
2929 "bn.js" : " ^4.11.9" ,
Original file line number Diff line number Diff line change @@ -255,6 +255,10 @@ declare module '@polkadot/rpc-core/types.jsonrpc' {
255255 * Retrieves the next accountIndex as available on the node
256256 **/
257257 accountNextIndex : AugmentedRpc < ( accountId : AccountId | string | Uint8Array ) => Observable < Index > > ;
258+ /**
259+ * Adds the supplied directives to the current log filter
260+ **/
261+ addLogFilter : AugmentedRpc < ( directives : Text | string ) => Observable < Null > > ;
258262 /**
259263 * Adds a reserved peer
260264 **/
@@ -307,6 +311,10 @@ declare module '@polkadot/rpc-core/types.jsonrpc' {
307311 * Remove a reserved peer
308312 **/
309313 removeReservedPeer : AugmentedRpc < ( peerId : Text | string ) => Observable < Text > > ;
314+ /**
315+ * Resets the log filter to Substrate defaults
316+ **/
317+ resetLogFilter : AugmentedRpc < ( ) => Observable < Null > > ;
310318 /**
311319 * Returns the state of the syncing of the node
312320 **/
Original file line number Diff line number Diff line change 11{
22 "name" : " @polkadot/metadata" ,
3- "version" : " 2.9.2-11 " ,
3+ "version" : " 2.9.2-12 " ,
44 "description" : " Helpers to extract information from runtime metadata" ,
55 "main" : " index.js" ,
66 "sideEffects" : false ,
1616 "homepage" : " https://github.com/polkadot-js/api/tree/master/packages/type-metadata#readme" ,
1717 "dependencies" : {
1818 "@babel/runtime" : " ^7.12.5" ,
19- "@polkadot/types" : " 2.9.2-11 " ,
20- "@polkadot/types-known" : " 2.9.2-11 " ,
19+ "@polkadot/types" : " 2.9.2-12 " ,
20+ "@polkadot/types-known" : " 2.9.2-12 " ,
2121 "@polkadot/util" : " ^4.2.1" ,
2222 "@polkadot/util-crypto" : " ^4.2.1" ,
2323 "bn.js" : " ^4.11.9"
Original file line number Diff line number Diff line change 11{
22 "name" : " @polkadot/rpc-core" ,
3- "version" : " 2.9.2-11 " ,
3+ "version" : " 2.9.2-12 " ,
44 "description" : " A JavaScript wrapper for the Polkadot JsonRPC interface" ,
55 "main" : " index.js" ,
66 "sideEffects" : false ,
1717 "homepage" : " https://github.com/polkadot-js/api/tree/master/packages/rpc-core#readme" ,
1818 "dependencies" : {
1919 "@babel/runtime" : " ^7.12.5" ,
20- "@polkadot/metadata" : " 2.9.2-11 " ,
21- "@polkadot/rpc-provider" : " 2.9.2-11 " ,
22- "@polkadot/types" : " 2.9.2-11 " ,
20+ "@polkadot/metadata" : " 2.9.2-12 " ,
21+ "@polkadot/rpc-provider" : " 2.9.2-12 " ,
22+ "@polkadot/types" : " 2.9.2-12 " ,
2323 "@polkadot/util" : " ^4.2.1" ,
2424 "memoizee" : " ^0.4.14" ,
2525 "rxjs" : " ^6.6.3"
Original file line number Diff line number Diff line change 11{
22 "name" : " @polkadot/rpc-provider" ,
3- "version" : " 2.9.2-11 " ,
3+ "version" : " 2.9.2-12 " ,
44 "description" : " Transport providers for the API" ,
55 "main" : " index.js" ,
66 "sideEffects" : false ,
1717 "homepage" : " https://github.com/polkadot-js/api/tree/master/packages/rpc-provider#readme" ,
1818 "dependencies" : {
1919 "@babel/runtime" : " ^7.12.5" ,
20- "@polkadot/types" : " 2.9.2-11 " ,
20+ "@polkadot/types" : " 2.9.2-12 " ,
2121 "@polkadot/util" : " ^4.2.1" ,
2222 "@polkadot/util-crypto" : " ^4.2.1" ,
2323 "@polkadot/x-fetch" : " ^4.2.1" ,
2727 },
2828 "devDependencies" : {
2929 "@polkadot/keyring" : " ^4.2.1" ,
30- "@polkadot/metadata" : " 2.9.2-11 " ,
30+ "@polkadot/metadata" : " 2.9.2-12 " ,
3131 "mock-socket" : " ^9.0.3" ,
3232 "nock" : " ^13.0.5"
3333 }
Original file line number Diff line number Diff line change 11{
22 "name" : " @polkadot/typegen" ,
3- "version" : " 2.9.2-11 " ,
3+ "version" : " 2.9.2-12 " ,
44 "description" : " Type generation scripts" ,
55 "main" : " index.js" ,
66 "sideEffects" : false ,
2626 "@babel/core" : " ^7.12.9" ,
2727 "@babel/register" : " ^7.12.1" ,
2828 "@babel/runtime" : " ^7.12.5" ,
29- "@polkadot/api" : " 2.9.2-11 " ,
30- "@polkadot/metadata" : " 2.9.2-11 " ,
31- "@polkadot/rpc-provider" : " 2.9.2-11 " ,
32- "@polkadot/types" : " 2.9.2-11 " ,
29+ "@polkadot/api" : " 2.9.2-12 " ,
30+ "@polkadot/metadata" : " 2.9.2-12 " ,
31+ "@polkadot/rpc-provider" : " 2.9.2-12 " ,
32+ "@polkadot/types" : " 2.9.2-12 " ,
3333 "@polkadot/util" : " ^4.2.1" ,
3434 "handlebars" : " ^4.7.6" ,
3535 "websocket" : " ^1.0.32" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " @polkadot/types-known" ,
3- "version" : " 2.9.2-11 " ,
3+ "version" : " 2.9.2-12 " ,
44 "description" : " A JavaScript wrapper for the Polkadot JsonRPC interface" ,
55 "main" : " index.js" ,
66 "sideEffects" : false ,
1717 "homepage" : " https://github.com/polkadot-js/api/tree/master/packages/types-known#readme" ,
1818 "dependencies" : {
1919 "@babel/runtime" : " ^7.12.5" ,
20- "@polkadot/types" : " 2.9.2-11 " ,
20+ "@polkadot/types" : " 2.9.2-12 " ,
2121 "@polkadot/util" : " ^4.2.1" ,
2222 "bn.js" : " ^4.11.9"
2323 },
You can’t perform that action at this time.
0 commit comments