Type Definition dex_general::pallet::KLast
source · pub type KLast<T: Config> = StorageMap<_GeneratedPrefixForStorageKLast<T>, Twox64Concat, (T::AssetId, T::AssetId), U256, ValueQuery>;
Expand description
Refer: https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2Pair.sol#L88 Last unliquidated protocol fee;
Storage type is [StorageMap
] with key type (T :: AssetId, T :: AssetId)
and value type U256
.