@ledgerhq/cryptoassets 13.33.0-nightly.20251114023758 → 13.33.0-nightly.20251118023800
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 -4
- package/lib/abandonseed.d.ts.map +1 -1
- package/lib/abandonseed.js +2 -0
- package/lib/abandonseed.js.map +1 -1
- package/lib/cal-client/state-manager/api.d.ts +2906 -0
- package/lib/cal-client/state-manager/api.d.ts.map +1 -1
- package/lib/cal-client/state-manager/api.js +2 -2
- package/lib/cal-client/state-manager/api.js.map +1 -1
- package/lib/currencies.d.ts.map +1 -1
- package/lib/currencies.js +42 -0
- package/lib/currencies.js.map +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/cal-client/state-manager/api.d.ts +2906 -0
- package/lib-es/cal-client/state-manager/api.d.ts.map +1 -1
- package/lib-es/cal-client/state-manager/api.js +1 -1
- package/lib-es/cal-client/state-manager/api.js.map +1 -1
- package/lib-es/currencies.d.ts.map +1 -1
- package/lib-es/currencies.js +42 -0
- package/lib-es/currencies.js.map +1 -1
- package/package.json +3 -3
- package/src/abandonseed.ts +2 -0
- package/src/cal-client/state-manager/api.ts +1 -0
- package/src/currencies.ts +42 -0
package/src/currencies.ts
CHANGED
|
@@ -4840,6 +4840,27 @@ export const cryptocurrenciesById: Record<CryptoCurrencyId, CryptoCurrency> = {
|
|
|
4840
4840
|
},
|
|
4841
4841
|
],
|
|
4842
4842
|
},
|
|
4843
|
+
monad_testnet: {
|
|
4844
|
+
type: "CryptoCurrency",
|
|
4845
|
+
id: "monad_testnet",
|
|
4846
|
+
coinType: CoinType.ETH,
|
|
4847
|
+
name: "Monad Testnet",
|
|
4848
|
+
managerAppName: "Ethereum",
|
|
4849
|
+
ticker: "MON",
|
|
4850
|
+
scheme: "monad_testnet",
|
|
4851
|
+
color: "#836EF9",
|
|
4852
|
+
family: "evm",
|
|
4853
|
+
units: ethereumUnits("MON", "MON"),
|
|
4854
|
+
ethereumLikeInfo: {
|
|
4855
|
+
chainId: 10143,
|
|
4856
|
+
},
|
|
4857
|
+
explorerViews: [
|
|
4858
|
+
{
|
|
4859
|
+
tx: "https://testnet.monadexplorer.com/tx/$hash",
|
|
4860
|
+
address: "https://testnet.monadexplorer.com/address/$address",
|
|
4861
|
+
},
|
|
4862
|
+
],
|
|
4863
|
+
},
|
|
4843
4864
|
somnia: {
|
|
4844
4865
|
type: "CryptoCurrency",
|
|
4845
4866
|
id: "somnia",
|
|
@@ -4861,6 +4882,27 @@ export const cryptocurrenciesById: Record<CryptoCurrencyId, CryptoCurrency> = {
|
|
|
4861
4882
|
},
|
|
4862
4883
|
],
|
|
4863
4884
|
},
|
|
4885
|
+
zero_gravity: {
|
|
4886
|
+
type: "CryptoCurrency",
|
|
4887
|
+
id: "zero_gravity",
|
|
4888
|
+
coinType: CoinType.ETH,
|
|
4889
|
+
name: "0G",
|
|
4890
|
+
managerAppName: "Ethereum",
|
|
4891
|
+
ticker: "0G",
|
|
4892
|
+
scheme: "zero_gravity",
|
|
4893
|
+
color: "#9200E1",
|
|
4894
|
+
family: "evm",
|
|
4895
|
+
units: ethereumUnits("0G", "0G"),
|
|
4896
|
+
ethereumLikeInfo: {
|
|
4897
|
+
chainId: 16661,
|
|
4898
|
+
},
|
|
4899
|
+
explorerViews: [
|
|
4900
|
+
{
|
|
4901
|
+
tx: "https://chainscan.0g.ai/tx/$hash",
|
|
4902
|
+
address: "https://chainscan.0g.ai/address/$address",
|
|
4903
|
+
},
|
|
4904
|
+
],
|
|
4905
|
+
},
|
|
4864
4906
|
};
|
|
4865
4907
|
|
|
4866
4908
|
const cryptocurrenciesByScheme: Record<string, CryptoCurrency> = {};
|