Skip to content
Closed
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions packages/apps-config/src/api/spec/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright 2017-2026 @polkadot/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0

import type { OverrideBundleDefinition } from '@polkadot/types/types';

Check failure on line 4 in packages/apps-config/src/api/spec/index.ts

View workflow job for this annotation

GitHub Actions / pr (lint)

Run autofix to sort these imports!

import acala from './acala.js';
import ajuna from './ajuna.js';
Expand Down Expand Up @@ -96,6 +96,7 @@
import parallel from './parallel.js';
import parami from './parami.js';
import peaq from './peaq.js';
import people from './people.js';
import peerplays from './peerplays.js';
import pendulum from './pendulum.js';
import phoenix from './phoenix.js';
Expand Down Expand Up @@ -272,7 +273,8 @@
'peaq-node': peaq,
'peaq-node-dev': peaq,
'peaq-node-krest': peaq,
'people-paseo-next': people,
peerplays,

Check failure on line 277 in packages/apps-config/src/api/spec/index.ts

View workflow job for this annotation

GitHub Actions / pr (lint)

Expected object keys to be in ascending order. 'peerplays' should be before 'people-paseo-next'
pendulum,
'phoenix-node': phoenix,
'phoenix-parachain': phoenix,
Expand Down
35 changes: 35 additions & 0 deletions packages/apps-config/src/api/spec/people.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
// Copyright 2017-2026 @polkadot/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0

import type { OverrideBundleDefinition } from '@polkadot/types/types';

/* eslint-disable sort-keys */

const definitions: OverrideBundleDefinition = {
types: [
{
minmax: [0, undefined],
types: {
VerifyMultiSignature: {
_enum: {
Signed: {

Check failure on line 15 in packages/apps-config/src/api/spec/people.ts

View workflow job for this annotation

GitHub Actions / pr (build:code)

Type '{ signature: string; account: string; }' is not assignable to type 'number'.
signature: 'MultiSignature',
account: 'AccountId'
},
Disabled: 'Null'

Check failure on line 19 in packages/apps-config/src/api/spec/people.ts

View workflow job for this annotation

GitHub Actions / pr (build:code)

Type 'string' is not assignable to type 'number'.
}
}
}
}
],
signedExtensions: {
VerifyMultiSignature: {
extrinsic: {
verifySignature: 'VerifyMultiSignature'
},
payload: {}
}
}
};

export default definitions;
29 changes: 29 additions & 0 deletions packages/apps-config/src/api/typesBundle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63230,6 +63230,35 @@ export const typesBundle = {
}
}
},
"people-paseo-next": {
"types": [
{
"minmax": [
0,
null
],
"types": {
"VerifyMultiSignature": {
"_enum": {
"Signed": {
"signature": "MultiSignature",
"account": "AccountId"
},
"Disabled": "Null"
}
}
}
}
],
"signedExtensions": {
"VerifyMultiSignature": {
"extrinsic": {
"verifySignature": "VerifyMultiSignature"
},
"payload": {}
}
}
},
"peerplays": {
"rpc": {
"fractionalNft": {
Expand Down
Loading