コード例 #1
0
        public async Task<IActionResult> CreateWalletAddress()
        {
            try
            {
                var id = "2MzMxyewqnzFStNwiubyLgzaown552CwaUV";
                var walletAddress = await _walletService.CreateWalletAddressAsync(id, 0);

                return Ok(walletAddress);
            }
            catch (Exception ex)
            {
                return BadRequest(ex.Message);
            }
        }