|
|
@ -1,6 +1,6 @@ |
|
|
|
package com.xsn.explorer.models |
|
|
|
|
|
|
|
import com.xsn.explorer.models.values.{Address, Blockhash, Size, TransactionId} |
|
|
|
import com.xsn.explorer.models.values.{Address, Blockhash, HexString, Size, TransactionId} |
|
|
|
|
|
|
|
case class LightWalletTransaction( |
|
|
|
id: TransactionId, |
|
|
@ -13,6 +13,6 @@ case class LightWalletTransaction( |
|
|
|
object LightWalletTransaction { |
|
|
|
|
|
|
|
case class Input(txid: TransactionId, index: Int, value: BigDecimal) |
|
|
|
case class Output(index: Int, value: BigDecimal, addresses: List[Address]) |
|
|
|
case class Output(index: Int, value: BigDecimal, addresses: List[Address], script: HexString) |
|
|
|
|
|
|
|
} |
|
|
|