diff --git a/CONTRIBUTORS b/CONTRIBUTORS index f418f68536..688532e0b0 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -1,4 +1,4 @@ - 291 Jaco Bump API (#453) + 292 Jaco Bump deps (#456) 7 Kevin Veros Hamonangan Update ss58.md (#81) 5 brettkolodny Contract query subscriptions workaround in Contract FAQ (#60) 5 Jhon Update types.basics.md (#165) diff --git a/docs/kusama/rpc.md b/docs/kusama/rpc.md index e7685cc105..d98c2de5c9 100644 --- a/docs/kusama/rpc.md +++ b/docs/kusama/rpc.md @@ -102,10 +102,10 @@ ___ - **jsonrpc**: `beefy_getFinalizedHead` - **summary**: Returns hash of the latest BEEFY finalized block as seen by this client. -### subscribeJustifications(): `BeefySignedCommitment` +### subscribeJustifications(): `BeefyVersionedFinalityProof` - **interface**: `api.rpc.beefy.subscribeJustifications` - **jsonrpc**: `beefy_subscribeJustifications` -- **summary**: Returns the block most recently finalized by BEEFY, alongside side its justification. +- **summary**: Returns the block most recently finalized by BEEFY, alongside its justification. ___ diff --git a/docs/kusama/storage.md b/docs/kusama/storage.md index 173b6c2b38..18780fcdf4 100644 --- a/docs/kusama/storage.md +++ b/docs/kusama/storage.md @@ -1826,6 +1826,10 @@ _These are well-known keys that are always available to the runtime implementati ### heapPages(): `u64` - **interface**: `api.query.substrate.heapPages` - **summary**: Number of wasm linear memory pages required for execution of the runtime. + +### intrablockEntropy(): `AccountId32` +- **interface**: `api.query.substrate.intrablockEntropy` +- **summary**: Current intra-block entropy (a universally unique `[u8; 32]` value) is stored here. ___ diff --git a/docs/polkadot/rpc.md b/docs/polkadot/rpc.md index e7685cc105..d98c2de5c9 100644 --- a/docs/polkadot/rpc.md +++ b/docs/polkadot/rpc.md @@ -102,10 +102,10 @@ ___ - **jsonrpc**: `beefy_getFinalizedHead` - **summary**: Returns hash of the latest BEEFY finalized block as seen by this client. -### subscribeJustifications(): `BeefySignedCommitment` +### subscribeJustifications(): `BeefyVersionedFinalityProof` - **interface**: `api.rpc.beefy.subscribeJustifications` - **jsonrpc**: `beefy_subscribeJustifications` -- **summary**: Returns the block most recently finalized by BEEFY, alongside side its justification. +- **summary**: Returns the block most recently finalized by BEEFY, alongside its justification. ___ diff --git a/docs/polkadot/storage.md b/docs/polkadot/storage.md index 85e59db299..4c72f03710 100644 --- a/docs/polkadot/storage.md +++ b/docs/polkadot/storage.md @@ -1483,6 +1483,10 @@ _These are well-known keys that are always available to the runtime implementati ### heapPages(): `u64` - **interface**: `api.query.substrate.heapPages` - **summary**: Number of wasm linear memory pages required for execution of the runtime. + +### intrablockEntropy(): `AccountId32` +- **interface**: `api.query.substrate.intrablockEntropy` +- **summary**: Current intra-block entropy (a universally unique `[u8; 32]` value) is stored here. ___ diff --git a/docs/substrate/rpc.md b/docs/substrate/rpc.md index 58bc2edd4e..0618864559 100644 --- a/docs/substrate/rpc.md +++ b/docs/substrate/rpc.md @@ -114,10 +114,10 @@ ___ - **jsonrpc**: `beefy_getFinalizedHead` - **summary**: Returns hash of the latest BEEFY finalized block as seen by this client. -### subscribeJustifications(): `BeefySignedCommitment` +### subscribeJustifications(): `BeefyVersionedFinalityProof` - **interface**: `api.rpc.beefy.subscribeJustifications` - **jsonrpc**: `beefy_subscribeJustifications` -- **summary**: Returns the block most recently finalized by BEEFY, alongside side its justification. +- **summary**: Returns the block most recently finalized by BEEFY, alongside its justification. ___ diff --git a/docs/substrate/storage.md b/docs/substrate/storage.md index a32bdd206e..cf2a79d74c 100644 --- a/docs/substrate/storage.md +++ b/docs/substrate/storage.md @@ -1831,6 +1831,10 @@ _These are well-known keys that are always available to the runtime implementati ### heapPages(): `u64` - **interface**: `api.query.substrate.heapPages` - **summary**: Number of wasm linear memory pages required for execution of the runtime. + +### intrablockEntropy(): `AccountId32` +- **interface**: `api.query.substrate.intrablockEntropy` +- **summary**: Current intra-block entropy (a universally unique `[u8; 32]` value) is stored here. ___ diff --git a/package.json b/package.json index 2a8c42484c..39c15da69b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "polkadot-js", - "version": "0.0.279", + "version": "0.0.280", "engine-strict": true, "engines": { "node": ">=18.14" @@ -45,7 +45,7 @@ "@cmfcmf/docusaurus-search-local": "^1.1.0" }, "versions": { - "git": "0.0.279", - "npm": "0.0.279" + "git": "0.0.280", + "npm": "0.0.280" } }