// Copyright 2017-2021 @polkadot/types authors & contributors // SPDX-License-Identifier: Apache-2.0 // order important in structs... :) /* eslint-disable sort-keys */ export default { HrmpChannel: { maxCapacity: 'u32', maxTotalSize: 'u32', maxMessageSize: 'u32', msgCount: 'u32', totalSize: 'u32', mqcHead: 'Option', senderDeposit: 'Balance', recipientDeposit: 'Balance' }, HrmpChannelId: { sender: 'u32', receiver: 'u32' }, HrmpOpenChannelRequest: { confirmed: 'bool', age: 'SessionIndex', senderDeposit: 'Balance', maxMessageSize: 'u32', maxCapacity: 'u32', maxTotalSize: 'u32' } };