I must create and broadcast a MULTISIG transaction to the check community. OP_CHECKMULTISIG is for use. I want a locking script that requires my public key and 1 of different 3 individuals’s. The order of the signatures in unlocking script shouldn’t matter.
So far as i do know OP_CHECKMULTISIG requires order, so I do not know the right way to take care of no order state of affairs. Additionally, how am I even going to examine the signature of mine with my public key if its not prime of the stack at first. It appears too advanced, but when there’s a better means or a sure scheme I would gladly take the assistance.
Additionally, does this imply that solely 2 signature can be given for unlocking script or greater than 2 is feasible? In that case I made one, but it surely’s not utilizing OP_CHECKMULTISIG and undecided if its legitimate:
OP_CHECKSIG
OP_IF
# If sure, second signature have to be an worker's
OP_SWAP # [result1, sig2]
OP_DUP OP_CHECKSIG OP_SWAP
OP_DUP OP_CHECKSIG OP_SWAP
OP_DUP OP_CHECKSIG
OP_ADD OP_ADD
OP_1 OP_GREATERTHANOREQUAL # At the very least 1 worker signed
OP_ELSE
# If first just isn't supervisor's, examine if it is an worker's
OP_SWAP # [result1, sig2]
OP_DUP OP_CHECKSIG OP_SWAP
OP_DUP OP_CHECKSIG OP_SWAP
OP_DUP OP_CHECKSIG
OP_ADD OP_ADD
OP_1 OP_GREATERTHANOREQUAL OP_IF
# If first is an worker's, second have to be supervisor's
OP_CHECKSIG
OP_ELSE
OP_0 # Fail if first sig is neither
OP_ENDIF
OP_ENDIF