Type Definition pallet_asset_conversion::pallet::Pools
source · pub type Pools<T: Config> = StorageMap<_GeneratedPrefixForStoragePools<T>, Blake2_128Concat, (<T as Config>::MultiAssetId, <T as Config>::MultiAssetId), PoolInfo<T::PoolAssetId>, OptionQuery>;
Expand description
Map from PoolAssetId
to PoolInfo
. This establishes whether a pool has been officially
created rather than people sending tokens directly to a pool’s public account.
Storage type is StorageMap
with key type PoolIdOf < T >
and value type PoolInfo < T :: PoolAssetId >
.