Decorated Signature
Represents a decorated signature on a Stellar transaction.
A decorated signature consists of:
A signature hint (last 4 bytes of the public key)
The actual signature bytes
The hint helps identify which key signed the transaction without transmitting the full public key.
Usage
// Sign a transaction
val keypair = KeyPair.random()
val transaction = TransactionBuilder(...)
.build()
transaction.sign(keypair)
// Access signatures
val signatures: List<DecoratedSignature> = transaction.signaturesContent copied to clipboard