mirror of
https://github.com/mempool/mempool.git
synced 2024-12-28 01:04:28 +01:00
Merge pull request #1561 from antonilol/recvd-htlcs
detect received lighting HTLC outputs
This commit is contained in:
commit
250978ea91
@ -1,5 +1,4 @@
|
|||||||
<span
|
<span
|
||||||
*ngIf="label"
|
*ngIf="label"
|
||||||
class="badge badge-pill badge-warning"
|
class="badge badge-pill badge-warning"
|
||||||
i18n="address-labels.multisig"
|
|
||||||
>{{ label }}</span>
|
>{{ label }}</span>
|
||||||
|
@ -52,8 +52,12 @@ export class AddressLabelsComponent implements OnInit {
|
|||||||
this.label = 'Lightning Force Close';
|
this.label = 'Lightning Force Close';
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
} else if (/^OP_DUP OP_HASH160 OP_PUSHBYTES_20 \w{40} OP_EQUAL OP_IF OP_CHECKSIG OP_ELSE OP_PUSHBYTES_33 \w{66} OP_SWAP OP_SIZE OP_PUSHBYTES_1 20 OP_EQUAL OP_NOTIF OP_DROP OP_PUSHNUM_2 OP_SWAP OP_PUSHBYTES_33 \w{66} OP_PUSHNUM_2 OP_CHECKMULTISIG OP_ELSE OP_HASH160 OP_PUSHBYTES_20 \w{40} OP_EQUALVERIFY OP_CHECKSIG OP_ENDIF (OP_PUSHNUM_1 OP_CSV OP_DROP |)OP_ENDIF$/.test(this.vin.inner_witnessscript_asm)) {
|
} else if (
|
||||||
|
/^OP_DUP OP_HASH160 OP_PUSHBYTES_20 \w{40} OP_EQUAL OP_IF OP_CHECKSIG OP_ELSE OP_PUSHBYTES_33 \w{66} OP_SWAP OP_SIZE OP_PUSHBYTES_1 20 OP_EQUAL OP_NOTIF OP_DROP OP_PUSHNUM_2 OP_SWAP OP_PUSHBYTES_33 \w{66} OP_PUSHNUM_2 OP_CHECKMULTISIG OP_ELSE OP_HASH160 OP_PUSHBYTES_20 \w{40} OP_EQUALVERIFY OP_CHECKSIG OP_ENDIF (OP_PUSHNUM_1 OP_CSV OP_DROP |)OP_ENDIF$/.test(this.vin.inner_witnessscript_asm) ||
|
||||||
|
/^OP_DUP OP_HASH160 OP_PUSHBYTES_20 \w{40} OP_EQUAL OP_IF OP_CHECKSIG OP_ELSE OP_PUSHBYTES_33 \w{66} OP_SWAP OP_SIZE OP_PUSHBYTES_1 20 OP_EQUAL OP_IF OP_HASH160 OP_PUSHBYTES_20 \w{40} OP_EQUALVERIFY OP_PUSHNUM_2 OP_SWAP OP_PUSHBYTES_33 \w{66} OP_PUSHNUM_2 OP_CHECKMULTISIG OP_ELSE OP_DROP OP_PUSHBYTES_3 \w{6} OP_CLTV OP_DROP OP_CHECKSIG OP_ENDIF (OP_PUSHNUM_1 OP_CSV OP_DROP |)OP_ENDIF$/.test(this.vin.inner_witnessscript_asm)
|
||||||
|
) {
|
||||||
// https://github.com/lightning/bolts/blob/master/03-transactions.md#offered-htlc-outputs
|
// https://github.com/lightning/bolts/blob/master/03-transactions.md#offered-htlc-outputs
|
||||||
|
// https://github.com/lightning/bolts/blob/master/03-transactions.md#received-htlc-outputs
|
||||||
if (topElement.length === 66) {
|
if (topElement.length === 66) {
|
||||||
// top element is a public key
|
// top element is a public key
|
||||||
this.label = 'Revoked Lightning HTLC';
|
this.label = 'Revoked Lightning HTLC';
|
||||||
@ -61,7 +65,7 @@ export class AddressLabelsComponent implements OnInit {
|
|||||||
// top element is a preimage
|
// top element is a preimage
|
||||||
this.label = 'Lightning HTLC';
|
this.label = 'Lightning HTLC';
|
||||||
} else {
|
} else {
|
||||||
// top element is '' to get in the multisig path of the script
|
// top element is '' to get in the expiry of the script
|
||||||
this.label = 'Expired Lightning HTLC';
|
this.label = 'Expired Lightning HTLC';
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user