@xchainjs/xchain-doge 0.5.6 → 0.5.7
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/CHANGELOG.md +99 -0
- package/lib/const.d.ts +2 -2
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
# v.0.5.7 (2023-01-19)
|
|
2
|
+
|
|
3
|
+
## Update
|
|
4
|
+
|
|
5
|
+
- Type safety `DOGEChain`
|
|
6
|
+
|
|
7
|
+
# v.0.5.6 (2022-12-27)
|
|
8
|
+
|
|
9
|
+
## Add
|
|
10
|
+
|
|
11
|
+
- Add `AssetDOGE` and `DOGEChain` definition
|
|
12
|
+
|
|
13
|
+
## Update
|
|
14
|
+
|
|
15
|
+
- Bump `xchain-client@13.5.0`
|
|
16
|
+
|
|
17
|
+
# v.0.5.5 (2022-11-24)
|
|
18
|
+
|
|
19
|
+
## Update
|
|
20
|
+
|
|
21
|
+
- Bumped dependencies
|
|
22
|
+
|
|
23
|
+
# v.0.5.4 (2022-10-14)
|
|
24
|
+
|
|
25
|
+
## Update
|
|
26
|
+
|
|
27
|
+
- Set Default network to `Network.Mainnet`
|
|
28
|
+
|
|
29
|
+
# v.0.5.3 (2022-10-04)
|
|
30
|
+
|
|
31
|
+
## Update
|
|
32
|
+
|
|
33
|
+
- Bumped `xchain-utils` & `xchain-client`
|
|
34
|
+
|
|
35
|
+
# v.0.5.2 (2022-09-29)
|
|
36
|
+
|
|
37
|
+
## Update
|
|
38
|
+
|
|
39
|
+
- bumped deps on xchain-utils & xchain-client
|
|
40
|
+
|
|
41
|
+
# v.0.5.1 (2022-09-27)
|
|
42
|
+
|
|
43
|
+
## Fix
|
|
44
|
+
|
|
45
|
+
- Increase value for `setMaximumFeeRate` to reflect current fees
|
|
46
|
+
|
|
47
|
+
# v.0.5.0 (2022-09-05)
|
|
48
|
+
|
|
49
|
+
## Update
|
|
50
|
+
|
|
51
|
+
- bumped deps on xchain-utils & xchain-client
|
|
52
|
+
|
|
53
|
+
# v.0.3.0 (2022-07-21)
|
|
54
|
+
|
|
55
|
+
- client.deposit() removed, all thorchain deposits were moved to xchain-thorchain-amm
|
|
56
|
+
|
|
57
|
+
# v.0.2.1 (2022-05-05)
|
|
58
|
+
|
|
59
|
+
## Update
|
|
60
|
+
|
|
61
|
+
- Add `deposit` function to Doge `Client`
|
|
62
|
+
- Update latest dependencies
|
|
63
|
+
- Add tests for `deposit`
|
|
64
|
+
|
|
65
|
+
## Fix
|
|
66
|
+
|
|
67
|
+
- Fix import of `xchain-client`
|
|
68
|
+
|
|
69
|
+
# v.0.2.0 (2022-03-23)
|
|
70
|
+
|
|
71
|
+
## Update
|
|
72
|
+
|
|
73
|
+
- Fetch `txHex` optionally by scanning UTXOs #489
|
|
74
|
+
- Cache list of `txHex`s in `getTxHexFromCache` to avoid same requests for same data #490
|
|
75
|
+
- Export `buildTx` (from `utils`) and `getSendTxUrl` (from `blockcypher-api`)
|
|
76
|
+
|
|
77
|
+
## Breaking change
|
|
78
|
+
|
|
79
|
+
- Remove unspecific `AddressParams` type
|
|
80
|
+
|
|
81
|
+
# v.0.1.2 (2022-02-04)
|
|
82
|
+
|
|
83
|
+
- Use latest axios@0.25.0
|
|
84
|
+
- xchain-client@0.11.1
|
|
85
|
+
- @xchainjs/xchain-util@0.5.1
|
|
86
|
+
|
|
87
|
+
# v.0.1.1 (2022-01-19)
|
|
88
|
+
|
|
89
|
+
## ADD
|
|
90
|
+
|
|
91
|
+
- Add `getPrefix` to `utils`
|
|
92
|
+
|
|
93
|
+
## REMOVE
|
|
94
|
+
|
|
95
|
+
- Remove `nodeUrl` from Client constructor
|
|
96
|
+
|
|
97
|
+
# v.0.1.0 (2022-01-15)
|
|
98
|
+
|
|
99
|
+
First release
|
package/lib/const.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Asset
|
|
1
|
+
import { Asset } from '@xchainjs/xchain-util';
|
|
2
2
|
/**
|
|
3
3
|
* Minimum transaction fee
|
|
4
4
|
* 100000 satoshi/kB (similar to current `minrelaytxfee`)
|
|
@@ -12,7 +12,7 @@ export declare const UPPER_FEE_BOUND = 20000000;
|
|
|
12
12
|
* Chain identifier for Dogecoin
|
|
13
13
|
*
|
|
14
14
|
*/
|
|
15
|
-
export declare const DOGEChain:
|
|
15
|
+
export declare const DOGEChain: "DOGE";
|
|
16
16
|
/**
|
|
17
17
|
* Base "chain" asset on dogecoin
|
|
18
18
|
*
|