@using BTCPayServer.Views.Apps @using BTCPayServer.Abstractions.Extensions @using BTCPayServer.Abstractions.Custodians @model BTCPayServer.Models.CustodianAccountViewModels.ViewCustodianAccountViewModel @{ ViewData.SetActivePage(AppsNavPages.Create, "Custodian account: " + @Model?.CustodianAccount.Name); } @section PageHeadContent { } @section PageFootContent { }
Loading...

{{ account.assetBalanceExceptionMessage }}

Balances

Asset Balance Unit Price (Bid) Unit Price (Ask) Fiat Value Actions
{{ row.asset }} {{ row.formattedQty }} {{ row.formattedBid }} {{ row.formattedAsk }} {{ row.formattedFiatValue }} Trade Deposit Withdraw
No assets are stored with this custodian (yet).
An error occured while loading assets and balances.

Features

The @Model?.Custodian.Name custodian supports:

  • Viewing asset account
  • @if (Model?.Custodian is ICanTrade) {
  • Trading
  • } @if (Model?.Custodian is ICanDeposit) {
  • Depositing
  • } @if (Model?.Custodian is ICanWithdraw) {
  • Withdrawing (Greenfield API only, for now)
  • }