Skip to content

Commit 5363692

Browse files
committed
[CI Skip] 1.11.0-beta.35
skip-checks: true
1 parent 33165e9 commit 5363692

File tree

14 files changed

+85
-72
lines changed

14 files changed

+85
-72
lines changed

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
"packages": [
1010
"packages/*"
1111
],
12-
"version": "1.11.0-beta.34"
12+
"version": "1.11.0-beta.35"
1313
}

packages/api-contract/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/api-contract",
3-
"version": "1.11.0-beta.34",
3+
"version": "1.11.0-beta.35",
44
"description": "Interfaces for interacting with contracts and contract ABIs",
55
"main": "index.js",
66
"keywords": [
@@ -27,9 +27,9 @@
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/api-contract#readme",
2828
"dependencies": {
2929
"@babel/runtime": "^7.9.2",
30-
"@polkadot/api": "1.11.0-beta.34",
31-
"@polkadot/rpc-core": "1.11.0-beta.34",
32-
"@polkadot/types": "1.11.0-beta.34",
30+
"@polkadot/api": "1.11.0-beta.35",
31+
"@polkadot/rpc-core": "1.11.0-beta.35",
32+
"@polkadot/types": "1.11.0-beta.35",
3333
"@polkadot/util": "^2.8.1",
3434
"bn.js": "^5.1.1",
3535
"rxjs": "^6.5.5"

packages/api-derive/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/api-derive",
3-
"version": "1.11.0-beta.34",
3+
"version": "1.11.0-beta.35",
44
"description": "Common functions used across Polkadot, derived from RPC calls and storage queries.",
55
"main": "index.js",
66
"keywords": [
@@ -28,10 +28,10 @@
2828
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/api-derive#readme",
2929
"dependencies": {
3030
"@babel/runtime": "^7.9.2",
31-
"@polkadot/api": "1.11.0-beta.34",
32-
"@polkadot/rpc-core": "1.11.0-beta.34",
33-
"@polkadot/rpc-provider": "1.11.0-beta.34",
34-
"@polkadot/types": "1.11.0-beta.34",
31+
"@polkadot/api": "1.11.0-beta.35",
32+
"@polkadot/rpc-core": "1.11.0-beta.35",
33+
"@polkadot/rpc-provider": "1.11.0-beta.35",
34+
"@polkadot/types": "1.11.0-beta.35",
3535
"@polkadot/util": "^2.8.1",
3636
"@polkadot/util-crypto": "^2.8.1",
3737
"bn.js": "^5.1.1",

packages/api/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/api",
3-
"version": "1.11.0-beta.34",
3+
"version": "1.11.0-beta.35",
44
"description": "Promise and RxJS wrappers around the Polkadot JS RPC",
55
"main": "index.js",
66
"keywords": [
@@ -27,13 +27,13 @@
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/api#readme",
2828
"dependencies": {
2929
"@babel/runtime": "^7.9.2",
30-
"@polkadot/api-derive": "1.11.0-beta.34",
30+
"@polkadot/api-derive": "1.11.0-beta.35",
3131
"@polkadot/keyring": "^2.8.1",
32-
"@polkadot/metadata": "1.11.0-beta.34",
33-
"@polkadot/rpc-core": "1.11.0-beta.34",
34-
"@polkadot/rpc-provider": "1.11.0-beta.34",
35-
"@polkadot/types": "1.11.0-beta.34",
36-
"@polkadot/types-known": "1.11.0-beta.34",
32+
"@polkadot/metadata": "1.11.0-beta.35",
33+
"@polkadot/rpc-core": "1.11.0-beta.35",
34+
"@polkadot/rpc-provider": "1.11.0-beta.35",
35+
"@polkadot/types": "1.11.0-beta.35",
36+
"@polkadot/types-known": "1.11.0-beta.35",
3737
"@polkadot/util": "^2.8.1",
3838
"@polkadot/util-crypto": "^2.8.1",
3939
"bn.js": "^5.1.1",

packages/api/src/augment/rpc.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { StorageKind } from '@polkadot/types/interfaces/offchain';
1717
import { RuntimeDispatchInfo } from '@polkadot/types/interfaces/payment';
1818
import { RpcMethods } from '@polkadot/types/interfaces/rpc';
1919
import { AccountId, BlockNumber, H256, Hash, Header, Index, Justification, KeyValue, SignedBlock, StorageData } from '@polkadot/types/interfaces/runtime';
20-
import { RuntimeVersion } from '@polkadot/types/interfaces/state';
20+
import { ReadProof, RuntimeVersion } from '@polkadot/types/interfaces/state';
2121
import { ChainProperties, ChainType, Health, NetworkState, NodeRole, PeerInfo } from '@polkadot/types/interfaces/system';
2222

2323
declare module '@polkadot/rpc-core/types.jsonrpc' {
@@ -199,6 +199,10 @@ declare module '@polkadot/rpc-core/types.jsonrpc' {
199199
* Returns the keys with prefix, leave empty to get all the keys (deprecated: Use getKeysPaged)
200200
**/
201201
getPairs: AugmentedRpc<(prefix: StorageKey | string | Uint8Array | any, at?: BlockHash | string | Uint8Array) => Observable<Vec<KeyValue>>>;
202+
/**
203+
* Returns proof of storage entries at a specific block state
204+
**/
205+
getReadProof: AugmentedRpc<(keys: Vec<StorageKey> | (StorageKey | string | Uint8Array | any)[], at?: BlockHash | string | Uint8Array) => Observable<ReadProof>>;
202206
/**
203207
* Get the runtime version
204208
**/

packages/metadata/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/metadata",
3-
"version": "1.11.0-beta.34",
3+
"version": "1.11.0-beta.35",
44
"description": "Helpers to extract information from runtime metadata",
55
"main": "index.js",
66
"publishConfig": {
@@ -27,8 +27,8 @@
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/type-metadata#readme",
2828
"dependencies": {
2929
"@babel/runtime": "^7.9.2",
30-
"@polkadot/types": "1.11.0-beta.34",
31-
"@polkadot/types-known": "1.11.0-beta.34",
30+
"@polkadot/types": "1.11.0-beta.35",
31+
"@polkadot/types-known": "1.11.0-beta.35",
3232
"@polkadot/util": "^2.8.1",
3333
"@polkadot/util-crypto": "^2.8.1",
3434
"bn.js": "^5.1.1"

packages/rpc-core/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/rpc-core",
3-
"version": "1.11.0-beta.34",
3+
"version": "1.11.0-beta.35",
44
"description": "A JavaScript wrapper for the Polkadot JsonRPC interface",
55
"main": "index.js",
66
"keywords": [
@@ -27,9 +27,9 @@
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/rpc-core#readme",
2828
"dependencies": {
2929
"@babel/runtime": "^7.9.2",
30-
"@polkadot/metadata": "1.11.0-beta.34",
31-
"@polkadot/rpc-provider": "1.11.0-beta.34",
32-
"@polkadot/types": "1.11.0-beta.34",
30+
"@polkadot/metadata": "1.11.0-beta.35",
31+
"@polkadot/rpc-provider": "1.11.0-beta.35",
32+
"@polkadot/types": "1.11.0-beta.35",
3333
"@polkadot/util": "^2.8.1",
3434
"memoizee": "^0.4.14",
3535
"rxjs": "^6.5.5"

packages/rpc-provider/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/rpc-provider",
3-
"version": "1.11.0-beta.34",
3+
"version": "1.11.0-beta.35",
44
"description": "Transport providers for the API",
55
"main": "index.js",
66
"keywords": [
@@ -27,8 +27,8 @@
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/rpc-provider#readme",
2828
"dependencies": {
2929
"@babel/runtime": "^7.9.2",
30-
"@polkadot/metadata": "1.11.0-beta.34",
31-
"@polkadot/types": "1.11.0-beta.34",
30+
"@polkadot/metadata": "1.11.0-beta.35",
31+
"@polkadot/types": "1.11.0-beta.35",
3232
"@polkadot/util": "^2.8.1",
3333
"@polkadot/util-crypto": "^2.8.1",
3434
"bn.js": "^5.1.1",

packages/typegen/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/typegen",
3-
"version": "1.11.0-beta.34",
3+
"version": "1.11.0-beta.35",
44
"description": "Type generation scripts",
55
"main": "index.js",
66
"bin": {
@@ -36,10 +36,10 @@
3636
"@babel/core": "^7.9.0",
3737
"@babel/register": "^7.9.0",
3838
"@babel/runtime": "^7.9.2",
39-
"@polkadot/api": "1.11.0-beta.34",
40-
"@polkadot/metadata": "1.11.0-beta.34",
41-
"@polkadot/rpc-provider": "1.11.0-beta.34",
42-
"@polkadot/types": "1.11.0-beta.34",
39+
"@polkadot/api": "1.11.0-beta.35",
40+
"@polkadot/metadata": "1.11.0-beta.35",
41+
"@polkadot/rpc-provider": "1.11.0-beta.35",
42+
"@polkadot/types": "1.11.0-beta.35",
4343
"@polkadot/util": "^2.8.1",
4444
"websocket": "^1.0.31",
4545
"yargs": "^15.3.1"

packages/types-known/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@polkadot/types-known",
3-
"version": "1.11.0-beta.34",
3+
"version": "1.11.0-beta.35",
44
"description": "A JavaScript wrapper for the Polkadot JsonRPC interface",
55
"main": "index.js",
66
"keywords": [
@@ -27,7 +27,7 @@
2727
"homepage": "https://github.com/polkadot-js/api/tree/master/packages/types-known#readme",
2828
"dependencies": {
2929
"@babel/runtime": "^7.9.2",
30-
"@polkadot/types": "1.11.0-beta.34",
30+
"@polkadot/types": "1.11.0-beta.35",
3131
"@polkadot/util": "^2.8.1",
3232
"bn.js": "^5.1.1"
3333
},

0 commit comments

Comments
 (0)