@xchainjs/xchain-doge 0.5.2 → 0.5.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
|
@@ -64837,7 +64837,6 @@ var Chain;
|
|
|
64837
64837
|
Chain["Cosmos"] = "GAIA";
|
|
64838
64838
|
Chain["BitcoinCash"] = "BCH";
|
|
64839
64839
|
Chain["Litecoin"] = "LTC";
|
|
64840
|
-
Chain["Terra"] = "TERRA";
|
|
64841
64840
|
Chain["Doge"] = "DOGE";
|
|
64842
64841
|
Chain["Avax"] = "AVAX";
|
|
64843
64842
|
})(Chain || (Chain = {}));
|
|
@@ -64849,7 +64848,6 @@ const THORChain = Chain.THORChain;
|
|
|
64849
64848
|
const CosmosChain = Chain.Cosmos;
|
|
64850
64849
|
const BCHChain = Chain.BitcoinCash;
|
|
64851
64850
|
const LTCChain = Chain.Litecoin;
|
|
64852
|
-
const TerraChain = Chain.Terra;
|
|
64853
64851
|
const DOGEChain = Chain.Doge;
|
|
64854
64852
|
const AVAXChain = Chain.Avax;
|
|
64855
64853
|
/**
|
|
@@ -64871,7 +64869,6 @@ const chainToString = Object.assign((chainId) => {
|
|
|
64871
64869
|
[Chain.Ethereum]: 'Ethereum',
|
|
64872
64870
|
[Chain.Binance]: 'Binance Chain',
|
|
64873
64871
|
[Chain.Cosmos]: 'Cosmos',
|
|
64874
|
-
[Chain.Terra]: 'Terra',
|
|
64875
64872
|
[Chain.Doge]: 'Dogecoin',
|
|
64876
64873
|
});
|
|
64877
64874
|
|
|
@@ -65060,7 +65057,6 @@ const AssetRuneERC20Testnet = {
|
|
|
65060
65057
|
synth: false,
|
|
65061
65058
|
};
|
|
65062
65059
|
const AssetAtom = { chain: Chain.Cosmos, symbol: 'ATOM', ticker: 'ATOM', synth: false };
|
|
65063
|
-
const AssetLUNA = { chain: Chain.Terra, symbol: 'LUNA', ticker: 'LUNA', synth: false };
|
|
65064
65060
|
/**
|
|
65065
65061
|
* Currency symbols currently supported
|
|
65066
65062
|
*/
|
|
@@ -86808,7 +86804,7 @@ class Client extends UTXOClient {
|
|
|
86808
86804
|
*
|
|
86809
86805
|
* @param {DogecoinClientParams} params
|
|
86810
86806
|
*/
|
|
86811
|
-
constructor({ network = Network.
|
|
86807
|
+
constructor({ network = Network.Mainnet, feeBounds = {
|
|
86812
86808
|
lower: LOWER_FEE_BOUND,
|
|
86813
86809
|
upper: UPPER_FEE_BOUND,
|
|
86814
86810
|
}, sochainUrl = 'https://sochain.com/api/v2', blockcypherUrl = 'https://api.blockcypher.com/v1', phrase, rootDerivationPaths = {
|