Files
pwap/pezkuwi-sdk-ui/packages/apps-config/src/api/spec/vln-rococo.ts
T
Claude c71ddb6e0d Add Pezkuwi SDK UI - Polkadot.js Apps clone
- 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
2025-11-14 00:55:17 +00:00

119 lines
2.6 KiB
TypeScript

// Copyright 2017-2025 @polkadot/apps-config authors & contributors
// SPDX-License-Identifier: Apache-2.0
import type { OverrideBundleDefinition } from '@polkadot/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,
Parachain: 'ParaId'
}
},
NetworkAsset: {
_enum: [
'ACA',
'AUSD',
'DOT'
]
},
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;