2020-02-16 22:15:07 +07:00
|
|
|
import { Component, OnInit, ChangeDetectionStrategy, Input } from '@angular/core';
|
|
|
|
import { Vin, Vout } from '../../interfaces/electrs.interface';
|
2020-06-10 23:52:14 +07:00
|
|
|
import { StateService } from 'src/app/services/state.service';
|
2020-02-16 22:15:07 +07:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'app-address-labels',
|
|
|
|
templateUrl: './address-labels.component.html',
|
|
|
|
styleUrls: ['./address-labels.component.scss'],
|
|
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
|
|
})
|
|
|
|
export class AddressLabelsComponent implements OnInit {
|
2020-06-10 23:52:14 +07:00
|
|
|
network = '';
|
2020-02-16 22:15:07 +07:00
|
|
|
|
|
|
|
@Input() vin: Vin;
|
|
|
|
@Input() vout: Vout;
|
|
|
|
|
|
|
|
multisig = false;
|
|
|
|
multisigM: number;
|
|
|
|
multisigN: number;
|
|
|
|
|
2020-05-09 20:37:50 +07:00
|
|
|
secondLayerClose = false;
|
2020-02-25 20:05:34 +07:00
|
|
|
|
2020-06-10 23:52:14 +07:00
|
|
|
constructor(
|
|
|
|
stateService: StateService,
|
|
|
|
) {
|
|
|
|
this.network = stateService.network;
|
|
|
|
}
|
2020-02-16 22:15:07 +07:00
|
|
|
|
|
|
|
ngOnInit() {
|
|
|
|
if (this.vin) {
|
|
|
|
this.handleVin();
|
|
|
|
} else if (this.vout) {
|
|
|
|
this.handleVout();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleVin() {
|
2020-02-25 20:05:34 +07:00
|
|
|
if (this.vin.inner_witnessscript_asm) {
|
|
|
|
if (this.vin.inner_witnessscript_asm.indexOf('OP_CHECKMULTISIG') > -1) {
|
|
|
|
const matches = this.getMatches(this.vin.inner_witnessscript_asm, /OP_PUSHNUM_([0-9])/g, 1);
|
|
|
|
this.multisig = true;
|
2020-05-09 20:37:50 +07:00
|
|
|
this.multisigM = parseInt(matches[0], 10);
|
|
|
|
this.multisigN = parseInt(matches[1], 10);
|
|
|
|
|
|
|
|
if (this.multisigM === 1 && this.multisigN === 1) {
|
|
|
|
this.multisig = false;
|
|
|
|
}
|
2020-02-25 20:05:34 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (/OP_IF (.+) OP_ELSE (.+) OP_CSV OP_DROP/.test(this.vin.inner_witnessscript_asm)) {
|
2020-05-09 20:37:50 +07:00
|
|
|
this.secondLayerClose = true;
|
2020-02-25 20:05:34 +07:00
|
|
|
}
|
2020-02-16 22:15:07 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
if (this.vin.inner_redeemscript_asm && this.vin.inner_redeemscript_asm.indexOf('OP_CHECKMULTISIG') > -1) {
|
|
|
|
const matches = this.getMatches(this.vin.inner_redeemscript_asm, /OP_PUSHNUM_([0-9])/g, 1);
|
|
|
|
this.multisig = true;
|
|
|
|
this.multisigM = matches[0];
|
|
|
|
this.multisigN = matches[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleVout() {
|
|
|
|
}
|
|
|
|
|
|
|
|
getMatches(str: string, regex: RegExp, index: number) {
|
|
|
|
if (!index) {
|
|
|
|
index = 1;
|
|
|
|
}
|
|
|
|
const matches = [];
|
|
|
|
let match;
|
|
|
|
while (match = regex.exec(str)) {
|
|
|
|
matches.push(match[index]);
|
|
|
|
}
|
|
|
|
return matches;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|