commit 26c4514dbe40b291e68ae20795e6281c32adfbe1
parent b7f1d602967a1a3130306219bb4ff338f2219439
Author: Antoine A <>
Date: Wed, 4 Mar 2026 10:30:08 +0100
Use authorization_sig instead of authorization_signature
Diffstat:
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/core/api-bank-wire-gateway.rst b/core/api-bank-wire-gateway.rst
@@ -390,7 +390,7 @@ accounts are merged into a single history.
// Signature of the account public key using the authorization private key
// @since **v5**
- authorization_signature?: EddsaSignature;
+ authorization_sig?: EddsaSignature;
}
.. ts:def:: IncomingReserveTransaction
@@ -424,7 +424,7 @@ accounts are merged into a single history.
// Signature of the reserve public key using the authorization private key
// @since **v5**
- authorization_signature?: EddsaSignature;
+ authorization_sig?: EddsaSignature;
}
.. ts:def:: IncomingWadTransaction
diff --git a/core/api-bank-wire-transfer.rst b/core/api-bank-wire-transfer.rst
@@ -113,7 +113,7 @@ Prepared wire transfers
authorization_pub: EddsaPublicKey;
// Signature of the account_pub key using the authorization_pub private key
- authorization_signature: EddsaSignature;
+ authorization_sig: EddsaSignature;
// Whether the authorization_pub will be reused for recurrent transfers
// Disable bounces in case of authorization_pub reuse
@@ -211,7 +211,7 @@ Prepared wire transfers
// Signature of the timestamp using the authorization_pub private key
// Prevent replay attack
- authorization_signature: EddsaSignature;
+ authorization_sig: EddsaSignature;
}
**Response:**