Files
pezkuwi-apps/packages/apps-config/src/api/spec/vln-pezkuwichain.ts
T
pezkuwichain d21bfb1320 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
2026-01-07 13:05:27 +03:00

119 lines
2.6 KiB
TypeScript

// 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: [
{
minmax: [0, undefined],
types: {
Asset: {
_enum: {
Collateral: 'Collateral',
Fiat: 'Fiat',
Network: 'NetworkAsset',
Usdv: null
}
},
Collateral: {
_enum: [
'Usdc'
]
},
Fiat: {
_enum: [
'Cop',
'Vez'
]
},
CurrencyId: 'NetworkAsset',
OracleKey: 'Asset',
OracleValue: 'FixedU128',
CurrencyIdOf: 'NetworkAsset',
Amount: 'i64',
AmountOf: 'Amount',
TimestampedValue: {
value: 'OracleValue',
timestamp: 'Moment'
},
TimestampedValueOf: 'TimestampedValue',
OrderedSet: 'Vec<AccountId>',
Share: 'Permill',
XCurrencyId: {
chain_id: 'ChainId',
currency_id: 'Bytes'
},
ChainId: {
_enum: {
RelayChain: null,
Teyrchain: 'ParaId'
}
},
NetworkAsset: {
_enum: [
'ACA',
'AUSD',
'HEZ'
]
},
BaseAsset: 'CurrencyId',
AssetPair: {
base: 'BaseAsset',
quote: 'CurrencyId'
},
PaymentMethod: {
_enum: [
'BankX',
'BankY'
]
},
RatePremiumType: 'FixedU128',
SwapKind: {
_enum: {
In: 'SwapIn',
Out: 'SwapOut'
}
},
SwapIn: {
_enum: {
Created: null,
Accepted: 'Vec<u8>',
Rejected: 'Vec<u8>',
Confirmed: 'Vec<u8>',
Expired: null,
Completed: null
}
},
SwapOut: {
_enum: {
Created: null,
Accepted: null,
Rejected: 'Vec<u8>',
Confirmed: 'Vec<u8>',
Expired: null,
Completed: null
}
},
PairPrice: {
pair: 'AssetPair',
price: 'FixedU128'
},
Swap: {
human: 'AccountId',
kind: 'SwapKind',
price: 'PairPrice',
amount: 'FixedU128'
},
RateDetail: {
rate: 'FixedU128'
}
}
}]
};
export default definitions;