show cashout destination
This commit is contained in:
parent
d34faf2549
commit
7879efcff7
5
packages/demobank-ui/src/declaration.d.ts
vendored
5
packages/demobank-ui/src/declaration.d.ts
vendored
@ -392,6 +392,11 @@ namespace SandboxBackend {
|
|||||||
subject: string;
|
subject: string;
|
||||||
// Circuit bank account that created the cash-out.
|
// Circuit bank account that created the cash-out.
|
||||||
account: string;
|
account: string;
|
||||||
|
// Fiat bank account that will receive the cashed out amount.
|
||||||
|
cashout_address: string;
|
||||||
|
// Ratios and fees related to this cash-out at the time
|
||||||
|
// when the operation was created.
|
||||||
|
ratios_and_fees: RatiosAndFees;
|
||||||
// Time when the cash-out was created.
|
// Time when the cash-out was created.
|
||||||
creation_time: number; // milliseconds since the Unix epoch
|
creation_time: number; // milliseconds since the Unix epoch
|
||||||
// Time when the cash-out was confirmed via its TAN.
|
// Time when the cash-out was confirmed via its TAN.
|
||||||
|
@ -652,6 +652,12 @@ export function ShowCashoutDetails({
|
|||||||
</label>
|
</label>
|
||||||
<input readOnly value={result.data.status} />
|
<input readOnly value={result.data.status} />
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
<fieldset>
|
||||||
|
<label>
|
||||||
|
<i18n.Translate>Destination</i18n.Translate>
|
||||||
|
</label>
|
||||||
|
<input readOnly value={result.data.cashout_address} />
|
||||||
|
</fieldset>
|
||||||
{isPending ? (
|
{isPending ? (
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<label>
|
<label>
|
||||||
|
Loading…
Reference in New Issue
Block a user