Skip to content

Commit d9d0d7b

Browse files
authored
Add known intrablockEntropy storage key (polkadot-js#5754)
1 parent 1a5de03 commit d9d0d7b

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Contributed:
99

1010
Changes:
1111

12+
- Add known `intrablockEntropy` storage key
1213
- Drop support for Node 16 (EOL 11 Sep 2023)
1314

1415

packages/types/src/metadata/decorate/storage/substrate.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,9 @@ export const substrate: Record<string, Creator> = {
3636
heapPages: createSubstrateFn('heapPages', ':heappages', {
3737
docs: 'Number of wasm linear memory pages required for execution of the runtime.',
3838
type: 'u64'
39+
}),
40+
intrablockEntropy: createSubstrateFn('intrablockEntropy', ':intrablock_entropy', {
41+
docs: 'Current intra-block entropy (a universally unique `[u8; 32]` value) is stored here.',
42+
type: '[u8; 32]'
3943
})
4044
};

0 commit comments

Comments
 (0)