コード例 #1
0
        public async Task <IActionResult> GetEstimatedFee(DonateViewModel model)
        {
            var response = await _blockchainService.GetEstimatedFee(model);

            return(Json(response));
        }