mirror of
https://github.com/pezkuwichain/pwap.git
synced 2026-08-08 12:25:40 +00:00
c71ddb6e0d
- Clone Polkadot.js Apps repository - Update package.json with Pezkuwi branding - Add Pezkuwi endpoint to production chains (wss://pezkuwichain.app:9944) - Create comprehensive README for SDK UI - Set up project structure with all packages Next steps: - Apply Kurdistan colors (Kesk, Sor, Zer, Spi + Black) to UI theme - Replace logos with Pezkuwi branding - Test build and deployment
338 lines
6.9 KiB
TypeScript
338 lines
6.9 KiB
TypeScript
// Copyright 2017-2025 @polkadot/apps-config authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
// structs need to be in order
|
|
/* eslint-disable sort-keys */
|
|
|
|
import type { OverrideBundleDefinition } from '@polkadot/types/types';
|
|
|
|
import logionDefault, { runtime as logionRuntime, session as logionSession } from '@logion/node-api/interfaces/definitions';
|
|
|
|
const defaultTypesUpTo109 = {
|
|
Address: 'MultiAddress',
|
|
LookupSource: 'MultiAddress',
|
|
PeerId: '(Vec<u8>)',
|
|
AccountInfo: 'AccountInfoWithDualRefCount',
|
|
TAssetBalance: 'u128',
|
|
AssetId: 'u64',
|
|
AssetDetails: {
|
|
owner: 'AccountId',
|
|
issuer: 'AccountId',
|
|
admin: 'AccountId',
|
|
freezer: 'AccountId',
|
|
supply: 'Balance',
|
|
deposit: 'DepositBalance',
|
|
max_zombies: 'u32',
|
|
min_balance: 'Balance',
|
|
zombies: 'u32',
|
|
accounts: 'u32',
|
|
is_frozen: 'bool'
|
|
},
|
|
AssetMetadata: {
|
|
deposit: 'DepositBalance',
|
|
name: 'Vec<u8>',
|
|
symbol: 'Vec<u8>',
|
|
decimals: 'u8'
|
|
},
|
|
LocId: 'u128',
|
|
LegalOfficerCaseOf: {
|
|
owner: 'AccountId',
|
|
requester: 'Requester',
|
|
metadata: 'Vec<MetadataItem>',
|
|
files: 'Vec<File>',
|
|
closed: 'bool',
|
|
loc_type: 'LocType',
|
|
links: 'Vec<LocLink>',
|
|
void_info: 'Option<LocVoidInfo<LocId>>',
|
|
replacer_of: 'Option<LocId>',
|
|
collection_last_block_submission: 'Option<BlockNumber>',
|
|
collection_max_size: 'Option<CollectionSize>'
|
|
},
|
|
MetadataItem: {
|
|
name: 'Vec<u8>',
|
|
value: 'Vec<u8>',
|
|
submitter: 'AccountId'
|
|
},
|
|
LocType: {
|
|
_enum: [
|
|
'Transaction',
|
|
'Identity',
|
|
'Collection'
|
|
]
|
|
},
|
|
LocLink: {
|
|
id: 'LocId',
|
|
nature: 'Vec<u8>'
|
|
},
|
|
File: {
|
|
hash: 'Hash',
|
|
nature: 'Vec<u8>',
|
|
submitter: 'AccountId'
|
|
},
|
|
LocVoidInfo: {
|
|
replacer: 'Option<LocId>'
|
|
},
|
|
StorageVersion: {
|
|
_enum: [
|
|
'V1',
|
|
'V2MakeLocVoid',
|
|
'V3RequesterEnum',
|
|
'V4ItemSubmitter',
|
|
'V5Collection'
|
|
]
|
|
},
|
|
Requester: {
|
|
_enum: {
|
|
None: null,
|
|
Account: 'AccountId',
|
|
Loc: 'LocId'
|
|
}
|
|
},
|
|
CollectionSize: 'u32',
|
|
CollectionItemId: 'Hash',
|
|
CollectionItem: {
|
|
description: 'Vec<u8>'
|
|
}
|
|
};
|
|
|
|
const defaultTypesUpTo111 = {
|
|
Address: 'MultiAddress',
|
|
LookupSource: 'MultiAddress',
|
|
PeerId: '(Vec<u8>)',
|
|
AccountInfo: 'AccountInfoWithDualRefCount',
|
|
TAssetBalance: 'u128',
|
|
AssetId: 'u64',
|
|
AssetDetails: {
|
|
owner: 'AccountId',
|
|
issuer: 'AccountId',
|
|
admin: 'AccountId',
|
|
freezer: 'AccountId',
|
|
supply: 'Balance',
|
|
deposit: 'DepositBalance',
|
|
max_zombies: 'u32',
|
|
min_balance: 'Balance',
|
|
zombies: 'u32',
|
|
accounts: 'u32',
|
|
is_frozen: 'bool'
|
|
},
|
|
AssetMetadata: {
|
|
deposit: 'DepositBalance',
|
|
name: 'Vec<u8>',
|
|
symbol: 'Vec<u8>',
|
|
decimals: 'u8'
|
|
},
|
|
LocId: 'u128',
|
|
LegalOfficerCaseOf: {
|
|
owner: 'AccountId',
|
|
requester: 'Requester',
|
|
metadata: 'Vec<MetadataItem>',
|
|
files: 'Vec<File>',
|
|
closed: 'bool',
|
|
loc_type: 'LocType',
|
|
links: 'Vec<LocLink>',
|
|
void_info: 'Option<LocVoidInfo<LocId>>',
|
|
replacer_of: 'Option<LocId>',
|
|
collection_last_block_submission: 'Option<BlockNumber>',
|
|
collection_max_size: 'Option<CollectionSize>',
|
|
collection_can_upload: 'bool'
|
|
},
|
|
MetadataItem: {
|
|
name: 'Vec<u8>',
|
|
value: 'Vec<u8>',
|
|
submitter: 'AccountId'
|
|
},
|
|
LocType: {
|
|
_enum: [
|
|
'Transaction',
|
|
'Identity',
|
|
'Collection'
|
|
]
|
|
},
|
|
LocLink: {
|
|
id: 'LocId',
|
|
nature: 'Vec<u8>'
|
|
},
|
|
File: {
|
|
hash: 'Hash',
|
|
nature: 'Vec<u8>',
|
|
submitter: 'AccountId'
|
|
},
|
|
LocVoidInfo: {
|
|
replacer: 'Option<LocId>'
|
|
},
|
|
StorageVersion: {
|
|
_enum: [
|
|
'V1',
|
|
'V2MakeLocVoid',
|
|
'V3RequesterEnum',
|
|
'V4ItemSubmitter',
|
|
'V5Collection',
|
|
'V6ItemUpload'
|
|
]
|
|
},
|
|
Requester: {
|
|
_enum: {
|
|
None: null,
|
|
Account: 'AccountId',
|
|
Loc: 'LocId'
|
|
}
|
|
},
|
|
CollectionSize: 'u32',
|
|
CollectionItemId: 'Hash',
|
|
CollectionItem: {
|
|
description: 'Vec<u8>',
|
|
files: 'Vec<CollectionItemFile<Hash>>'
|
|
},
|
|
CollectionItemFile: {
|
|
name: 'Vec<u8>',
|
|
content_type: 'Vec<u8>',
|
|
fileSize: 'u32',
|
|
hash: 'Hash'
|
|
}
|
|
};
|
|
|
|
const defaultTypesUpTo116 = {
|
|
Address: 'MultiAddress',
|
|
LookupSource: 'MultiAddress',
|
|
OpaquePeerId: 'Vec<u8>',
|
|
AccountInfo: 'AccountInfoWithDualRefCount',
|
|
TAssetBalance: 'u128',
|
|
AssetId: 'u64',
|
|
AssetDetails: {
|
|
owner: 'AccountId',
|
|
issuer: 'AccountId',
|
|
admin: 'AccountId',
|
|
freezer: 'AccountId',
|
|
supply: 'Balance',
|
|
deposit: 'DepositBalance',
|
|
max_zombies: 'u32',
|
|
min_balance: 'Balance',
|
|
zombies: 'u32',
|
|
accounts: 'u32',
|
|
is_frozen: 'bool'
|
|
},
|
|
AssetMetadata: {
|
|
deposit: 'DepositBalance',
|
|
name: 'Vec<u8>',
|
|
symbol: 'Vec<u8>',
|
|
decimals: 'u8'
|
|
},
|
|
LocId: 'u128',
|
|
LegalOfficerCaseOf: {
|
|
owner: 'AccountId',
|
|
requester: 'Requester',
|
|
metadata: 'Vec<MetadataItem>',
|
|
files: 'Vec<File>',
|
|
closed: 'bool',
|
|
loc_type: 'LocType',
|
|
links: 'Vec<LocLink>',
|
|
void_info: 'Option<LocVoidInfo<LocId>>',
|
|
replacer_of: 'Option<LocId>',
|
|
collection_last_block_submission: 'Option<BlockNumber>',
|
|
collection_max_size: 'Option<CollectionSize>',
|
|
collection_can_upload: 'bool'
|
|
},
|
|
MetadataItem: {
|
|
name: 'Vec<u8>',
|
|
value: 'Vec<u8>',
|
|
submitter: 'AccountId'
|
|
},
|
|
LocType: {
|
|
_enum: [
|
|
'Transaction',
|
|
'Identity',
|
|
'Collection'
|
|
]
|
|
},
|
|
LocLink: {
|
|
id: 'LocId',
|
|
nature: 'Vec<u8>'
|
|
},
|
|
File: {
|
|
hash: 'Hash',
|
|
nature: 'Vec<u8>',
|
|
submitter: 'AccountId'
|
|
},
|
|
LocVoidInfo: {
|
|
replacer: 'Option<LocId>'
|
|
},
|
|
StorageVersion: {
|
|
_enum: [
|
|
'V1',
|
|
'V2MakeLocVoid',
|
|
'V3RequesterEnum',
|
|
'V4ItemSubmitter',
|
|
'V5Collection',
|
|
'V6ItemUpload',
|
|
'V7ItemToken'
|
|
]
|
|
},
|
|
Requester: {
|
|
_enum: {
|
|
None: null,
|
|
Account: 'AccountId',
|
|
Loc: 'LocId'
|
|
}
|
|
},
|
|
CollectionSize: 'u32',
|
|
CollectionItemId: 'Hash',
|
|
CollectionItem: {
|
|
description: 'Vec<u8>',
|
|
files: 'Vec<CollectionItemFile<Hash>>',
|
|
token: 'Option<CollectionItemToken>',
|
|
restricted_delivery: 'bool'
|
|
},
|
|
CollectionItemFile: {
|
|
name: 'Vec<u8>',
|
|
content_type: 'Vec<u8>',
|
|
fileSize: 'u32',
|
|
hash: 'Hash'
|
|
},
|
|
CollectionItemToken: {
|
|
token_type: 'Vec<u8>',
|
|
token_id: 'Vec<u8>'
|
|
}
|
|
};
|
|
|
|
const definitions: OverrideBundleDefinition = {
|
|
alias: {
|
|
loAuthorityList: {
|
|
StorageVersion: 'LoAuthorityListStorageVersion'
|
|
}
|
|
},
|
|
types: [
|
|
{
|
|
minmax: [0, 109],
|
|
types: {
|
|
...defaultTypesUpTo109,
|
|
...logionSession.types
|
|
}
|
|
},
|
|
{
|
|
minmax: [110, 111],
|
|
types: {
|
|
...defaultTypesUpTo111,
|
|
...logionSession.types
|
|
}
|
|
},
|
|
{
|
|
minmax: [112, 116],
|
|
types: {
|
|
...defaultTypesUpTo116,
|
|
...logionSession.types
|
|
}
|
|
},
|
|
{
|
|
// Latest
|
|
minmax: [117, undefined],
|
|
types: {
|
|
...logionDefault.types,
|
|
...logionRuntime.types,
|
|
...logionSession.types
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
export default definitions;
|