Skip to content

Commit 534862a

Browse files
committed
Add LBC network
1 parent 2f0cb8c commit 534862a

3 files changed

Lines changed: 1834 additions & 0 deletions

File tree

dex/networks/lbc/params.go

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)