summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--design-documents/002-wallet-exchange-management.rst16
1 files changed, 8 insertions, 8 deletions
diff --git a/design-documents/002-wallet-exchange-management.rst b/design-documents/002-wallet-exchange-management.rst
index 86d56e56..dd8b3c27 100644
--- a/design-documents/002-wallet-exchange-management.rst
+++ b/design-documents/002-wallet-exchange-management.rst
@@ -176,9 +176,10 @@ Response:
// Is this exchange the default exchange for this withdrawal?
isDefault: boolean;
- // The "reasonable-ness" of the exchange's fees, in context
- // of the withdrawn amount.
- feeStructureSummaryForAmount: FeeStructureSummaryForAmount;
+ withdrawalWithdrawnAmount: Amount;
+ withdrawalCreditAmount: Amount;
+ withdrawalFeeAmount: Amount;
+ withdrawalOverheadAmount: Amount;
};
}
@@ -312,11 +313,10 @@ Response:
// Is this exchange the default exchange for this withdrawal?
isDefault: boolean;
- // The "reasonable-ness" of the exchange's fees, in context
- // of the withdrawn amount.
- // Only provided if available (if we've already queried
- // and checked this exchange before).
- feeStructureSummaryForAmount: FeeStructureSummaryForAmount | undefined;
+ withdrawalWithdrawnAmount: Amount;
+ withdrawalCreditAmount: Amount;
+ withdrawalFeeAmount: Amount;
+ withdrawalOverheadAmount: Amount;
};
}[];
}