// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors // SPDX-License-Identifier: Apache-2.0 import type { OverrideBundleDefinition } from '@pezkuwi/types/types'; /* eslint-disable sort-keys */ const definitions: OverrideBundleDefinition = { alias: { tokens: { AccountData: 'OrmlAccountData' } }, types: [ { // on all versions minmax: [0, undefined], types: { AssetPair: { asset_in: 'AssetId', asset_out: 'AssetId' }, Amount: 'i128', AmountOf: 'Amount', Address: 'AccountId', OrmlAccountData: { free: 'Balance', frozen: 'Balance', reserved: 'Balance' }, Fee: { numerator: 'u32', denominator: 'u32' }, BalanceInfo: { amount: 'Balance', assetId: 'AssetId' }, Chain: { genesisHash: 'Vec', lastBlockHash: 'Vec' }, Currency: 'AssetId', CurrencyId: 'AssetId', CurrencyIdOf: 'AssetId', Intention: { who: 'AccountId', asset_sell: 'AssetId', asset_buy: 'AssetId', amount: 'Balance', discount: 'bool', sell_or_buy: 'IntentionType' }, IntentionId: 'Hash', IntentionType: { _enum: ['SELL', 'BUY'] }, LookupSource: 'AccountId', Price: 'Balance', ClassId: 'u64', TokenId: 'u64', ClassData: { is_pool: 'bool' }, TokenData: { locked: 'bool' }, ClassInfo: { metadata: 'Vec', total_issuance: 'TokenId', owner: 'AccountId', data: 'ClassData' }, TokenInfo: { metadata: 'Vec', owner: 'AccountId', data: 'TokenData' }, ClassInfoOf: 'ClassInfo', TokenInfoOf: 'TokenInfo', ClassIdOf: 'ClassId', TokenIdOf: 'TokenId', OrderedSet: 'Vec', VestingSchedule: { start: 'BlockNumber', period: 'BlockNumber', period_count: 'u32', per_period: 'Compact' }, VestingScheduleOf: 'VestingSchedule', LBPWeight: 'u32', WeightCurveType: { _enum: ['Linear'] }, PoolId: 'AccountId', BalanceOf: 'Balance', AssetType: { _enum: { Token: 'Null', PoolShare: '(AssetId,AssetId)' } }, Pool: { owner: 'AccountId', start: 'BlockNumber', end: 'BlockNumber', assets: 'AssetPair', initial_weights: 'LBPWeight', final_weights: 'LBPWeight', weight_curve: 'WeightCurveType', pausable: 'bool', paused: 'bool', fee: 'Fee', fee_receiver: 'AccountId' }, AssetDetails: { name: 'Vec', asset_type: 'AssetType', existential_deposit: 'Balance', locked: 'bool' }, AssetDetailsT: 'AssetDetails', AssetMetadata: { symbol: 'Vec', decimals: 'u8' }, AssetInstance: 'AssetInstanceV1', MultiLocation: 'MultiLocationV1', MultiAsset: 'MultiAssetV1', Xcm: 'XcmV1', XcmOrder: 'XcmOrderV1' } } ] }; export default definitions;