Updated on 2026-08-14

This commit is contained in:
Tangem 2026-06-15 16:56:05 +04:00
parent 9f070d6023
commit b7c264b448
12 changed files with 408 additions and 13 deletions

View file

@ -0,0 +1,13 @@
package com.tangem.domain.walletconnect.model
/**
* A single output of a parsed PSBT (Partially Signed Bitcoin Transaction).
*
* @property address recipient address decoded from the output script, or `null` if it could not be decoded
* (e.g. `OP_RETURN` or non-standard scripts)
* @property amountSatoshi output amount, in satoshi
*/
data class WcPsbtOutput(
val address: String?,
val amountSatoshi: Long,
)