@ledgerhq/cryptoassets 13.34.0 → 13.35.0-nightly.20251210114107
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 +25 -0
- package/lib/abandonseed.d.ts.map +1 -1
- package/lib/abandonseed.js +2 -0
- package/lib/abandonseed.js.map +1 -1
- package/lib/currencies.d.ts.map +1 -1
- package/lib/currencies.js +70 -5
- package/lib/currencies.js.map +1 -1
- package/lib/fiats.js +1 -1
- package/lib-es/abandonseed.d.ts.map +1 -1
- package/lib-es/abandonseed.js +2 -0
- package/lib-es/abandonseed.js.map +1 -1
- package/lib-es/currencies.d.ts.map +1 -1
- package/lib-es/currencies.js +70 -5
- package/lib-es/currencies.js.map +1 -1
- package/lib-es/fiats.js +1 -1
- package/package.json +5 -5
- package/src/abandonseed.ts +2 -0
- package/src/currencies.ts +70 -5
- package/src/fiats.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ledgerhq/cryptoassets",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.35.0-nightly.20251210114107",
|
|
4
4
|
"description": "Ledger crypto-assets list",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Ledger"
|
|
@@ -23,10 +23,10 @@
|
|
|
23
23
|
"@reduxjs/toolkit": "2.8.2",
|
|
24
24
|
"invariant": "2",
|
|
25
25
|
"zod": "^3.22.4",
|
|
26
|
-
"@ledgerhq/live-env": "^2.
|
|
27
|
-
"@ledgerhq/types-live": "^6.
|
|
26
|
+
"@ledgerhq/live-env": "^2.23.0-nightly.20251210114107",
|
|
27
|
+
"@ledgerhq/types-live": "^6.91.0-nightly.20251210114107",
|
|
28
28
|
"@ledgerhq/logs": "^6.13.0",
|
|
29
|
-
"@ledgerhq/errors": "^6.
|
|
29
|
+
"@ledgerhq/errors": "^6.28.0-nightly.20251210114107"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@testing-library/react": "14.2.2",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"source-map-support": "^0.5.21",
|
|
43
43
|
"ts-jest": "^29.1.1",
|
|
44
44
|
"ts-node": "^10.7.0",
|
|
45
|
-
"@ledgerhq/types-cryptoassets": "^7.
|
|
45
|
+
"@ledgerhq/types-cryptoassets": "^7.31.0-nightly.20251210114107"
|
|
46
46
|
},
|
|
47
47
|
"typesVersions": {
|
|
48
48
|
"*": {
|
package/src/abandonseed.ts
CHANGED
|
@@ -144,6 +144,8 @@ const abandonSeedAddresses: Partial<Record<CryptoCurrency["id"], string>> = {
|
|
|
144
144
|
monad_testnet: EVM_DEAD_ADDRESS,
|
|
145
145
|
somnia: EVM_DEAD_ADDRESS,
|
|
146
146
|
zero_gravity: EVM_DEAD_ADDRESS,
|
|
147
|
+
concordium: "3a9gh23nNY3kH4k3ajaCqAbM8rcbWMor2VhEzQ6qkn2r17UU7w",
|
|
148
|
+
concordium_testnet: "3a9gh23nNY3kH4k3ajaCqAbM8rcbWMor2VhEzQ6qkn2r17UU7w",
|
|
147
149
|
};
|
|
148
150
|
|
|
149
151
|
/**
|
package/src/currencies.ts
CHANGED
|
@@ -834,6 +834,59 @@ export const cryptocurrenciesById: Record<CryptoCurrencyId, CryptoCurrency> = {
|
|
|
834
834
|
],
|
|
835
835
|
explorerId: "club",
|
|
836
836
|
},
|
|
837
|
+
concordium: {
|
|
838
|
+
type: "CryptoCurrency",
|
|
839
|
+
id: "concordium",
|
|
840
|
+
managerAppName: "Concordium",
|
|
841
|
+
coinType: CoinType.CONCORDIUM,
|
|
842
|
+
name: "Concordium",
|
|
843
|
+
ticker: "CCD",
|
|
844
|
+
scheme: "concordium",
|
|
845
|
+
color: "#000000",
|
|
846
|
+
family: "concordium",
|
|
847
|
+
blockAvgTime: 2,
|
|
848
|
+
units: [
|
|
849
|
+
{
|
|
850
|
+
name: "ccd",
|
|
851
|
+
code: "CCD",
|
|
852
|
+
magnitude: 6,
|
|
853
|
+
},
|
|
854
|
+
],
|
|
855
|
+
explorerViews: [
|
|
856
|
+
{
|
|
857
|
+
tx: "https://ccdscan.io/transactions?dentity=transaction&dhash=$hash",
|
|
858
|
+
address: "https://ccdscan.io/accounts?dentity=account&daddress=$address",
|
|
859
|
+
},
|
|
860
|
+
],
|
|
861
|
+
keywords: ["concordium"],
|
|
862
|
+
},
|
|
863
|
+
concordium_testnet: {
|
|
864
|
+
type: "CryptoCurrency",
|
|
865
|
+
id: "concordium_testnet",
|
|
866
|
+
managerAppName: "Concordium",
|
|
867
|
+
coinType: CoinType.CONCORDIUM,
|
|
868
|
+
name: "Concordium (Testnet)",
|
|
869
|
+
ticker: "CCD",
|
|
870
|
+
scheme: "concordium_testnet",
|
|
871
|
+
color: "#000000",
|
|
872
|
+
family: "concordium",
|
|
873
|
+
blockAvgTime: 2,
|
|
874
|
+
isTestnetFor: "concordium",
|
|
875
|
+
units: [
|
|
876
|
+
{
|
|
877
|
+
name: "ccd",
|
|
878
|
+
code: "CCD",
|
|
879
|
+
magnitude: 6,
|
|
880
|
+
},
|
|
881
|
+
],
|
|
882
|
+
explorerViews: [
|
|
883
|
+
{
|
|
884
|
+
tx: "https://testnet.ccdscan.io/transactions?dentity=transaction&dhash=$hash",
|
|
885
|
+
address: "https://testnet.ccdscan.io/accounts?dentity=account&daddress=$address",
|
|
886
|
+
},
|
|
887
|
+
],
|
|
888
|
+
keywords: ["concordium_testnet"],
|
|
889
|
+
},
|
|
837
890
|
coreum: {
|
|
838
891
|
type: "CryptoCurrency",
|
|
839
892
|
id: "coreum",
|
|
@@ -1698,7 +1751,6 @@ export const cryptocurrenciesById: Record<CryptoCurrencyId, CryptoCurrency> = {
|
|
|
1698
1751
|
name: "KAS",
|
|
1699
1752
|
code: "KAS",
|
|
1700
1753
|
magnitude: 8,
|
|
1701
|
-
showAllDigits: true,
|
|
1702
1754
|
},
|
|
1703
1755
|
{
|
|
1704
1756
|
name: "Sompis",
|
|
@@ -2526,8 +2578,8 @@ export const cryptocurrenciesById: Record<CryptoCurrencyId, CryptoCurrency> = {
|
|
|
2526
2578
|
],
|
|
2527
2579
|
explorerViews: [
|
|
2528
2580
|
{
|
|
2529
|
-
tx: "https://
|
|
2530
|
-
address: "https://
|
|
2581
|
+
tx: "https://explorer.quicksilver.zone/transactions/$hash",
|
|
2582
|
+
address: "https://explorer.quicksilver.zone/validators/$address",
|
|
2531
2583
|
},
|
|
2532
2584
|
],
|
|
2533
2585
|
},
|
|
@@ -3624,6 +3676,7 @@ export const cryptocurrenciesById: Record<CryptoCurrencyId, CryptoCurrency> = {
|
|
|
3624
3676
|
address: "https://explorer.stacks.co/address/$address",
|
|
3625
3677
|
},
|
|
3626
3678
|
],
|
|
3679
|
+
tokenTypes: ["sip010"],
|
|
3627
3680
|
},
|
|
3628
3681
|
// Cronos POS Chain Croeseid (formerly Crypto.org Croeseid)
|
|
3629
3682
|
crypto_org_croeseid: {
|
|
@@ -4540,7 +4593,13 @@ export const cryptocurrenciesById: Record<CryptoCurrencyId, CryptoCurrency> = {
|
|
|
4540
4593
|
ethereumLikeInfo: {
|
|
4541
4594
|
chainId: 81457,
|
|
4542
4595
|
},
|
|
4543
|
-
explorerViews: [
|
|
4596
|
+
explorerViews: [
|
|
4597
|
+
{
|
|
4598
|
+
tx: "https://blastscan.io/tx/$hash",
|
|
4599
|
+
address: "https://blastscan.io/address/$address",
|
|
4600
|
+
token: "https://blastscan.io/token/$contractAddress?a=$address",
|
|
4601
|
+
},
|
|
4602
|
+
],
|
|
4544
4603
|
},
|
|
4545
4604
|
blast_sepolia: {
|
|
4546
4605
|
type: "CryptoCurrency",
|
|
@@ -4558,7 +4617,13 @@ export const cryptocurrenciesById: Record<CryptoCurrencyId, CryptoCurrency> = {
|
|
|
4558
4617
|
ethereumLikeInfo: {
|
|
4559
4618
|
chainId: 168587773,
|
|
4560
4619
|
},
|
|
4561
|
-
explorerViews: [
|
|
4620
|
+
explorerViews: [
|
|
4621
|
+
{
|
|
4622
|
+
tx: "https://sepolia.blastscan.io/tx/$hash",
|
|
4623
|
+
address: "https://sepolia.blastscan.io/address/$address",
|
|
4624
|
+
token: "https://sepolia.blastscan.io/token/$contractAddress?a=$address",
|
|
4625
|
+
},
|
|
4626
|
+
],
|
|
4562
4627
|
},
|
|
4563
4628
|
scroll: {
|
|
4564
4629
|
type: "CryptoCurrency",
|
package/src/fiats.ts
CHANGED
|
@@ -42,7 +42,7 @@ const byTicker: Record<string, FiatCurrency> = {
|
|
|
42
42
|
BOB: fiat("Bolivian Boliviano", "BOB", "Bs", 2),
|
|
43
43
|
BRL: fiat("Brazilian Real", "BRL", "R$", 2),
|
|
44
44
|
BSD: fiat("Bahamian Dollar", "BSD", "$", 2),
|
|
45
|
-
BTC: fiat("Bitcoin", "BTC", "
|
|
45
|
+
BTC: fiat("Bitcoin", "BTC", "₿", 8),
|
|
46
46
|
BTN: fiat("Bhutanese Ngultrum", "BTN", "Nu.", 1),
|
|
47
47
|
BWP: fiat("Botswana Pula", "BWP", "P", 2),
|
|
48
48
|
BYN: fiat("Belarusian Ruble", "BYN", "р.", 2),
|