ecash-lib 4.5.2 → 4.7.0
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/README.md +40 -38
- package/dist/address/address.d.ts +6 -10
- package/dist/address/address.d.ts.map +1 -1
- package/dist/address/address.js +17 -19
- package/dist/address/address.js.map +1 -1
- package/dist/address/legacyaddr.d.ts +1 -1
- package/dist/address/legacyaddr.d.ts.map +1 -1
- package/dist/ecc.js +2 -2
- package/dist/ecc.js.map +1 -1
- package/dist/ffi/ecash_lib_wasm_bg_browser.js +22118 -2600
- package/dist/ffi/ecash_lib_wasm_bg_browser.wasm +0 -0
- package/dist/ffi/ecash_lib_wasm_bg_nodejs.wasm +0 -0
- package/dist/hash.js +7 -8
- package/dist/hash.js.map +1 -1
- package/dist/hdwallet.d.ts +32 -0
- package/dist/hdwallet.d.ts.map +1 -1
- package/dist/hdwallet.js +94 -0
- package/dist/hdwallet.js.map +1 -1
- package/dist/hmac.js +3 -3
- package/dist/hmac.js.map +1 -1
- package/dist/index.js +17 -7
- package/dist/index.js.map +1 -1
- package/dist/initBrowser.js +17 -7
- package/dist/initBrowser.js.map +1 -1
- package/dist/initNodeJs.js +17 -7
- package/dist/initNodeJs.js.map +1 -1
- package/dist/io/bytes.js +2 -2
- package/dist/io/bytes.js.map +1 -1
- package/dist/io/hex.js +4 -5
- package/dist/io/hex.js.map +1 -1
- package/dist/io/str.js +2 -3
- package/dist/io/str.js.map +1 -1
- package/dist/io/varsize.js +2 -3
- package/dist/io/varsize.js.map +1 -1
- package/dist/messages.d.ts.map +1 -1
- package/dist/messages.js.map +1 -1
- package/dist/mnemonic.js +3 -4
- package/dist/mnemonic.js.map +1 -1
- package/dist/op.js +5 -6
- package/dist/op.js.map +1 -1
- package/dist/parse/opreturn.js +4 -5
- package/dist/parse/opreturn.js.map +1 -1
- package/dist/payment/asn1.js +2 -3
- package/dist/payment/asn1.js.map +1 -1
- package/dist/payment/index.js +17 -7
- package/dist/payment/index.js.map +1 -1
- package/dist/pbkdf2.js +1 -2
- package/dist/pbkdf2.js.map +1 -1
- package/dist/publicKeyCrypto.js +2 -2
- package/dist/publicKeyCrypto.js.map +1 -1
- package/dist/sigHashType.js.map +1 -1
- package/dist/test/testRunner.d.ts +0 -1
- package/dist/test/testRunner.d.ts.map +1 -1
- package/dist/test/testRunner.js +17 -7
- package/dist/test/testRunner.js.map +1 -1
- package/dist/token/alp.d.ts +1 -1
- package/dist/token/alp.d.ts.map +1 -1
- package/dist/token/alp.js +5 -5
- package/dist/token/alp.js.map +1 -1
- package/dist/token/alp.parse.js +1 -2
- package/dist/token/alp.parse.js.map +1 -1
- package/dist/token/common.d.ts +4 -4
- package/dist/token/common.d.ts.map +1 -1
- package/dist/token/empp.js +2 -3
- package/dist/token/empp.js.map +1 -1
- package/dist/token/slp.d.ts +1 -1
- package/dist/token/slp.d.ts.map +1 -1
- package/dist/token/slp.js +7 -7
- package/dist/token/slp.js.map +1 -1
- package/dist/token/slp.parse.js +1 -2
- package/dist/token/slp.parse.js.map +1 -1
- package/dist/tx.js +7 -7
- package/dist/tx.js.map +1 -1
- package/dist/txBuilder.d.ts.map +1 -1
- package/dist/txBuilder.js +4 -4
- package/dist/txBuilder.js.map +1 -1
- package/package.json +5 -5
- package/src/address/address.ts +27 -19
- package/src/ffi/ecash_lib_wasm_bg_browser.js +22118 -2600
- package/src/ffi/ecash_lib_wasm_bg_browser.wasm +0 -0
- package/src/ffi/ecash_lib_wasm_bg_nodejs.wasm +0 -0
- package/src/hdwallet.ts +122 -1
- package/src/messages.ts +4 -4
- package/src/sigHashType.ts +2 -2
package/README.md
CHANGED
|
@@ -2,13 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
Library for [eCash](https://e.cash) transaction building.
|
|
4
4
|
|
|
5
|
-
-
|
|
6
|
-
-
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
-
|
|
10
|
-
-
|
|
11
|
-
-
|
|
5
|
+
- Compatible: Works on the browser using webpack, on NodeJS, jest etc.
|
|
6
|
+
- Fast: Accelerated using the highly optimized secp256k1 library compiled to WebAssembly
|
|
7
|
+
- Simple to use: Describe the tx to build in one TxBuilder object, and build the tx with just one `sign` call
|
|
8
|
+
- SLP/ALP enabled: Functions to build the SLP/ALP eMPP scripts
|
|
9
|
+
- Flexible: The "Signatory" mechanism can accommodate anything from simple wallet transfers to complex Script covenants, e.g. eCash Agora
|
|
10
|
+
- Schnorr: eCash lib supports Schnorr and ECDSA signatures
|
|
11
|
+
- Precise leftover ("change") computation: The tx size estimator will be exact for Schnorr signatures and very close for ECDSA signatures, even for complex scripts
|
|
12
12
|
|
|
13
13
|
## Usage
|
|
14
14
|
|
|
@@ -74,34 +74,36 @@ console.log(toHex(rawTx));
|
|
|
74
74
|
|
|
75
75
|
## Changelog
|
|
76
76
|
|
|
77
|
-
-
|
|
78
|
-
-
|
|
79
|
-
-
|
|
80
|
-
-
|
|
81
|
-
-
|
|
82
|
-
-
|
|
83
|
-
-
|
|
84
|
-
-
|
|
85
|
-
-
|
|
86
|
-
-
|
|
87
|
-
-
|
|
88
|
-
-
|
|
89
|
-
-
|
|
90
|
-
-
|
|
91
|
-
-
|
|
92
|
-
-
|
|
93
|
-
-
|
|
94
|
-
-
|
|
95
|
-
-
|
|
96
|
-
-
|
|
97
|
-
-
|
|
98
|
-
-
|
|
99
|
-
-
|
|
100
|
-
-
|
|
101
|
-
-
|
|
102
|
-
-
|
|
103
|
-
-
|
|
104
|
-
-
|
|
105
|
-
-
|
|
106
|
-
-
|
|
107
|
-
-
|
|
77
|
+
- 0.1.1 - Validation that feePerKb is an integer
|
|
78
|
+
- 0.1.2 - Upgrade dependencies [D16373](https://reviews.bitcoinabc.org/D16373)
|
|
79
|
+
- 0.1.3 - Export `slpAmount` function [D16379](https://reviews.bitcoinabc.org/D16379)
|
|
80
|
+
- 0.2.0 - Add `Script.fromAddress` method to convert cashaddr addresses to `Script`
|
|
81
|
+
- 0.2.1 - Fix fee estimation for signatories that depend on tx outputs [D16673](https://reviews.bitcoinabc.org/D16673)
|
|
82
|
+
- 1.0.0 - **(Breaking change)** Modify `GenesisInfo` so that `auth` and `data` types match [D17194](https://reviews.bitcoinabc.org/D17194)
|
|
83
|
+
- 1.0.1 - Include `ecashaddrjs` and `chronik-client` installations from `npmjs` instead of local, to prevent need for peer dependencies [D17215](https://reviews.bitcoinabc.org/D17215)
|
|
84
|
+
- 1.1.0 - Add support for the original pre-UAHF Bitcoin signatures, so we can sign transactions for other blockchains like BTC/DOGE/... [D17255](https://reviews.bitcoinabc.org/D17255)
|
|
85
|
+
- 1.2.0 - Add `Address` class for cashaddr and legacy addresses. [D17269](https://reviews.bitcoinabc.org/D17269)
|
|
86
|
+
- 1.2.1 - Patch type check causing txBuilder txs using change to fail in NodeJS environments [D17461](https://reviews.bitcoinabc.org/D17461)
|
|
87
|
+
- 1.3.0 - Add `toHex()` method to `Script` to allow simple conversion to hex string [D17527](https://reviews.bitcoinabc.org/D17527)
|
|
88
|
+
- 1.4.0 - Add `HdNode`, `entropyToMnemonic`, `mnemonicToEntropy` and `mnemonicToSeed` to complete wallet functionality [D17619](https://reviews.bitcoinabc.org/D17619)
|
|
89
|
+
- 1.4.1 - Patch import in `mnemonic.ts` [D17621](https://reviews.bitcoinabc.org/D17621)
|
|
90
|
+
- 1.5.0 - Support custom WASM URL and module [D17622](https://reviews.bitcoinabc.org/D17622)
|
|
91
|
+
- 1.5.1 - `Address.withPrefix()` returns same prefix if unchanged (instead of throwing an error) [D17623](https://reviews.bitcoinabc.org/D17623)
|
|
92
|
+
- 2.0.0 - Remove `initWasm`, auto-load the WebAssembly instead. Remove unneeded `ecc` parameters, esp. in `TxBuilder.sign` and `HdNode.fromSeed` [D17639](https://reviews.bitcoinabc.org/D17639) [D17640](https://reviews.bitcoinabc.org/D17640)
|
|
93
|
+
- 2.1.0 - Add `signRecoverable` and `recoverSig` to `Ecc` [D17667](https://reviews.bitcoinabc.org/D17667)
|
|
94
|
+
- 3.0.0 - Improve types and shapes in line with chronik proto updates [D17650](https://reviews.bitcoinabc.org/D17650)
|
|
95
|
+
- 3.1.0 - Add methods for signing and verifying messages [D17778](https://reviews.bitcoinabc.org/D17778)
|
|
96
|
+
- 3.2.0 - Add method for parsing pushes from an EMPP OP_RETURN [D18057](https://reviews.bitcoinabc.org/D18057)
|
|
97
|
+
- 4.0.0 - Add constants and types to support `ecash-wallet` [D17822](https://reviews.bitcoinabc.org/D17822)
|
|
98
|
+
- 4.1.0 - Add Tx deserialization methods [D18393](https://reviews.bitcoinabc.org/D18393)
|
|
99
|
+
- 4.2.0 - Add Tx.txid() method to compute the TxId of a transaction [D18394](https://reviews.bitcoinabc.org/D18394)
|
|
100
|
+
- 4.3.0 - Export a Tx.toHex() method [D18396](https://reviews.bitcoinabc.org/D18396)
|
|
101
|
+
- 4.3.1 - Modify union type of payment outputs to include ecash-wallet template OP_RETURN [D18403](https://reviews.bitcoinabc.org/D18403)
|
|
102
|
+
- 4.3.2 - Export additional token types [D18548](https://reviews.bitcoinabc.org/D18548)
|
|
103
|
+
- 4.3.3 - Modify payment.GenesisAction to support minting NFTs (SLP_TOKEN_TYPE_NFT1_CHILD genesis txs) [D18557](https://reviews.bitcoinabc.org/D18557)
|
|
104
|
+
- 4.4.0 - Add `parse` methods to support parsing of OP_RETURN outputScript strings as returned by chronik-client [D18659](https://reviews.bitcoinabc.org/D18659)
|
|
105
|
+
- 4.5.0 - Add `fromTx` method to support creating a `TxBuilder` from a `Tx`, useful for creating a `TxBuilder` from a serialized partially-signed `Tx` in order to add postage and broadcast [D18838](https://reviews.bitcoinabc.org/D18838)
|
|
106
|
+
- 4.5.1 - Add updated `testRunner` to support CI builds of monorepo apps that rely on this from the published version, e.g. `ecash-agora` [D18844](https://reviews.bitcoinabc.org/D18844)
|
|
107
|
+
- 4.5.2 - Export constants used in `ecash-wallet` to calculate chained XEC-only txs for txs that would otherwise exceed `MAX_TX_SERSIZE`. There is no change in behavior. [D18918](https://reviews.bitcoinabc.org/D18918)
|
|
108
|
+
- 4.6.0 - Support for `xpub` in `hdwallet.ts` [D19406](https://reviews.bitcoinabc.org/D19406)
|
|
109
|
+
- 4.7.0 - Support for custom prefix in all static Address constructors [D19441](https://reviews.bitcoinabc.org/D19441)
|
|
@@ -73,15 +73,14 @@ export declare class Address implements AddressInterface {
|
|
|
73
73
|
private constructor();
|
|
74
74
|
/**
|
|
75
75
|
* Create a new p2pkh Address from hash
|
|
76
|
-
* cashaddr encoding
|
|
76
|
+
* cashaddr encoding
|
|
77
77
|
*/
|
|
78
|
-
static p2pkh: (hash: string | Uint8Array) => Address;
|
|
78
|
+
static p2pkh: (hash: string | Uint8Array, prefix?: string) => Address;
|
|
79
79
|
/**
|
|
80
80
|
* Create a new p2sh Address from hash
|
|
81
81
|
* cashaddr encoding
|
|
82
|
-
* ecash: prefix
|
|
83
82
|
*/
|
|
84
|
-
static p2sh: (hash: string | Uint8Array) => Address;
|
|
83
|
+
static p2sh: (hash: string | Uint8Array, prefix?: string) => Address;
|
|
85
84
|
/**
|
|
86
85
|
* Create a new Address from a given address string
|
|
87
86
|
* address must be valid legacy or cashaddr address
|
|
@@ -94,24 +93,21 @@ export declare class Address implements AddressInterface {
|
|
|
94
93
|
static fromCashAddress: (address: string) => Address;
|
|
95
94
|
/**
|
|
96
95
|
* Create a new Address from legacy address
|
|
97
|
-
*
|
|
98
|
-
* type and hash from legacy address
|
|
96
|
+
* prefix, type and hash from legacy address
|
|
99
97
|
*/
|
|
100
98
|
static fromLegacyAddress: (legacy: string) => Address;
|
|
101
99
|
/**
|
|
102
100
|
* Create a new Address from an outputScript as Script
|
|
103
101
|
* type and hash from outputScript
|
|
104
102
|
* cashaddr encoding
|
|
105
|
-
* ecash: prefix
|
|
106
103
|
*/
|
|
107
|
-
static fromScript: (script: Script) => Address;
|
|
104
|
+
static fromScript: (script: Script, prefix?: string) => Address;
|
|
108
105
|
/**
|
|
109
106
|
* Create a new Address from an outputScript as hex string
|
|
110
107
|
* type and hash from outputScript
|
|
111
108
|
* cashaddr encoding
|
|
112
|
-
* ecash: prefix
|
|
113
109
|
*/
|
|
114
|
-
static fromScriptHex: (scriptHex: string) => Address;
|
|
110
|
+
static fromScriptHex: (scriptHex: string, prefix?: string) => Address;
|
|
115
111
|
toString: () => string;
|
|
116
112
|
legacy: () => Address;
|
|
117
113
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"address.d.ts","sourceRoot":"","sources":["../../src/address/address.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAEnC,MAAM,MAAM,WAAW,GAAG,OAAO,GAAG,MAAM,CAAC;AAC3C,MAAM,MAAM,eAAe,GAAG,UAAU,GAAG,QAAQ,CAAC;AAEpD,eAAO,MAAM,sBAAsB,UAA0B,CAAC;AAE9D;;;;;;;;GAQG;AACH,eAAO,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"address.d.ts","sourceRoot":"","sources":["../../src/address/address.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAE,MAAM,EAAE,MAAM,WAAW,CAAC;AAEnC,MAAM,MAAM,WAAW,GAAG,OAAO,GAAG,MAAM,CAAC;AAC3C,MAAM,MAAM,eAAe,GAAG,UAAU,GAAG,QAAQ,CAAC;AAEpD,eAAO,MAAM,sBAAsB,UAA0B,CAAC;AAE9D;;;;;;;;GAQG;AACH,eAAO,MAAM,eAAe,GAAI,aAAa,MAAM,KAAG,MA4CrD,CAAC;AAEF,UAAU,gBAAgB;IACtB;;;;OAIG;IACH,IAAI,EAAE,MAAM,CAAC;IACb;;;;OAIG;IACH,IAAI,EAAE,WAAW,CAAC;IAClB;;;;;OAKG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,QAAQ,EAAE,eAAe,CAAC;CAC7B;AAaD,eAAO,MAAM,cAAc,UAAU,CAAC;AAEtC;;;;;;;;;;;;;;;;;GAiBG;AACH,qBAAa,OAAQ,YAAW,gBAAgB;IAC5C,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,WAAW,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,eAAe,CAAC;IAE1B,OAAO;IAWP;;;OAGG;IACH,MAAM,CAAC,KAAK,GACR,MAAM,MAAM,GAAG,UAAU,EACzB,SAAQ,MAAuB,aAQ5B;IAEP;;;OAGG;IACH,MAAM,CAAC,IAAI,GACP,MAAM,MAAM,GAAG,UAAU,EACzB,SAAQ,MAAuB,aAQ5B;IAEP;;;OAGG;IACH,MAAM,CAAC,KAAK,GAAI,SAAS,MAAM,aAsB7B;IAEF;;;OAGG;IACH,MAAM,CAAC,eAAe,GAAI,SAAS,MAAM,aASvC;IAEF;;;OAGG;IACH,MAAM,CAAC,iBAAiB,GAAI,QAAQ,MAAM,aAaxC;IAEF;;;;OAIG;IACH,MAAM,CAAC,UAAU,GAAI,QAAQ,MAAM,EAAE,SAAQ,MAAuB,aAGlE;IAEF;;;;OAIG;IACH,MAAM,CAAC,aAAa,GAChB,WAAW,MAAM,EACjB,SAAQ,MAAuB,aAcjC;IAEF,QAAQ,eAEN;IAEF,MAAM,gBAMC;IAEP;;;OAGG;IACH,IAAI,gBAgBG;IAEP;;;OAGG;IACH,UAAU,GAAI,QAAQ,MAAM,aAgB1B;IAEF,QAAQ,QAAO,MAAM,CAInB;IAEF,WAAW,QAAO,MAAM,CAEtB;CACL"}
|
package/dist/address/address.js
CHANGED
|
@@ -143,25 +143,24 @@ class Address {
|
|
|
143
143
|
exports.Address = Address;
|
|
144
144
|
/**
|
|
145
145
|
* Create a new p2pkh Address from hash
|
|
146
|
-
* cashaddr encoding
|
|
146
|
+
* cashaddr encoding
|
|
147
147
|
*/
|
|
148
|
-
Address.p2pkh = (hash) => new Address({
|
|
148
|
+
Address.p2pkh = (hash, prefix = exports.DEFAULT_PREFIX) => new Address({
|
|
149
149
|
type: 'p2pkh',
|
|
150
150
|
hash: hash instanceof Uint8Array ? (0, hex_1.toHex)(hash) : hash,
|
|
151
|
-
prefix:
|
|
152
|
-
address: (0, ecashaddrjs_1.encodeCashAddress)(
|
|
151
|
+
prefix: prefix,
|
|
152
|
+
address: (0, ecashaddrjs_1.encodeCashAddress)(prefix, 'p2pkh', hash),
|
|
153
153
|
encoding: 'cashaddr',
|
|
154
154
|
});
|
|
155
155
|
/**
|
|
156
156
|
* Create a new p2sh Address from hash
|
|
157
157
|
* cashaddr encoding
|
|
158
|
-
* ecash: prefix
|
|
159
158
|
*/
|
|
160
|
-
Address.p2sh = (hash) => new Address({
|
|
159
|
+
Address.p2sh = (hash, prefix = exports.DEFAULT_PREFIX) => new Address({
|
|
161
160
|
type: 'p2sh',
|
|
162
161
|
hash: hash instanceof Uint8Array ? (0, hex_1.toHex)(hash) : hash,
|
|
163
|
-
prefix:
|
|
164
|
-
address: (0, ecashaddrjs_1.encodeCashAddress)(
|
|
162
|
+
prefix: prefix,
|
|
163
|
+
address: (0, ecashaddrjs_1.encodeCashAddress)(prefix, 'p2sh', hash),
|
|
165
164
|
encoding: 'cashaddr',
|
|
166
165
|
});
|
|
167
166
|
/**
|
|
@@ -208,40 +207,39 @@ Address.fromCashAddress = (address) => {
|
|
|
208
207
|
};
|
|
209
208
|
/**
|
|
210
209
|
* Create a new Address from legacy address
|
|
211
|
-
*
|
|
212
|
-
* type and hash from legacy address
|
|
210
|
+
* prefix, type and hash from legacy address
|
|
213
211
|
*/
|
|
214
212
|
Address.fromLegacyAddress = (legacy) => {
|
|
215
213
|
// Determine addr params from legacy address
|
|
216
|
-
const { type, hash } = (0, legacyaddr_1.decodeLegacyAddress)(legacy);
|
|
214
|
+
const { type, hash, network } = (0, legacyaddr_1.decodeLegacyAddress)(legacy);
|
|
217
215
|
return new Address({
|
|
218
216
|
type,
|
|
219
217
|
hash,
|
|
220
218
|
address: legacy,
|
|
221
219
|
encoding: 'legacy',
|
|
220
|
+
prefix: network === 'testnet'
|
|
221
|
+
? exports.ECASH_PREFIXES_TESTNET[0]
|
|
222
|
+
: exports.DEFAULT_PREFIX,
|
|
222
223
|
});
|
|
223
224
|
};
|
|
224
225
|
/**
|
|
225
226
|
* Create a new Address from an outputScript as Script
|
|
226
227
|
* type and hash from outputScript
|
|
227
228
|
* cashaddr encoding
|
|
228
|
-
* ecash: prefix
|
|
229
229
|
*/
|
|
230
|
-
Address.fromScript = (script) => {
|
|
230
|
+
Address.fromScript = (script, prefix = exports.DEFAULT_PREFIX) => {
|
|
231
231
|
const scriptHex = (0, hex_1.toHex)(script.bytecode);
|
|
232
|
-
return Address.fromScriptHex(scriptHex);
|
|
232
|
+
return Address.fromScriptHex(scriptHex, prefix);
|
|
233
233
|
};
|
|
234
234
|
/**
|
|
235
235
|
* Create a new Address from an outputScript as hex string
|
|
236
236
|
* type and hash from outputScript
|
|
237
237
|
* cashaddr encoding
|
|
238
|
-
* ecash: prefix
|
|
239
238
|
*/
|
|
240
|
-
Address.fromScriptHex = (scriptHex) => {
|
|
239
|
+
Address.fromScriptHex = (scriptHex, prefix = exports.DEFAULT_PREFIX) => {
|
|
241
240
|
const { type, hash } = (0, ecashaddrjs_1.getTypeAndHashFromOutputScript)(scriptHex);
|
|
242
|
-
// Default cashaddr encoding
|
|
243
|
-
const address = (0, ecashaddrjs_1.encodeCashAddress)(
|
|
244
|
-
const prefix = exports.DEFAULT_PREFIX;
|
|
241
|
+
// Default cashaddr encoding
|
|
242
|
+
const address = (0, ecashaddrjs_1.encodeCashAddress)(prefix, type, hash);
|
|
245
243
|
return new Address({
|
|
246
244
|
type,
|
|
247
245
|
hash,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"address.js","sourceRoot":"","sources":["../../src/address/address.ts"],"names":[],"mappings":";;;AAAA,4CAA4C;AAC5C,mEAAmE;AACnE,sEAAsE;AACtE,mCAA2C;AAC3C,6CAMqB;AACrB,6CAIsB;AACtB,sCAAmC;AAKtB,QAAA,sBAAsB,GAAG,CAAC,QAAQ,EAAE,WAAW,CAAC,CAAC;AAE9D;;;;;;;;GAQG;AACI,MAAM,eAAe,GAAG,CAAC,WAAmB,EAAU,EAAE;IAC3D,IAAI,CAAC;QACD,sDAAsD;QACtD,IAAA,gCAAmB,EAAC,WAAW,CAAC,CAAC;QACjC,OAAO,WAAW,CAAC;IACvB,CAAC;IAAC,MAAM,CAAC;QACL,gGAAgG;QAChG,+BAA+B;IACnC,CAAC;IACD,MAAM,EAAE,MAAM,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,IAAA,+BAAiB,EAAC,WAAW,CAAC,CAAC;IAE9D,MAAM,SAAS,GAAG,8BAAsB,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;IAE1D,6CAA6C;IAC7C,IAAI,WAAmB,CAAC;IACxB,QAAQ,IAAI,EAAE,CAAC;QACX,KAAK,OAAO;YACR,WAAW,GAAG,SAAS;gBACnB,CAAC,CAAC,iCAAoB,CAAC,MAAM,CAAC,OAAO,CAAC,KAAK;gBAC3C,CAAC,CAAC,iCAAoB,CAAC,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC;YAChD,MAAM;QACV,KAAK,MAAM;YACP,WAAW,GAAG,SAAS;gBACnB,CAAC,CAAC,iCAAoB,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI;gBAC1C,CAAC,CAAC,iCAAoB,CAAC,MAAM,CAAC,OAAO,CAAC,IAAI,CAAC;YAC/C,MAAM;QACV;YACI,MAAM,IAAI,KAAK,CAAC,4BAA4B,GAAG,IAAI,CAAC,CAAC;IAC7D,CAAC;IAED,6BAA6B;IAC7B,MAAM,SAAS,GAAG,IAAA,aAAO,EAAC,IAAI,CAAC,CAAC;IAEhC,2CAA2C;IAC3C,MAAM,UAAU,GAAG,IAAI,UAAU,CAAC,CAAC,GAAG,SAAS,CAAC,MAAM,CAAC,CAAC;IAExD,uBAAuB;IACvB,UAAU,CAAC,CAAC,CAAC,GAAG,WAAW,CAAC;IAE5B,eAAe;IACf,UAAU,CAAC,GAAG,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC;IAE7B,wBAAwB;IACxB,OAAO,IAAA,8BAAiB,EAAC,UAAU,CAAC,CAAC;AACzC,CAAC,CAAC;AA5CW,QAAA,eAAe,mBA4C1B;AA+CW,QAAA,cAAc,GAAG,OAAO,CAAC;AAEtC;;;;;;;;;;;;;;;;;GAiBG;AACH,MAAa,OAAO;IAOhB,YAAoB,MAAgC;
|
|
1
|
+
{"version":3,"file":"address.js","sourceRoot":"","sources":["../../src/address/address.ts"],"names":[],"mappings":"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"}
|
|
@@ -26,6 +26,6 @@ export declare const decodeLegacyAddress: (address: string) => DecodedLegacyAddr
|
|
|
26
26
|
* Encode a legacy address given type and hash
|
|
27
27
|
* For now, this is a stub method that supports only BTC p2pkh and p2sh
|
|
28
28
|
*/
|
|
29
|
-
export declare const encodeLegacyAddress: (hash: Uint8Array, type:
|
|
29
|
+
export declare const encodeLegacyAddress: (hash: Uint8Array, type: "p2pkh" | "p2sh", network?: NetworkType) => string;
|
|
30
30
|
export {};
|
|
31
31
|
//# sourceMappingURL=legacyaddr.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"legacyaddr.d.ts","sourceRoot":"","sources":["../../src/address/legacyaddr.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAGxC;;GAEG;AAEH,eAAO,MAAM,iBAAiB,
|
|
1
|
+
{"version":3,"file":"legacyaddr.d.ts","sourceRoot":"","sources":["../../src/address/legacyaddr.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,WAAW,EAAE,MAAM,WAAW,CAAC;AAGxC;;GAEG;AAEH,eAAO,MAAM,iBAAiB,GAAI,MAAM,UAAU,KAAG,MAMpD,CAAC;AAEF,eAAO,MAAM,iBAAiB,GAAI,KAAK,MAAM,KAAG,UAiB/C,CAAC;AAEF,KAAK,WAAW,GAAG,SAAS,GAAG,SAAS,CAAC;AACzC,MAAM,WAAW,oBAAoB;IACjC,IAAI,EAAE,WAAW,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,WAAW,CAAC;CACxB;AAKD,UAAU,mBAAmB;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;CAChB;AACD,UAAU,oBAAoB;IAC1B,MAAM,EAAE;QACJ,OAAO,EAAE,mBAAmB,CAAC;QAC7B,OAAO,EAAE,mBAAmB,CAAC;KAChC,CAAC;CACL;AACD,eAAO,MAAM,oBAAoB,EAAE,oBAKlC,CAAC;AAGF,eAAO,MAAM,mBAAmB,GAAI,SAAS,MAAM,KAAG,oBA4CrD,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,mBAAmB,GAC5B,MAAM,UAAU,EAChB,MAAM,OAAO,GAAG,MAAM,EACtB,UAAS,WAAuB,WAOnC,CAAC"}
|
package/dist/ecc.js
CHANGED
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
// Distributed under the MIT software license, see the accompanying
|
|
4
4
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.Ecc = exports.
|
|
6
|
+
exports.Ecc = exports.EccDummy = void 0;
|
|
7
|
+
exports.__setEcc = __setEcc;
|
|
7
8
|
/** Dummy Ecc impl that always returns 0, useful for measuring tx size */
|
|
8
9
|
class EccDummy {
|
|
9
10
|
derivePubkey(_seckey) {
|
|
@@ -41,7 +42,6 @@ const ECC = {};
|
|
|
41
42
|
function __setEcc(ecc) {
|
|
42
43
|
ECC.ecc = ecc;
|
|
43
44
|
}
|
|
44
|
-
exports.__setEcc = __setEcc;
|
|
45
45
|
// eslint-disable-next-line @typescript-eslint/no-unsafe-declaration-merging
|
|
46
46
|
class Ecc {
|
|
47
47
|
/** Derive a public key from secret key. */
|
package/dist/ecc.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ecc.js","sourceRoot":"","sources":["../src/ecc.ts"],"names":[],"mappings":";AAAA,4CAA4C;AAC5C,mEAAmE;AACnE,sEAAsE;;;
|
|
1
|
+
{"version":3,"file":"ecc.js","sourceRoot":"","sources":["../src/ecc.ts"],"names":[],"mappings":";AAAA,4CAA4C;AAC5C,mEAAmE;AACnE,sEAAsE;;;AA8FtE,4BAEC;AAhDD,yEAAyE;AACzE,MAAa,QAAQ;IACjB,YAAY,CAAC,OAAmB;QAC5B,OAAO,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC;IAC9B,CAAC;IAED,SAAS,CAAC,OAAmB,EAAE,IAAgB;QAC3C,OAAO,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC;IAC9B,CAAC;IAED,WAAW,CAAC,IAAgB,EAAE,IAAgB,EAAE,GAAe,IAAS,CAAC;IAEzE,WAAW,CAAC,OAAmB,EAAE,IAAgB;QAC7C,OAAO,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC;IAC9B,CAAC;IAED,aAAa,CAAC,IAAgB,EAAE,IAAgB,EAAE,GAAe,IAAS,CAAC;IAE3E,aAAa,CAAC,OAAmB;QAC7B,OAAO,KAAK,CAAC;IACjB,CAAC;IAED,SAAS,CAAC,EAAc,EAAE,EAAc;QACpC,OAAO,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC;IAC9B,CAAC;IAED,SAAS,CAAC,EAAc,EAAE,EAAc;QACpC,OAAO,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC;IAC9B,CAAC;IAED,eAAe,CAAC,OAAmB,EAAE,IAAgB;QACjD,OAAO,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC;IAC9B,CAAC;IAED,UAAU,CAAC,IAAgB,EAAE,IAAgB;QACzC,OAAO,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC;IAC9B,CAAC;IAED,UAAU,CAAC,GAAe;QACtB,OAAO,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC;IAC9B,CAAC;CACJ;AAxCD,4BAwCC;AAGD,MAAM,GAAG,GAAqB,EAAE,CAAC;AAEjC,SAAgB,QAAQ,CAAC,GAAW;IAChC,GAAG,CAAC,GAAG,GAAG,GAAG,CAAC;AAClB,CAAC;AAED,4EAA4E;AAC5E,MAAa,GAAG;IACZ,2CAA2C;IAC3C,YAAY,CAAC,MAAkB;QAC3B,OAAO,GAAG,CAAC,GAAI,CAAC,YAAY,CAAC,MAAM,CAAC,CAAC;IACzC,CAAC;IAED,8DAA8D;IAC9D,SAAS,CAAC,MAAkB,EAAE,GAAe;QACzC,OAAO,GAAG,CAAC,GAAI,CAAC,SAAS,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC3C,CAAC;IAED;;;QAGI;IACJ,WAAW,CAAC,GAAe,EAAE,GAAe,EAAE,EAAc;QACxD,GAAG,CAAC,GAAG,EAAE,WAAW,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC;IACvC,CAAC;IAED,+DAA+D;IAC/D,WAAW,CAAC,MAAkB,EAAE,GAAe;QAC3C,OAAO,GAAG,CAAC,GAAI,CAAC,WAAW,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC7C,CAAC;IAED;;;QAGI;IACJ,aAAa,CAAC,GAAe,EAAE,GAAe,EAAE,EAAc;QAC1D,GAAG,CAAC,GAAG,EAAE,aAAa,CAAC,GAAG,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC;IACzC,CAAC;IAED;;;OAGG;IACH,aAAa,CAAC,MAAkB;QAC5B,OAAO,GAAG,CAAC,GAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;IAC1C,CAAC;IAED,mCAAmC;IACnC,SAAS,CAAC,CAAa,EAAE,CAAa;QAClC,OAAO,GAAG,CAAC,GAAI,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;IACpC,CAAC;IAED,gDAAgD;IAChD,SAAS,CAAC,CAAa,EAAE,CAAa;QAClC,OAAO,GAAG,CAAC,GAAI,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;IACpC,CAAC;IAED,eAAe,CAAC,MAAkB,EAAE,GAAe;QAC/C,OAAO,GAAG,CAAC,GAAI,CAAC,eAAe,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IACjD,CAAC;IAED,UAAU,CAAC,GAAe,EAAE,GAAe;QACvC,OAAO,GAAG,CAAC,GAAI,CAAC,UAAU,CAAC,GAAG,EAAE,GAAG,CAAC,CAAC;IACzC,CAAC;IAED,UAAU,CAAC,EAAc;QACrB,IAAI,EAAE,CAAC,CAAC,CAAC,IAAI,IAAI,EAAE,CAAC;YAChB,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;QAChE,CAAC;QACD,MAAM,YAAY,GAAG,IAAI,UAAU,CAAC,EAAE,CAAC,CAAC;QACxC,YAAY,CAAC,CAAC,CAAC,GAAG,IAAI,GAAG,CAAC,EAAE,CAAC,EAAE,CAAC,GAAG,IAAI,CAAC,CAAC;QACzC,YAAY,CAAC,GAAG,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;QACrC,OAAO,YAAY,CAAC;IACxB,CAAC;CACJ;AAnED,kBAmEC"}
|