Updated on 2026-08-14
This commit is contained in:
parent
9f070d6023
commit
b7c264b448
12 changed files with 408 additions and 13 deletions
|
|
@ -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,
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue