Skip to content

Commit

Permalink
Add known intrablockEntropy storage key
Browse files Browse the repository at this point in the history
  • Loading branch information
jacogr committed Nov 17, 2023
1 parent 1a5de03 commit 14bc065
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ Contributed:

Changes:

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


Expand Down
4 changes: 4 additions & 0 deletions packages/types/src/metadata/decorate/storage/substrate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,9 @@ export const substrate: Record<string, Creator> = {
heapPages: createSubstrateFn('heapPages', ':heappages', {
docs: 'Number of wasm linear memory pages required for execution of the runtime.',
type: 'u64'
}),
intrablockEntropy: createSubstrateFn('intrablockEntropy', ':intrablock_entropy', {
docs: 'Current intra-block entropy (a universally unique `[u8; 32]` value) is stored here.',
type: '[u8; 32]'
})
};

0 comments on commit 14bc065

Please sign in to comment.