@xchainjs/xchain-bitcoin 0.20.2 → 0.20.4
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/lib/index.esm.js +1 -5
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +1 -5
- package/lib/index.js.map +1 -1
- package/package.json +5 -5
package/lib/index.esm.js
CHANGED
|
@@ -64857,7 +64857,6 @@ var Chain;
|
|
|
64857
64857
|
Chain["Cosmos"] = "GAIA";
|
|
64858
64858
|
Chain["BitcoinCash"] = "BCH";
|
|
64859
64859
|
Chain["Litecoin"] = "LTC";
|
|
64860
|
-
Chain["Terra"] = "TERRA";
|
|
64861
64860
|
Chain["Doge"] = "DOGE";
|
|
64862
64861
|
Chain["Avax"] = "AVAX";
|
|
64863
64862
|
})(Chain || (Chain = {}));
|
|
@@ -64869,7 +64868,6 @@ const THORChain = Chain.THORChain;
|
|
|
64869
64868
|
const CosmosChain = Chain.Cosmos;
|
|
64870
64869
|
const BCHChain = Chain.BitcoinCash;
|
|
64871
64870
|
const LTCChain = Chain.Litecoin;
|
|
64872
|
-
const TerraChain = Chain.Terra;
|
|
64873
64871
|
const DOGEChain = Chain.Doge;
|
|
64874
64872
|
const AVAXChain = Chain.Avax;
|
|
64875
64873
|
/**
|
|
@@ -64891,7 +64889,6 @@ const chainToString = Object.assign((chainId) => {
|
|
|
64891
64889
|
[Chain.Ethereum]: 'Ethereum',
|
|
64892
64890
|
[Chain.Binance]: 'Binance Chain',
|
|
64893
64891
|
[Chain.Cosmos]: 'Cosmos',
|
|
64894
|
-
[Chain.Terra]: 'Terra',
|
|
64895
64892
|
[Chain.Doge]: 'Dogecoin',
|
|
64896
64893
|
});
|
|
64897
64894
|
|
|
@@ -65080,7 +65077,6 @@ const AssetRuneERC20Testnet = {
|
|
|
65080
65077
|
synth: false,
|
|
65081
65078
|
};
|
|
65082
65079
|
const AssetAtom = { chain: Chain.Cosmos, symbol: 'ATOM', ticker: 'ATOM', synth: false };
|
|
65083
|
-
const AssetLUNA = { chain: Chain.Terra, symbol: 'LUNA', ticker: 'LUNA', synth: false };
|
|
65084
65080
|
/**
|
|
65085
65081
|
* Currency symbols currently supported
|
|
65086
65082
|
*/
|
|
@@ -85748,7 +85744,7 @@ class Client extends UTXOClient {
|
|
|
85748
85744
|
*
|
|
85749
85745
|
* @param {BitcoinClientParams} params
|
|
85750
85746
|
*/
|
|
85751
|
-
constructor({ network = Network.
|
|
85747
|
+
constructor({ network = Network.Mainnet, feeBounds = {
|
|
85752
85748
|
lower: LOWER_FEE_BOUND,
|
|
85753
85749
|
upper: UPPER_FEE_BOUND,
|
|
85754
85750
|
}, sochainUrl = 'https://sochain.com/api/v2', haskoinUrl = {
|