(xOnlyPubkey: Buffer)
| 14 | |
| 15 | // Construct NOTE script without embedded data |
| 16 | export function buildNoteScript(xOnlyPubkey: Buffer) { |
| 17 | return buildNoteScriptV2(xOnlyPubkey, true); |
| 18 | } |
| 19 | |
| 20 | // Construct script that only contains the data section |
| 21 | export function buildDataScript( |
no test coverage detected