DepositPreauth
A DepositPreauth transaction gives another account pre-approval to deliver payments to the sender of this transaction.
Tip: You can use this transaction to preauthorize certain counterparties before you enable Deposit Authorization. This may be useful to ensure a smooth transition from not requiring deposit authorization to requiring it.
[Source]
Added by the [DepositPreauth amendment][].
Example
Fields
Field | JSON Type | [Internal Type][] | Description |
---|---|---|---|
| String | AccountID | (Optional) Xahau address of the sender to preauthorize. |
| String | AccountID | (Optional) Xahau address of a sender whose preauthorization should be revoked. |
You must provide either Authorize
or Unauthorize
, but not both.
Error Cases
An account cannot preauthorize (or unauthorize) its own address. Attempting to do so fails with the result
temCANNOT_PREAUTH_SELF
.Attempting to preauthorize an account which is already preauthorized fails with the result
tecDUPLICATE
.Attempting to unauthorize an account which is not preauthorized fails with the result
tecNO_ENTRY
.Attempting to preauthorize an address that is not funded in the ledger fails with the result
tecNO_TARGET
.Adding authorization adds a DepositPreauth object to the ledger, which counts toward the owner reserve requirement. If the sender of the transaction does not have enough XAH to pay for the increased reserve, the transaction fails with the result
tecINSUFFICIENT_RESERVE
. If the sender of the account is already at the maximum number of owned objects, the transaction fails with the resulttecDIR_FULL
.
Last updated