Skip to content

Commit d1fbe59

Browse files
fix: update chain symbols
* Update Denarius symbol from d to dnr * Update x42 symbol from symbol to x42 v1.8.2
1 parent bc12f52 commit d1fbe59

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hyperbitjs/chains",
3-
"version": "1.8.1",
3+
"version": "1.8.2",
44
"license": "MIT",
55
"main": "dist/index.js",
66
"typings": "dist/index.d.ts",

src/chains/denarius/base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Common } from '../../types/base';
33
export const common: Common = {
44
name: 'Denarius',
55
unit: 'DNR',
6-
symbol: 'd',
6+
symbol: 'dnr',
77
decimalPlaces: 1e8,
88
// https://github.com/metaspartan/denarius/blob/master/src/qt/transactionrecord.h#L75
99
confirmations: 10,

src/chains/x42/base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Common } from '../../types/base';
33
export const common: Common = {
44
name: 'x42 Protocol',
55
unit: 'X42',
6-
symbol: 'symbol',
6+
symbol: 'x42',
77
decimalPlaces: 1e8,
88
consensus: 'PoS',
99
};

0 commit comments

Comments
 (0)