@vbyte/btc-dev 1.1.4 → 1.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vbyte/btc-dev",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "Batteries-included toolset for plebian bitcoin development",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -1,4 +1,3 @@
1
- import { OPCODE_MAP } from './words.js'
2
1
  import { encode_script } from './encode.js'
3
2
 
4
3
  import {
@@ -7,22 +6,15 @@ import {
7
6
  parse_script
8
7
  } from './decode.js'
9
8
 
10
- import {
11
- parse_script_pubkeys,
12
- prefix_script_size
13
- } from './util.js'
14
-
15
9
  export * from './decode.js'
16
10
  export * from './encode.js'
11
+ export * from './lock.js'
17
12
  export * from './util.js'
18
13
  export * from './words.js'
19
14
 
20
15
  export namespace ScriptUtil {
21
- export const prefix_size = prefix_script_size
22
- export const parse = parse_script
23
- export const decode = decode_script
24
- export const encode = encode_script
25
- export const is_valid = is_valid_script
26
- export const get_pubkeys = parse_script_pubkeys
27
- export const OPCODES = OPCODE_MAP
16
+ export const parse = parse_script
17
+ export const decode = decode_script
18
+ export const encode = encode_script
19
+ export const is_valid = is_valid_script
28
20
  }