Add API docs for fromScript method on Address

This commit is contained in:
thunderbiscuit 2023-04-12 14:14:05 -04:00
parent 63b85b9100
commit 478b12c489
No known key found for this signature in database
GPG Key ID: 88253696EB836462

View File

@ -831,6 +831,9 @@ class Script(rawOutputScript: List<UByte>)
* @param address The address in string format. * @param address The address in string format.
*/ */
class Address(address: String) { class Address(address: String) {
/** Construct an [`Address`] from an output script. */
fun fromScript(script: Script, network: Network): Address {}
/** Return the Payload */ /** Return the Payload */
fun payload(): Payload fun payload(): Payload