Skip to content

Cater for runtime Metadata_* v2 #5545

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 30 additions & 6 deletions packages/types/src/interfaces/metadata/runtime.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,42 @@
// Copyright 2017-2023 @polkadot/types authors & contributors
// SPDX-License-Identifier: Apache-2.0

import type { DefinitionsCall } from '../../types/index.js';
import type { DefinitionsCall, DefinitionsCallEntry } from '../../types/index.js';

import { objectSpread } from '@polkadot/util';

const META_V1_TO_V2: DefinitionsCallEntry['methods'] = {
metadata: {
description: 'Returns the metadata of a runtime',
params: [],
type: 'OpaqueMetadata'
}
};

export const runtime: DefinitionsCall = {
Metadata: [
{
methods: {
metadata: {
description: 'Returns the metadata of a runtime',
methods: objectSpread({
metadata_at_version: {
description: 'Returns the metadata at a given version.',
params: [
{
name: 'version',
type: 'u32'
}
],
type: 'Option<OpaqueMetadata>'
},
metadata_versions: {
description: 'Returns the supported metadata versions.',
params: [],
type: 'OpaqueMetadata'
type: 'Vec<u32>'
}
},
}, META_V1_TO_V2),
version: 2
},
{
methods: objectSpread({}, META_V1_TO_V2),
version: 1
}
]
Expand Down