We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f0cb8c commit 534862aCopy full SHA for 534862a
3 files changed
dex/networks/lbc/params.go
@@ -0,0 +1,25 @@
1
+// This code is available on the terms of the project LICENSE.md file,
2
+// also available online at https://blueoakcouncil.org/license/1.0.0.
3
+
4
+package lbc
5
6
+import "decred.org/dcrdex/dex"
7
8
+var UnitInfo = dex.UnitInfo{
9
+ AtomicUnit: "Sats",
10
+ Conventional: dex.Denomination{
11
+ Unit: "LBC",
12
+ ConversionFactor: 1e8,
13
+ },
14
+ Alternatives: []dex.Denomination{
15
+ {
16
+ Unit: "mLBC",
17
+ ConversionFactor: 1e5,
18
19
20
+ Unit: "µLBC",
21
+ ConversionFactor: 1e2,
22
23
24
+ FeeRateDenom: "fee",
25
+}
0 commit comments