mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 08:58:00 +00:00
feat: initial Pezkuwi Apps rebrand from polkadot-apps
Rebranded terminology: - Polkadot → Pezkuwi - Kusama → Dicle - Westend → Zagros - Rococo → PezkuwiChain - Substrate → Bizinikiwi - parachain → teyrchain Custom logos with Kurdistan brand colors (#e6007a → #86e62a): - bizinikiwi-hexagon.svg - sora-bizinikiwi.svg - hezscanner.svg - heztreasury.svg - pezkuwiscan.svg - pezkuwistats.svg - pezkuwiassembly.svg - pezkuwiholic.svg
This commit is contained in:
@@ -0,0 +1,102 @@
|
||||
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
import type { OverrideBundleDefinition } from '@pezkuwi/types/types';
|
||||
|
||||
// structs need to be in order
|
||||
/* eslint-disable sort-keys */
|
||||
|
||||
const definitions: OverrideBundleDefinition = {
|
||||
types: [
|
||||
{
|
||||
// on all versions
|
||||
minmax: [0, undefined],
|
||||
types: {
|
||||
AccountDataOf: 'AccountData',
|
||||
Address: 'MultiAddress',
|
||||
LookupSource: 'MultiAddress',
|
||||
ShardIdentifier: 'Hash',
|
||||
Url: 'Text',
|
||||
URI: 'Text',
|
||||
ClusterId: 'u32',
|
||||
EnclaveId: 'u32',
|
||||
MarketplaceId: 'u32',
|
||||
BalanceCaps: 'Balance',
|
||||
NFTId: 'u32',
|
||||
TernoaString: 'Vec<u8>',
|
||||
NFTSeriesId: 'Text',
|
||||
NFTData: {
|
||||
owner: 'AccountId',
|
||||
ipfs_reference: 'Text',
|
||||
series_id: 'NFTSeriesId',
|
||||
locked: 'bool'
|
||||
},
|
||||
NFTSeriesDetails: {
|
||||
owner: 'AccountId',
|
||||
draft: 'bool'
|
||||
},
|
||||
NFTCurrencyCombined: {
|
||||
caps: 'Balance',
|
||||
tiime: 'Balance'
|
||||
},
|
||||
NFTCurrency: {
|
||||
_enum: {
|
||||
Caps: 'Balance',
|
||||
Tiime: 'Balance',
|
||||
Combined: 'NFTCurrencyCombined'
|
||||
}
|
||||
},
|
||||
NFTCurrencyId: {
|
||||
_enum: [
|
||||
'Caps',
|
||||
'Tiime'
|
||||
]
|
||||
},
|
||||
SaleInformation: {
|
||||
account_id: 'AccountId',
|
||||
price: 'NFTCurrency',
|
||||
marketplace_id: 'MarketplaceId'
|
||||
},
|
||||
MarketplaceType: {
|
||||
_enum: [
|
||||
'Public',
|
||||
'Private'
|
||||
]
|
||||
},
|
||||
MarketplaceInformation: {
|
||||
kind: 'MarketplaceType',
|
||||
commission_fee: 'u8',
|
||||
owner: 'AccountId',
|
||||
allow_list: 'Vec<AccountId>',
|
||||
disallow_list: 'Vec<AccountId>',
|
||||
name: 'Text',
|
||||
uri: 'Option<URI>',
|
||||
logo_uri: 'Option<URI>'
|
||||
},
|
||||
Cluster: {
|
||||
enclaves: 'Vec<EnclaveId>'
|
||||
},
|
||||
Enclave: {
|
||||
api_url: 'Url'
|
||||
},
|
||||
CapsuleData: {
|
||||
owner: 'AccountId',
|
||||
ipfs_reference: 'Text'
|
||||
},
|
||||
CapsuleLedger: 'Vec<(NFTId, Balance)>',
|
||||
Status: {
|
||||
_enum: [
|
||||
'Free',
|
||||
'Reserved'
|
||||
]
|
||||
},
|
||||
Request: {
|
||||
shard: 'ShardIdentifier',
|
||||
cyphertext: 'Vec<u8>'
|
||||
}
|
||||
}
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
export default definitions;
|
||||
Reference in New Issue
Block a user