@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/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> = {};