DepositAuth: last tweaks

This commit is contained in:
mDuo13
2018-02-01 16:41:48 -08:00
parent ec9a124ce3
commit 5d21e66917
2 changed files with 14 additions and 7 deletions

View File

@@ -4,6 +4,8 @@ _(Requires the [DepositAuth amendment](reference-amendments.html#depositauth).)_
Deposit Authorization is an optional feature of an [account](concept-accounts.html) in the XRP Ledger. With Deposit Authorization enabled, transactions cannot send value of any kind to the account unless the sender of those transactions is the account itself. This includes transfers of XRP and issued currencies.
By default, new accounts have DepositAuth disabled.
## Background
Financial services regulations and licenses may require that a business or entity must know the sender of all transactions it receives. This presents a challenge on a decentralized system like the XRP Ledger where participants are identified by pseudonyms which can be freely generated and the default behavior is for any address to be able to pay any other.

View File

@@ -1,10 +1,10 @@
<table>
<table class="depauth">
<thead>
<tr>
<th>DepositAuth status:</th>
<th colspan="2" class="depauth-status">Disabled</th>
<th>&nbsp;</th>
<th colspan="2" class="depauth-status">DepositAuth Disabled</th>
<th class="depauth-spacer">&nbsp;</th>
<th colspan="2" class="depauth-status">Enabled</th>
<th colspan="2" class="depauth-status">DepositAuth Enabled</th>
</tr>
<tr>
<th>Transaction Type</th>
@@ -75,7 +75,7 @@
<td class="depauth-maybe">Cross-currency only</td>
<td class="depauth-ok">OK</td>
<td class="depauth-spacer">&nbsp;</td>
<td class="depauth-maybe">Cross-currency payments delivering XRP up to the minimum reserve <!--{# TODO: double-check this #}-->}</td>
<td class="depauth-no">No Permission</td>
<td class="depauth-maybe">XRP payments up to the minimum reserve</td>
</tr>
<tr>
@@ -148,7 +148,12 @@
font-size: 8pt;
}
.depauth-spacer {
width: 10px;
background-color: #999;
background-color: black;
padding: 2px !important;
font-size: 2px;
}
th.depauth-spacer {
border: 1px solid #dbdde2;
border-bottom-color: black;
}
</style>