@ledgerhq/cryptoassets 13.33.0-nightly.20251113023835 → 13.33.0-nightly.20251114023758

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.
@@ -197,7 +197,7 @@ export const cryptoAssetsApi = createApi({
197
197
 
198
198
  getTokensData: build.infiniteQuery<TokensDataWithPagination, GetTokensDataParams, PageParam>({
199
199
  query: ({ pageParam, queryArg = {} }) => {
200
- const { isStaging = false, output, networkFamily, pageSize = 100, limit, ref } = queryArg;
200
+ const { isStaging = false, output, networkFamily, pageSize = 1000, limit, ref } = queryArg;
201
201
 
202
202
  const params = {
203
203
  output: output?.join(",") || TOKEN_OUTPUT_FIELDS.join(","),
@@ -9,7 +9,7 @@ export enum TokensDataTags {
9
9
  *
10
10
  * @param networkFamily - Filter by network families (e.g., "ethereum", "polygon")
11
11
  * @param isStaging - Use staging or production environment
12
- * @param pageSize - Number of items per page (default: 100, options: 10, 100, 1000)
12
+ * @param pageSize - Number of items per page (default: 1000, options: 10, 100, 1000)
13
13
  * @param output - Specify output fields (default: all fields, values: id, name, ticker, units, delisted)
14
14
  * @param limit - Maximum number of assets to return
15
15
  * @param ref - Reference to the source of the data Default: "branch:main" Examples:
package/src/currencies.ts CHANGED
@@ -4840,6 +4840,27 @@ export const cryptocurrenciesById: Record<CryptoCurrencyId, CryptoCurrency> = {
4840
4840
  },
4841
4841
  ],
4842
4842
  },
4843
+ somnia: {
4844
+ type: "CryptoCurrency",
4845
+ id: "somnia",
4846
+ coinType: CoinType.ETH,
4847
+ name: "Somnia",
4848
+ managerAppName: "Ethereum",
4849
+ ticker: "SOMI",
4850
+ scheme: "somnia",
4851
+ color: "#6F0191",
4852
+ family: "evm",
4853
+ units: ethereumUnits("SOMI", "SOMI"),
4854
+ ethereumLikeInfo: {
4855
+ chainId: 5031,
4856
+ },
4857
+ explorerViews: [
4858
+ {
4859
+ tx: "https://explorer.somnia.network/tx/$hash",
4860
+ address: "https://explorer.somnia.network/address/$address",
4861
+ },
4862
+ ],
4863
+ },
4843
4864
  };
4844
4865
 
4845
4866
  const cryptocurrenciesByScheme: Record<string, CryptoCurrency> = {};