(asm: string)
| 28 | } |
| 29 | |
| 30 | export function asmToScript(asm: string): Script { |
| 31 | return bytecodeToScript(asmToBytecode(asm)); |
| 32 | } |
| 33 | |
| 34 | // asmToBytecode also works for BitAuth ASM |
| 35 | export function bitAuthAsmToScript(asm: string): Script { |
no test coverage detected