(asm: string)
| 33 | |
| 34 | // asmToBytecode also works for BitAuth ASM |
| 35 | export function bitAuthAsmToScript(asm: string): Script { |
| 36 | return asmToScript(asm); |
| 37 | } |
| 38 | |
| 39 | export function scriptToBytecode(script: Script): Uint8Array { |
| 40 | // Convert the script elements to AuthenticationInstructions |
nothing calls this directly
no test coverage detected