@btc-vision/bitcoin 6.4.5 → 6.4.6

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.
@@ -8,7 +8,16 @@ export interface Bech32Result {
8
8
  prefix: string;
9
9
  data: Buffer;
10
10
  }
11
+ export declare const FUTURE_SEGWIT_MAX_SIZE: number;
12
+ export declare const FUTURE_SEGWIT_MIN_SIZE: number;
13
+ export declare const FUTURE_SEGWIT_MAX_VERSION: number;
14
+ export declare const FUTURE_MAX_VERSION: number;
15
+ export declare const FUTURE_OPNET_VERSION: number;
16
+ export declare const FUTURE_SEGWIT_MIN_VERSION: number;
17
+ export declare const FUTURE_SEGWIT_VERSION_DIFF: number;
18
+ export declare const isUnknownSegwitVersion: (output: Buffer) => boolean;
11
19
  export declare function toFutureOPNetAddress(output: Buffer, network: Network): string;
20
+ export declare function _toFutureSegwitAddress(output: Buffer, network: Network): string;
12
21
  export declare function fromBase58Check(address: string): Base58CheckResult;
13
22
  export declare function fromBech32(address: string): Bech32Result;
14
23
  export declare function toBase58Check(hash: Buffer, version: number): string;