@ledgerhq/live-common 34.49.0 → 34.50.0-nightly.0

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.
Files changed (465) hide show
  1. package/lib/__tests__/test-helpers/bridge.js +1 -1
  2. package/lib/__tests__/test-helpers/bridge.js.map +1 -1
  3. package/lib/__tests__/test-helpers/environment.js +2 -0
  4. package/lib/__tests__/test-helpers/environment.js.map +1 -1
  5. package/lib/apps/config.js +1 -1
  6. package/lib/bridge/generic-alpaca/alpaca/index.d.ts.map +1 -1
  7. package/lib/bridge/generic-alpaca/alpaca/index.js +3 -0
  8. package/lib/bridge/generic-alpaca/alpaca/index.js.map +1 -1
  9. package/lib/bridge/generic-alpaca/createTransaction.d.ts.map +1 -1
  10. package/lib/bridge/generic-alpaca/createTransaction.js +11 -0
  11. package/lib/bridge/generic-alpaca/createTransaction.js.map +1 -1
  12. package/lib/bridge/generic-alpaca/estimateMaxSpendable.d.ts.map +1 -1
  13. package/lib/bridge/generic-alpaca/estimateMaxSpendable.js +2 -3
  14. package/lib/bridge/generic-alpaca/estimateMaxSpendable.js.map +1 -1
  15. package/lib/bridge/generic-alpaca/getAccountShape.d.ts.map +1 -1
  16. package/lib/bridge/generic-alpaca/getAccountShape.js +11 -3
  17. package/lib/bridge/generic-alpaca/getAccountShape.js.map +1 -1
  18. package/lib/bridge/generic-alpaca/getTransactionStatus.d.ts.map +1 -1
  19. package/lib/bridge/generic-alpaca/getTransactionStatus.js +6 -4
  20. package/lib/bridge/generic-alpaca/getTransactionStatus.js.map +1 -1
  21. package/lib/bridge/generic-alpaca/prepareTransaction.d.ts.map +1 -1
  22. package/lib/bridge/generic-alpaca/prepareTransaction.js +32 -4
  23. package/lib/bridge/generic-alpaca/prepareTransaction.js.map +1 -1
  24. package/lib/bridge/generic-alpaca/signOperation.d.ts.map +1 -1
  25. package/lib/bridge/generic-alpaca/signOperation.js +4 -2
  26. package/lib/bridge/generic-alpaca/signOperation.js.map +1 -1
  27. package/lib/bridge/generic-alpaca/signer/index.d.ts.map +1 -1
  28. package/lib/bridge/generic-alpaca/signer/index.js +37 -0
  29. package/lib/bridge/generic-alpaca/signer/index.js.map +1 -1
  30. package/lib/bridge/generic-alpaca/signer/signTransaction.d.ts +2 -0
  31. package/lib/bridge/generic-alpaca/signer/signTransaction.d.ts.map +1 -1
  32. package/lib/bridge/generic-alpaca/signer/signTransaction.js +8 -1
  33. package/lib/bridge/generic-alpaca/signer/signTransaction.js.map +1 -1
  34. package/lib/bridge/generic-alpaca/tests/estimateMaxSpendable.test.js +15 -1
  35. package/lib/bridge/generic-alpaca/tests/estimateMaxSpendable.test.js.map +1 -1
  36. package/lib/bridge/generic-alpaca/tests/prepareTransaction.test.js +1 -1
  37. package/lib/bridge/generic-alpaca/tests/prepareTransaction.test.js.map +1 -1
  38. package/lib/bridge/generic-alpaca/tests/signOperation.test.js +2 -2
  39. package/lib/bridge/generic-alpaca/tests/signOperation.test.js.map +1 -1
  40. package/lib/bridge/generic-alpaca/types.d.ts +7 -1
  41. package/lib/bridge/generic-alpaca/types.d.ts.map +1 -1
  42. package/lib/bridge/generic-alpaca/utils.d.ts +7 -1
  43. package/lib/bridge/generic-alpaca/utils.d.ts.map +1 -1
  44. package/lib/bridge/generic-alpaca/utils.js +31 -29
  45. package/lib/bridge/generic-alpaca/utils.js.map +1 -1
  46. package/lib/bridge/generic-alpaca/utils.test.js +32 -0
  47. package/lib/bridge/generic-alpaca/utils.test.js.map +1 -1
  48. package/lib/bridge/impl.d.ts.map +1 -1
  49. package/lib/bridge/impl.js +1 -0
  50. package/lib/bridge/impl.js.map +1 -1
  51. package/lib/bridge/react/BridgeSync.d.ts.map +1 -1
  52. package/lib/bridge/react/BridgeSync.js +17 -4
  53. package/lib/bridge/react/BridgeSync.js.map +1 -1
  54. package/lib/bridge/syncSessionManager/index.d.ts +18 -0
  55. package/lib/bridge/syncSessionManager/index.d.ts.map +1 -0
  56. package/lib/bridge/syncSessionManager/index.js +75 -0
  57. package/lib/bridge/syncSessionManager/index.js.map +1 -0
  58. package/lib/bridge/syncSessionManager/index.test.d.ts +2 -0
  59. package/lib/bridge/syncSessionManager/index.test.d.ts.map +1 -0
  60. package/lib/bridge/syncSessionManager/index.test.js +118 -0
  61. package/lib/bridge/syncSessionManager/index.test.js.map +1 -0
  62. package/lib/deposit/deposit.integration.test.js +60 -1
  63. package/lib/deposit/deposit.integration.test.js.map +1 -1
  64. package/lib/e2e/data/deviceLabelsData.js +2 -2
  65. package/lib/e2e/data/deviceLabelsData.js.map +1 -1
  66. package/lib/e2e/enum/Account.d.ts +2 -0
  67. package/lib/e2e/enum/Account.d.ts.map +1 -1
  68. package/lib/e2e/enum/Account.js +3 -1
  69. package/lib/e2e/enum/Account.js.map +1 -1
  70. package/lib/e2e/enum/DeviceLabels.d.ts +3 -9
  71. package/lib/e2e/enum/DeviceLabels.d.ts.map +1 -1
  72. package/lib/e2e/enum/DeviceLabels.js +2 -8
  73. package/lib/e2e/enum/DeviceLabels.js.map +1 -1
  74. package/lib/e2e/enum/Network.d.ts +1 -0
  75. package/lib/e2e/enum/Network.d.ts.map +1 -1
  76. package/lib/e2e/enum/Network.js +1 -0
  77. package/lib/e2e/enum/Network.js.map +1 -1
  78. package/lib/e2e/families/bitcoin.d.ts +1 -0
  79. package/lib/e2e/families/bitcoin.d.ts.map +1 -1
  80. package/lib/e2e/families/bitcoin.js +28 -1
  81. package/lib/e2e/families/bitcoin.js.map +1 -1
  82. package/lib/e2e/families/tezos.d.ts.map +1 -1
  83. package/lib/e2e/families/tezos.js +5 -3
  84. package/lib/e2e/families/tezos.js.map +1 -1
  85. package/lib/e2e/index.d.ts +8 -0
  86. package/lib/e2e/index.d.ts.map +1 -1
  87. package/lib/e2e/models/Swap.d.ts +2 -0
  88. package/lib/e2e/models/Swap.d.ts.map +1 -1
  89. package/lib/e2e/models/Swap.js +6 -0
  90. package/lib/e2e/models/Swap.js.map +1 -1
  91. package/lib/e2e/speculos.d.ts +8 -0
  92. package/lib/e2e/speculos.d.ts.map +1 -1
  93. package/lib/e2e/speculos.js +23 -31
  94. package/lib/e2e/speculos.js.map +1 -1
  95. package/lib/exchange/providers/swap.js +2 -2
  96. package/lib/exchange/providers/swap.js.map +1 -1
  97. package/lib/families/canton/bridge/mock.d.ts.map +1 -1
  98. package/lib/families/canton/bridge/mock.js +1 -0
  99. package/lib/families/canton/bridge/mock.js.map +1 -1
  100. package/lib/families/canton/config.d.ts.map +1 -1
  101. package/lib/families/canton/config.js +2 -0
  102. package/lib/families/canton/config.js.map +1 -1
  103. package/lib/families/celo/bridge.integration.test.js +4 -1
  104. package/lib/families/celo/bridge.integration.test.js.map +1 -1
  105. package/lib/families/cosmos/datasets/axelar.integration.test.js +4 -1
  106. package/lib/families/cosmos/datasets/axelar.integration.test.js.map +1 -1
  107. package/lib/families/cosmos/datasets/desmos.integration.test.js +4 -1
  108. package/lib/families/cosmos/datasets/desmos.integration.test.js.map +1 -1
  109. package/lib/families/cosmos/datasets/onomy.integration.test.js +4 -1
  110. package/lib/families/cosmos/datasets/onomy.integration.test.js.map +1 -1
  111. package/lib/families/evm/config.d.ts.map +1 -1
  112. package/lib/families/evm/config.js +26 -0
  113. package/lib/families/evm/config.js.map +1 -1
  114. package/lib/families/filecoin/bridge.integration.test.js +4 -1
  115. package/lib/families/filecoin/bridge.integration.test.js.map +1 -1
  116. package/lib/families/mina/bridge.integration.test.js +4 -1
  117. package/lib/families/mina/bridge.integration.test.js.map +1 -1
  118. package/lib/families/multiversx/synchronisation.integration.test.js +4 -1
  119. package/lib/families/multiversx/synchronisation.integration.test.js.map +1 -1
  120. package/lib/families/tezos/react.d.ts +2 -1
  121. package/lib/families/tezos/react.d.ts.map +1 -1
  122. package/lib/families/tezos/react.js +19 -1
  123. package/lib/families/tezos/react.js.map +1 -1
  124. package/lib/families/tezos/setup.d.ts +1 -4
  125. package/lib/families/tezos/setup.d.ts.map +1 -1
  126. package/lib/families/tezos/setup.js +3 -11
  127. package/lib/families/tezos/setup.js.map +1 -1
  128. package/lib/families/ton/bridge.integration.test.js +4 -1
  129. package/lib/families/ton/bridge.integration.test.js.map +1 -1
  130. package/lib/featureFlags/defaultFeatures.d.ts +2 -0
  131. package/lib/featureFlags/defaultFeatures.d.ts.map +1 -1
  132. package/lib/featureFlags/defaultFeatures.js +4 -0
  133. package/lib/featureFlags/defaultFeatures.js.map +1 -1
  134. package/lib/featureFlags/useFeature.d.ts +1 -1
  135. package/lib/featureFlags/useFeature.d.ts.map +1 -1
  136. package/lib/generated/bridge/js.d.ts +0 -1
  137. package/lib/generated/bridge/js.d.ts.map +1 -1
  138. package/lib/generated/bridge/js.js +10 -12
  139. package/lib/generated/bridge/js.js.map +1 -1
  140. package/lib/modularDrawer/hooks/modules/useLeftApyModule.d.ts +1 -0
  141. package/lib/modularDrawer/hooks/modules/useLeftApyModule.d.ts.map +1 -1
  142. package/lib/modularDrawer/hooks/modules/useLeftMarketTrendModule.d.ts +1 -0
  143. package/lib/modularDrawer/hooks/modules/useLeftMarketTrendModule.d.ts.map +1 -1
  144. package/lib/modularDrawer/hooks/modules/useRightMarketTrendModule.d.ts +1 -0
  145. package/lib/modularDrawer/hooks/modules/useRightMarketTrendModule.d.ts.map +1 -1
  146. package/lib/modularDrawer/hooks/useRightBalanceAsset.d.ts +6 -1
  147. package/lib/modularDrawer/hooks/useRightBalanceAsset.d.ts.map +1 -1
  148. package/lib/modularDrawer/hooks/useRightBalanceAsset.js +11 -14
  149. package/lib/modularDrawer/hooks/useRightBalanceAsset.js.map +1 -1
  150. package/lib/modularDrawer/hooks/useRightBalanceNetwork.d.ts +3 -1
  151. package/lib/modularDrawer/hooks/useRightBalanceNetwork.d.ts.map +1 -1
  152. package/lib/modularDrawer/hooks/useRightBalanceNetwork.js +3 -3
  153. package/lib/modularDrawer/hooks/useRightBalanceNetwork.js.map +1 -1
  154. package/lib/modularDrawer/modules/createAssetConfiguration.d.ts.map +1 -1
  155. package/lib/modularDrawer/modules/createAssetConfiguration.js +1 -0
  156. package/lib/modularDrawer/modules/createAssetConfiguration.js.map +1 -1
  157. package/lib/modularDrawer/utils/groupCurrenciesByProvider.d.ts +7 -0
  158. package/lib/modularDrawer/utils/groupCurrenciesByProvider.d.ts.map +1 -0
  159. package/lib/modularDrawer/utils/groupCurrenciesByProvider.js +21 -0
  160. package/lib/modularDrawer/utils/groupCurrenciesByProvider.js.map +1 -0
  161. package/lib/modularDrawer/utils/index.d.ts +2 -1
  162. package/lib/modularDrawer/utils/index.d.ts.map +1 -1
  163. package/lib/modularDrawer/utils/index.js +3 -1
  164. package/lib/modularDrawer/utils/index.js.map +1 -1
  165. package/lib/modularDrawer/utils/type.d.ts +18 -0
  166. package/lib/modularDrawer/utils/type.d.ts.map +1 -1
  167. package/lib/notifications/ServiceStatusProvider/entry-points.d.ts +3 -0
  168. package/lib/notifications/ServiceStatusProvider/entry-points.d.ts.map +1 -0
  169. package/lib/notifications/ServiceStatusProvider/entry-points.js +3 -0
  170. package/lib/notifications/ServiceStatusProvider/entry-points.js.map +1 -0
  171. package/lib/notifications/ServiceStatusProvider/index.d.ts +18 -1
  172. package/lib/notifications/ServiceStatusProvider/index.d.ts.map +1 -1
  173. package/lib/notifications/ServiceStatusProvider/index.js +47 -9
  174. package/lib/notifications/ServiceStatusProvider/index.js.map +1 -1
  175. package/lib/notifications/ServiceStatusProvider/index.test.d.ts +2 -0
  176. package/lib/notifications/ServiceStatusProvider/index.test.d.ts.map +1 -0
  177. package/lib/notifications/ServiceStatusProvider/index.test.js +88 -0
  178. package/lib/notifications/ServiceStatusProvider/index.test.js.map +1 -0
  179. package/lib/notifications/ServiceStatusProvider/ledger-components.d.ts +2 -0
  180. package/lib/notifications/ServiceStatusProvider/ledger-components.d.ts.map +1 -0
  181. package/lib/notifications/ServiceStatusProvider/ledger-components.js +17 -0
  182. package/lib/notifications/ServiceStatusProvider/ledger-components.js.map +1 -0
  183. package/lib/notifications/ServiceStatusProvider/mocks/ledgerStatus.d.ts +154 -0
  184. package/lib/notifications/ServiceStatusProvider/mocks/ledgerStatus.d.ts.map +1 -0
  185. package/lib/notifications/ServiceStatusProvider/mocks/ledgerStatus.js +1192 -0
  186. package/lib/notifications/ServiceStatusProvider/mocks/ledgerStatus.js.map +1 -0
  187. package/lib/notifications/ServiceStatusProvider/types.d.ts +3 -1
  188. package/lib/notifications/ServiceStatusProvider/types.d.ts.map +1 -1
  189. package/lib/wallet-api/react.d.ts +1 -1
  190. package/lib/wallet-api/react.d.ts.map +1 -1
  191. package/lib/wallet-api/react.js +1 -1
  192. package/lib/wallet-api/react.js.map +1 -1
  193. package/lib-es/__tests__/test-helpers/bridge.js +1 -1
  194. package/lib-es/__tests__/test-helpers/bridge.js.map +1 -1
  195. package/lib-es/__tests__/test-helpers/environment.js +2 -0
  196. package/lib-es/__tests__/test-helpers/environment.js.map +1 -1
  197. package/lib-es/apps/config.js +1 -1
  198. package/lib-es/bridge/generic-alpaca/alpaca/index.d.ts.map +1 -1
  199. package/lib-es/bridge/generic-alpaca/alpaca/index.js +3 -0
  200. package/lib-es/bridge/generic-alpaca/alpaca/index.js.map +1 -1
  201. package/lib-es/bridge/generic-alpaca/createTransaction.d.ts.map +1 -1
  202. package/lib-es/bridge/generic-alpaca/createTransaction.js +11 -0
  203. package/lib-es/bridge/generic-alpaca/createTransaction.js.map +1 -1
  204. package/lib-es/bridge/generic-alpaca/estimateMaxSpendable.d.ts.map +1 -1
  205. package/lib-es/bridge/generic-alpaca/estimateMaxSpendable.js +2 -3
  206. package/lib-es/bridge/generic-alpaca/estimateMaxSpendable.js.map +1 -1
  207. package/lib-es/bridge/generic-alpaca/getAccountShape.d.ts.map +1 -1
  208. package/lib-es/bridge/generic-alpaca/getAccountShape.js +11 -3
  209. package/lib-es/bridge/generic-alpaca/getAccountShape.js.map +1 -1
  210. package/lib-es/bridge/generic-alpaca/getTransactionStatus.d.ts.map +1 -1
  211. package/lib-es/bridge/generic-alpaca/getTransactionStatus.js +6 -4
  212. package/lib-es/bridge/generic-alpaca/getTransactionStatus.js.map +1 -1
  213. package/lib-es/bridge/generic-alpaca/prepareTransaction.d.ts.map +1 -1
  214. package/lib-es/bridge/generic-alpaca/prepareTransaction.js +32 -4
  215. package/lib-es/bridge/generic-alpaca/prepareTransaction.js.map +1 -1
  216. package/lib-es/bridge/generic-alpaca/signOperation.d.ts.map +1 -1
  217. package/lib-es/bridge/generic-alpaca/signOperation.js +4 -2
  218. package/lib-es/bridge/generic-alpaca/signOperation.js.map +1 -1
  219. package/lib-es/bridge/generic-alpaca/signer/index.d.ts.map +1 -1
  220. package/lib-es/bridge/generic-alpaca/signer/index.js +38 -1
  221. package/lib-es/bridge/generic-alpaca/signer/index.js.map +1 -1
  222. package/lib-es/bridge/generic-alpaca/signer/signTransaction.d.ts +2 -0
  223. package/lib-es/bridge/generic-alpaca/signer/signTransaction.d.ts.map +1 -1
  224. package/lib-es/bridge/generic-alpaca/signer/signTransaction.js +6 -0
  225. package/lib-es/bridge/generic-alpaca/signer/signTransaction.js.map +1 -1
  226. package/lib-es/bridge/generic-alpaca/tests/estimateMaxSpendable.test.js +15 -1
  227. package/lib-es/bridge/generic-alpaca/tests/estimateMaxSpendable.test.js.map +1 -1
  228. package/lib-es/bridge/generic-alpaca/tests/prepareTransaction.test.js +1 -1
  229. package/lib-es/bridge/generic-alpaca/tests/prepareTransaction.test.js.map +1 -1
  230. package/lib-es/bridge/generic-alpaca/tests/signOperation.test.js +2 -2
  231. package/lib-es/bridge/generic-alpaca/tests/signOperation.test.js.map +1 -1
  232. package/lib-es/bridge/generic-alpaca/types.d.ts +7 -1
  233. package/lib-es/bridge/generic-alpaca/types.d.ts.map +1 -1
  234. package/lib-es/bridge/generic-alpaca/utils.d.ts +7 -1
  235. package/lib-es/bridge/generic-alpaca/utils.d.ts.map +1 -1
  236. package/lib-es/bridge/generic-alpaca/utils.js +31 -29
  237. package/lib-es/bridge/generic-alpaca/utils.js.map +1 -1
  238. package/lib-es/bridge/generic-alpaca/utils.test.js +33 -1
  239. package/lib-es/bridge/generic-alpaca/utils.test.js.map +1 -1
  240. package/lib-es/bridge/impl.d.ts.map +1 -1
  241. package/lib-es/bridge/impl.js +1 -0
  242. package/lib-es/bridge/impl.js.map +1 -1
  243. package/lib-es/bridge/react/BridgeSync.d.ts.map +1 -1
  244. package/lib-es/bridge/react/BridgeSync.js +17 -4
  245. package/lib-es/bridge/react/BridgeSync.js.map +1 -1
  246. package/lib-es/bridge/syncSessionManager/index.d.ts +18 -0
  247. package/lib-es/bridge/syncSessionManager/index.d.ts.map +1 -0
  248. package/lib-es/bridge/syncSessionManager/index.js +68 -0
  249. package/lib-es/bridge/syncSessionManager/index.js.map +1 -0
  250. package/lib-es/bridge/syncSessionManager/index.test.d.ts +2 -0
  251. package/lib-es/bridge/syncSessionManager/index.test.d.ts.map +1 -0
  252. package/lib-es/bridge/syncSessionManager/index.test.js +116 -0
  253. package/lib-es/bridge/syncSessionManager/index.test.js.map +1 -0
  254. package/lib-es/deposit/deposit.integration.test.js +37 -1
  255. package/lib-es/deposit/deposit.integration.test.js.map +1 -1
  256. package/lib-es/e2e/data/deviceLabelsData.js +2 -2
  257. package/lib-es/e2e/data/deviceLabelsData.js.map +1 -1
  258. package/lib-es/e2e/enum/Account.d.ts +2 -0
  259. package/lib-es/e2e/enum/Account.d.ts.map +1 -1
  260. package/lib-es/e2e/enum/Account.js +3 -1
  261. package/lib-es/e2e/enum/Account.js.map +1 -1
  262. package/lib-es/e2e/enum/DeviceLabels.d.ts +3 -9
  263. package/lib-es/e2e/enum/DeviceLabels.d.ts.map +1 -1
  264. package/lib-es/e2e/enum/DeviceLabels.js +2 -8
  265. package/lib-es/e2e/enum/DeviceLabels.js.map +1 -1
  266. package/lib-es/e2e/enum/Network.d.ts +1 -0
  267. package/lib-es/e2e/enum/Network.d.ts.map +1 -1
  268. package/lib-es/e2e/enum/Network.js +1 -0
  269. package/lib-es/e2e/enum/Network.js.map +1 -1
  270. package/lib-es/e2e/families/bitcoin.d.ts +1 -0
  271. package/lib-es/e2e/families/bitcoin.d.ts.map +1 -1
  272. package/lib-es/e2e/families/bitcoin.js +27 -1
  273. package/lib-es/e2e/families/bitcoin.js.map +1 -1
  274. package/lib-es/e2e/families/tezos.d.ts.map +1 -1
  275. package/lib-es/e2e/families/tezos.js +6 -4
  276. package/lib-es/e2e/families/tezos.js.map +1 -1
  277. package/lib-es/e2e/index.d.ts +8 -0
  278. package/lib-es/e2e/index.d.ts.map +1 -1
  279. package/lib-es/e2e/models/Swap.d.ts +2 -0
  280. package/lib-es/e2e/models/Swap.d.ts.map +1 -1
  281. package/lib-es/e2e/models/Swap.js +6 -0
  282. package/lib-es/e2e/models/Swap.js.map +1 -1
  283. package/lib-es/e2e/speculos.d.ts +8 -0
  284. package/lib-es/e2e/speculos.d.ts.map +1 -1
  285. package/lib-es/e2e/speculos.js +23 -32
  286. package/lib-es/e2e/speculos.js.map +1 -1
  287. package/lib-es/exchange/providers/swap.js +2 -2
  288. package/lib-es/exchange/providers/swap.js.map +1 -1
  289. package/lib-es/families/canton/bridge/mock.d.ts.map +1 -1
  290. package/lib-es/families/canton/bridge/mock.js +1 -0
  291. package/lib-es/families/canton/bridge/mock.js.map +1 -1
  292. package/lib-es/families/canton/config.d.ts.map +1 -1
  293. package/lib-es/families/canton/config.js +2 -0
  294. package/lib-es/families/canton/config.js.map +1 -1
  295. package/lib-es/families/celo/bridge.integration.test.js +4 -1
  296. package/lib-es/families/celo/bridge.integration.test.js.map +1 -1
  297. package/lib-es/families/cosmos/datasets/axelar.integration.test.js +4 -1
  298. package/lib-es/families/cosmos/datasets/axelar.integration.test.js.map +1 -1
  299. package/lib-es/families/cosmos/datasets/desmos.integration.test.js +4 -1
  300. package/lib-es/families/cosmos/datasets/desmos.integration.test.js.map +1 -1
  301. package/lib-es/families/cosmos/datasets/onomy.integration.test.js +4 -1
  302. package/lib-es/families/cosmos/datasets/onomy.integration.test.js.map +1 -1
  303. package/lib-es/families/evm/config.d.ts.map +1 -1
  304. package/lib-es/families/evm/config.js +26 -0
  305. package/lib-es/families/evm/config.js.map +1 -1
  306. package/lib-es/families/filecoin/bridge.integration.test.js +4 -1
  307. package/lib-es/families/filecoin/bridge.integration.test.js.map +1 -1
  308. package/lib-es/families/mina/bridge.integration.test.js +4 -1
  309. package/lib-es/families/mina/bridge.integration.test.js.map +1 -1
  310. package/lib-es/families/multiversx/synchronisation.integration.test.js +4 -1
  311. package/lib-es/families/multiversx/synchronisation.integration.test.js.map +1 -1
  312. package/lib-es/families/tezos/react.d.ts +2 -1
  313. package/lib-es/families/tezos/react.d.ts.map +1 -1
  314. package/lib-es/families/tezos/react.js +17 -0
  315. package/lib-es/families/tezos/react.js.map +1 -1
  316. package/lib-es/families/tezos/setup.d.ts +1 -4
  317. package/lib-es/families/tezos/setup.d.ts.map +1 -1
  318. package/lib-es/families/tezos/setup.js +2 -9
  319. package/lib-es/families/tezos/setup.js.map +1 -1
  320. package/lib-es/families/ton/bridge.integration.test.js +4 -1
  321. package/lib-es/families/ton/bridge.integration.test.js.map +1 -1
  322. package/lib-es/featureFlags/defaultFeatures.d.ts +2 -0
  323. package/lib-es/featureFlags/defaultFeatures.d.ts.map +1 -1
  324. package/lib-es/featureFlags/defaultFeatures.js +4 -0
  325. package/lib-es/featureFlags/defaultFeatures.js.map +1 -1
  326. package/lib-es/featureFlags/useFeature.d.ts +1 -1
  327. package/lib-es/featureFlags/useFeature.d.ts.map +1 -1
  328. package/lib-es/generated/bridge/js.d.ts +0 -1
  329. package/lib-es/generated/bridge/js.d.ts.map +1 -1
  330. package/lib-es/generated/bridge/js.js +0 -2
  331. package/lib-es/generated/bridge/js.js.map +1 -1
  332. package/lib-es/modularDrawer/hooks/modules/useLeftApyModule.d.ts +1 -0
  333. package/lib-es/modularDrawer/hooks/modules/useLeftApyModule.d.ts.map +1 -1
  334. package/lib-es/modularDrawer/hooks/modules/useLeftMarketTrendModule.d.ts +1 -0
  335. package/lib-es/modularDrawer/hooks/modules/useLeftMarketTrendModule.d.ts.map +1 -1
  336. package/lib-es/modularDrawer/hooks/modules/useRightMarketTrendModule.d.ts +1 -0
  337. package/lib-es/modularDrawer/hooks/modules/useRightMarketTrendModule.d.ts.map +1 -1
  338. package/lib-es/modularDrawer/hooks/useRightBalanceAsset.d.ts +6 -1
  339. package/lib-es/modularDrawer/hooks/useRightBalanceAsset.d.ts.map +1 -1
  340. package/lib-es/modularDrawer/hooks/useRightBalanceAsset.js +11 -14
  341. package/lib-es/modularDrawer/hooks/useRightBalanceAsset.js.map +1 -1
  342. package/lib-es/modularDrawer/hooks/useRightBalanceNetwork.d.ts +3 -1
  343. package/lib-es/modularDrawer/hooks/useRightBalanceNetwork.d.ts.map +1 -1
  344. package/lib-es/modularDrawer/hooks/useRightBalanceNetwork.js +3 -3
  345. package/lib-es/modularDrawer/hooks/useRightBalanceNetwork.js.map +1 -1
  346. package/lib-es/modularDrawer/modules/createAssetConfiguration.d.ts.map +1 -1
  347. package/lib-es/modularDrawer/modules/createAssetConfiguration.js +1 -0
  348. package/lib-es/modularDrawer/modules/createAssetConfiguration.js.map +1 -1
  349. package/lib-es/modularDrawer/utils/groupCurrenciesByProvider.d.ts +7 -0
  350. package/lib-es/modularDrawer/utils/groupCurrenciesByProvider.d.ts.map +1 -0
  351. package/lib-es/modularDrawer/utils/groupCurrenciesByProvider.js +17 -0
  352. package/lib-es/modularDrawer/utils/groupCurrenciesByProvider.js.map +1 -0
  353. package/lib-es/modularDrawer/utils/index.d.ts +2 -1
  354. package/lib-es/modularDrawer/utils/index.d.ts.map +1 -1
  355. package/lib-es/modularDrawer/utils/index.js +2 -1
  356. package/lib-es/modularDrawer/utils/index.js.map +1 -1
  357. package/lib-es/modularDrawer/utils/type.d.ts +18 -0
  358. package/lib-es/modularDrawer/utils/type.d.ts.map +1 -1
  359. package/lib-es/notifications/ServiceStatusProvider/entry-points.d.ts +3 -0
  360. package/lib-es/notifications/ServiceStatusProvider/entry-points.d.ts.map +1 -0
  361. package/lib-es/notifications/ServiceStatusProvider/entry-points.js +2 -0
  362. package/lib-es/notifications/ServiceStatusProvider/entry-points.js.map +1 -0
  363. package/lib-es/notifications/ServiceStatusProvider/index.d.ts +18 -1
  364. package/lib-es/notifications/ServiceStatusProvider/index.d.ts.map +1 -1
  365. package/lib-es/notifications/ServiceStatusProvider/index.js +47 -9
  366. package/lib-es/notifications/ServiceStatusProvider/index.js.map +1 -1
  367. package/lib-es/notifications/ServiceStatusProvider/index.test.d.ts +2 -0
  368. package/lib-es/notifications/ServiceStatusProvider/index.test.d.ts.map +1 -0
  369. package/lib-es/notifications/ServiceStatusProvider/index.test.js +86 -0
  370. package/lib-es/notifications/ServiceStatusProvider/index.test.js.map +1 -0
  371. package/lib-es/notifications/ServiceStatusProvider/ledger-components.d.ts +2 -0
  372. package/lib-es/notifications/ServiceStatusProvider/ledger-components.d.ts.map +1 -0
  373. package/lib-es/notifications/ServiceStatusProvider/ledger-components.js +14 -0
  374. package/lib-es/notifications/ServiceStatusProvider/ledger-components.js.map +1 -0
  375. package/lib-es/notifications/ServiceStatusProvider/mocks/ledgerStatus.d.ts +154 -0
  376. package/lib-es/notifications/ServiceStatusProvider/mocks/ledgerStatus.d.ts.map +1 -0
  377. package/lib-es/notifications/ServiceStatusProvider/mocks/ledgerStatus.js +1189 -0
  378. package/lib-es/notifications/ServiceStatusProvider/mocks/ledgerStatus.js.map +1 -0
  379. package/lib-es/notifications/ServiceStatusProvider/types.d.ts +3 -1
  380. package/lib-es/notifications/ServiceStatusProvider/types.d.ts.map +1 -1
  381. package/lib-es/wallet-api/react.d.ts +1 -1
  382. package/lib-es/wallet-api/react.d.ts.map +1 -1
  383. package/lib-es/wallet-api/react.js +1 -1
  384. package/lib-es/wallet-api/react.js.map +1 -1
  385. package/package.json +45 -45
  386. package/src/__tests__/test-helpers/bridge.ts +1 -1
  387. package/src/__tests__/test-helpers/environment.ts +2 -0
  388. package/src/apps/config.ts +1 -1
  389. package/src/bridge/generic-alpaca/alpaca/index.ts +4 -0
  390. package/src/bridge/generic-alpaca/createTransaction.ts +11 -0
  391. package/src/bridge/generic-alpaca/estimateMaxSpendable.ts +6 -3
  392. package/src/bridge/generic-alpaca/getAccountShape.ts +13 -3
  393. package/src/bridge/generic-alpaca/getTransactionStatus.ts +6 -4
  394. package/src/bridge/generic-alpaca/prepareTransaction.ts +59 -6
  395. package/src/bridge/generic-alpaca/signOperation.ts +8 -2
  396. package/src/bridge/generic-alpaca/signer/index.ts +44 -1
  397. package/src/bridge/generic-alpaca/signer/signTransaction.ts +10 -0
  398. package/src/bridge/generic-alpaca/tests/estimateMaxSpendable.test.ts +15 -1
  399. package/src/bridge/generic-alpaca/tests/prepareTransaction.test.ts +1 -0
  400. package/src/bridge/generic-alpaca/tests/signOperation.test.ts +2 -2
  401. package/src/bridge/generic-alpaca/types.ts +13 -2
  402. package/src/bridge/generic-alpaca/utils.test.ts +65 -0
  403. package/src/bridge/generic-alpaca/utils.ts +42 -30
  404. package/src/bridge/impl.ts +1 -0
  405. package/src/bridge/react/BridgeSync.tsx +17 -3
  406. package/src/bridge/syncSessionManager/index.test.ts +151 -0
  407. package/src/bridge/syncSessionManager/index.ts +93 -0
  408. package/src/deposit/deposit.integration.test.ts +41 -2
  409. package/src/e2e/data/deviceLabelsData.ts +2 -2
  410. package/src/e2e/enum/Account.ts +13 -0
  411. package/src/e2e/enum/DeviceLabels.ts +2 -8
  412. package/src/e2e/enum/Network.ts +1 -0
  413. package/src/e2e/families/bitcoin.ts +33 -1
  414. package/src/e2e/families/tezos.ts +13 -4
  415. package/src/e2e/models/Swap.ts +8 -0
  416. package/src/e2e/speculos.ts +26 -35
  417. package/src/exchange/providers/swap.ts +2 -2
  418. package/src/families/canton/bridge/mock.ts +1 -0
  419. package/src/families/canton/config.ts +2 -0
  420. package/src/families/celo/bridge.integration.test.ts +4 -1
  421. package/src/families/cosmos/datasets/__snapshots__/babylon.integration.test.ts.snap +2 -2
  422. package/src/families/cosmos/datasets/__snapshots__/cosmos.integration.test.ts.snap +299 -4
  423. package/src/families/cosmos/datasets/__snapshots__/cryptoOrg.integration.test.ts.snap +2 -2
  424. package/src/families/cosmos/datasets/__snapshots__/injective.integration.test.ts.snap +2 -2
  425. package/src/families/cosmos/datasets/__snapshots__/mantra.integration.test.ts.snap +2 -2
  426. package/src/families/cosmos/datasets/__snapshots__/osmosis.integration.test.ts.snap +2 -2
  427. package/src/families/cosmos/datasets/__snapshots__/persistence.integration.test.ts.snap +4 -4
  428. package/src/families/cosmos/datasets/__snapshots__/stargaze.integration.test.ts.snap +2 -2
  429. package/src/families/cosmos/datasets/__snapshots__/xion.integration.test.ts.snap +2 -2
  430. package/src/families/cosmos/datasets/axelar.integration.test.ts +4 -1
  431. package/src/families/cosmos/datasets/desmos.integration.test.ts +4 -1
  432. package/src/families/cosmos/datasets/onomy.integration.test.ts +4 -1
  433. package/src/families/evm/config.ts +26 -0
  434. package/src/families/filecoin/bridge.integration.test.ts +4 -1
  435. package/src/families/internet_computer/__snapshots__/bridge.integration.test.ts.snap +60 -3
  436. package/src/families/mina/bridge.integration.test.ts +4 -1
  437. package/src/families/multiversx/synchronisation.integration.test.ts +5 -1
  438. package/src/families/polkadot/__snapshots__/bridge.integration.test.ts.snap +50 -4
  439. package/src/families/stacks/__snapshots__/bridge.integration.test.ts.snap +23 -3
  440. package/src/families/stellar/__snapshots__/bridge.integration.test.ts.snap +1490 -60
  441. package/src/families/tezos/react.ts +20 -1
  442. package/src/families/tezos/setup.ts +3 -22
  443. package/src/families/ton/bridge.integration.test.ts +4 -1
  444. package/src/featureFlags/defaultFeatures.ts +4 -0
  445. package/src/generated/bridge/js.ts +0 -2
  446. package/src/modularDrawer/hooks/useRightBalanceAsset.tsx +26 -21
  447. package/src/modularDrawer/hooks/useRightBalanceNetwork.tsx +4 -2
  448. package/src/modularDrawer/modules/createAssetConfiguration.ts +1 -0
  449. package/src/modularDrawer/utils/groupCurrenciesByProvider.ts +27 -0
  450. package/src/modularDrawer/utils/index.ts +2 -0
  451. package/src/modularDrawer/utils/type.ts +19 -0
  452. package/src/notifications/ServiceStatusProvider/entry-points.ts +3 -0
  453. package/src/notifications/ServiceStatusProvider/index.test.ts +102 -0
  454. package/src/notifications/ServiceStatusProvider/index.tsx +61 -13
  455. package/src/notifications/ServiceStatusProvider/ledger-components.ts +13 -0
  456. package/src/notifications/ServiceStatusProvider/mocks/ledgerStatus.ts +1188 -0
  457. package/src/notifications/ServiceStatusProvider/types.ts +4 -1
  458. package/src/wallet-api/react.ts +3 -3
  459. package/src/families/celo/__snapshots__/bridge.integration.test.ts.snap +0 -285
  460. package/src/families/cosmos/datasets/__snapshots__/axelar.integration.test.ts.snap +0 -45
  461. package/src/families/cosmos/datasets/__snapshots__/desmos.integration.test.ts.snap +0 -45
  462. package/src/families/cosmos/datasets/__snapshots__/onomy.integration.test.ts.snap +0 -45
  463. package/src/families/filecoin/__snapshots__/bridge.integration.test.ts.snap +0 -242
  464. package/src/families/mina/__snapshots__/bridge.integration.test.ts.snap +0 -169
  465. package/src/families/ton/__snapshots__/bridge.integration.test.ts.snap +0 -338
@@ -0,0 +1,1189 @@
1
+ export const mockLedgerStatus = {
2
+ page: {
3
+ id: "yy4gq34bqqlj",
4
+ name: "Ledger",
5
+ url: "https://status.ledger.com",
6
+ time_zone: "Europe/Paris",
7
+ updated_at: "2025-09-10T21:20:50.318+02:00",
8
+ },
9
+ components: [
10
+ {
11
+ id: "18242295ktpj",
12
+ name: "Algorand (ALGO)",
13
+ status: "operational",
14
+ created_at: "2024-02-08T13:34:23.043+01:00",
15
+ updated_at: "2024-02-12T13:53:08.183+01:00",
16
+ position: 1,
17
+ description: null,
18
+ showcase: true,
19
+ start_date: "2024-02-08",
20
+ group_id: "5s70mmvpv8xr",
21
+ page_id: "yy4gq34bqqlj",
22
+ group: false,
23
+ only_show_if_degraded: false,
24
+ },
25
+ {
26
+ id: "w3kfy4rvn2vg",
27
+ name: "Ledger Live Manager",
28
+ status: "operational",
29
+ created_at: "2025-09-02T10:46:45.681+02:00",
30
+ updated_at: "2025-09-02T10:46:58.048+02:00",
31
+ position: 1,
32
+ description: null,
33
+ showcase: false,
34
+ start_date: null,
35
+ group_id: null,
36
+ page_id: "yy4gq34bqqlj",
37
+ group: true,
38
+ only_show_if_degraded: false,
39
+ components: ["wqcn71cr1s8p", "vqjkv6bgc33w"],
40
+ },
41
+ {
42
+ id: "wqcn71cr1s8p",
43
+ name: "Ledger Application Store",
44
+ status: "operational",
45
+ created_at: "2025-09-02T10:46:45.706+02:00",
46
+ updated_at: "2025-09-02T10:46:45.706+02:00",
47
+ position: 1,
48
+ description: null,
49
+ showcase: true,
50
+ start_date: "1993-02-18",
51
+ group_id: "w3kfy4rvn2vg",
52
+ page_id: "yy4gq34bqqlj",
53
+ group: false,
54
+ only_show_if_degraded: false,
55
+ },
56
+ {
57
+ id: "5s70mmvpv8xr",
58
+ name: "Ledger Explorers",
59
+ status: "major_outage",
60
+ created_at: "2022-01-06T14:53:59.522+01:00",
61
+ updated_at: "2025-09-02T10:46:58.058+02:00",
62
+ position: 2,
63
+ description: null,
64
+ showcase: false,
65
+ start_date: null,
66
+ group_id: null,
67
+ page_id: "yy4gq34bqqlj",
68
+ group: true,
69
+ only_show_if_degraded: false,
70
+ components: [
71
+ "18242295ktpj",
72
+ "d4kh7sr4d2kr",
73
+ "6lx3wypbpl4j",
74
+ "44l3sqlg0wy2",
75
+ "b7j1m8sffyzq",
76
+ "0tw921vg78q8",
77
+ "12145wws376b",
78
+ "bw7br8wq4g3v",
79
+ "zcjh9tcywq6m",
80
+ "s67wdgyhnjh1",
81
+ "cj43s3m8kwzx",
82
+ "czbk7tcl3zw8",
83
+ "l7ttjmnntn8c",
84
+ "6g1xhhk7lbz1",
85
+ "t13zrbrlcx7x",
86
+ "4cssb6qhnmkf",
87
+ "sdcxr9z1w6y7",
88
+ "3jwy52t860kn",
89
+ "4jf1h2l10467",
90
+ "b67tffzf8lgl",
91
+ "dyqm0v8tm6bt",
92
+ "b0ldvx9ddm3w",
93
+ "9gmtst59g2ng",
94
+ "gpjl8xzy0sc2",
95
+ "k5m3g5x0xz46",
96
+ "lc7pdg9r7z4c",
97
+ "tn81hdc4g9f3",
98
+ "cptlwkq9lqh3",
99
+ "z6pnwrdhr7yj",
100
+ "8ktqk2tjvqhz",
101
+ "6rr4jzhs02mk",
102
+ "0st9pnsk96f4",
103
+ "vqgx6z98jy3r",
104
+ "84jnzlx50zxm",
105
+ "88qh2fjk7j44",
106
+ "x3912wqzm4vf",
107
+ "82kb5k0pk9kd",
108
+ "92cm8zq4yhkz",
109
+ "3w3zp7swcxzy",
110
+ "ndtzqkb7qr08",
111
+ "xg3chp61pxc5",
112
+ "jbgcls2w6ckx",
113
+ "vn32g8447jvn",
114
+ ],
115
+ },
116
+ {
117
+ id: "d4kh7sr4d2kr",
118
+ name: "Aptos (APT)",
119
+ status: "major_outage",
120
+ created_at: "2025-09-02T09:15:20.144+02:00",
121
+ updated_at: "2025-09-10T20:51:48.774+02:00",
122
+ position: 2,
123
+ description: null,
124
+ showcase: true,
125
+ start_date: "2024-12-30",
126
+ group_id: "5s70mmvpv8xr",
127
+ page_id: "yy4gq34bqqlj",
128
+ group: false,
129
+ only_show_if_degraded: false,
130
+ },
131
+ {
132
+ id: "vqjkv6bgc33w",
133
+ name: "Ledger Live Security Services",
134
+ status: "operational",
135
+ created_at: "2025-09-02T11:00:03.770+02:00",
136
+ updated_at: "2025-09-02T11:00:25.692+02:00",
137
+ position: 2,
138
+ description: null,
139
+ showcase: true,
140
+ start_date: "1993-02-18",
141
+ group_id: "w3kfy4rvn2vg",
142
+ page_id: "yy4gq34bqqlj",
143
+ group: false,
144
+ only_show_if_degraded: false,
145
+ },
146
+ {
147
+ id: "6lx3wypbpl4j",
148
+ name: "Avalanche (AVAXC)",
149
+ status: "operational",
150
+ created_at: "2025-09-02T09:16:28.800+02:00",
151
+ updated_at: "2025-09-02T09:17:04.974+02:00",
152
+ position: 3,
153
+ description: null,
154
+ showcase: true,
155
+ start_date: "2023-03-31",
156
+ group_id: "5s70mmvpv8xr",
157
+ page_id: "yy4gq34bqqlj",
158
+ group: false,
159
+ only_show_if_degraded: false,
160
+ },
161
+ {
162
+ id: "9071p3j58cpn",
163
+ name: "Buy",
164
+ status: "operational",
165
+ created_at: "2025-09-02T10:44:44.049+02:00",
166
+ updated_at: "2025-09-02T11:02:22.526+02:00",
167
+ position: 3,
168
+ description: null,
169
+ showcase: true,
170
+ start_date: "2023-10-09",
171
+ group_id: null,
172
+ page_id: "yy4gq34bqqlj",
173
+ group: false,
174
+ only_show_if_degraded: false,
175
+ },
176
+ {
177
+ id: "44l3sqlg0wy2",
178
+ name: "Binance (BNB)",
179
+ status: "partial_outage",
180
+ created_at: "2025-09-02T09:18:56.985+02:00",
181
+ updated_at: "2025-09-10T20:53:35.370+02:00",
182
+ position: 4,
183
+ description: null,
184
+ showcase: true,
185
+ start_date: "2021-08-12",
186
+ group_id: "5s70mmvpv8xr",
187
+ page_id: "yy4gq34bqqlj",
188
+ group: false,
189
+ only_show_if_degraded: false,
190
+ },
191
+ {
192
+ id: "43jzy9pnszfk",
193
+ name: "Earn Dashboard",
194
+ status: "operational",
195
+ created_at: "2025-09-02T10:47:11.763+02:00",
196
+ updated_at: "2025-09-02T11:02:22.534+02:00",
197
+ position: 4,
198
+ description: null,
199
+ showcase: true,
200
+ start_date: "2023-10-10",
201
+ group_id: null,
202
+ page_id: "yy4gq34bqqlj",
203
+ group: false,
204
+ only_show_if_degraded: false,
205
+ },
206
+ {
207
+ id: "b7j1m8sffyzq",
208
+ name: "Bitcoin (BTC)",
209
+ status: "operational",
210
+ created_at: "2025-09-02T09:58:37.815+02:00",
211
+ updated_at: "2025-09-02T10:42:03.552+02:00",
212
+ position: 5,
213
+ description: null,
214
+ showcase: true,
215
+ start_date: "1993-02-18",
216
+ group_id: "5s70mmvpv8xr",
217
+ page_id: "yy4gq34bqqlj",
218
+ group: false,
219
+ only_show_if_degraded: false,
220
+ },
221
+ {
222
+ id: "n7rjhchg79ry",
223
+ name: "Countervalue API",
224
+ status: "major_outage",
225
+ created_at: "2025-09-02T10:47:28.814+02:00",
226
+ updated_at: "2025-09-10T21:00:46.659+02:00",
227
+ position: 5,
228
+ description: null,
229
+ showcase: true,
230
+ start_date: "1993-02-18",
231
+ group_id: null,
232
+ page_id: "yy4gq34bqqlj",
233
+ group: false,
234
+ only_show_if_degraded: false,
235
+ },
236
+ {
237
+ id: "0tw921vg78q8",
238
+ name: "Bitcoin Cash (BCH)",
239
+ status: "operational",
240
+ created_at: "2025-09-02T09:59:15.821+02:00",
241
+ updated_at: "2025-09-02T10:42:03.559+02:00",
242
+ position: 6,
243
+ description: null,
244
+ showcase: true,
245
+ start_date: "2020-11-17",
246
+ group_id: "5s70mmvpv8xr",
247
+ page_id: "yy4gq34bqqlj",
248
+ group: false,
249
+ only_show_if_degraded: false,
250
+ },
251
+ {
252
+ id: "w9f5z4wl54c3",
253
+ name: "Crypto Assets Service",
254
+ status: "operational",
255
+ created_at: "2025-09-02T10:47:56.899+02:00",
256
+ updated_at: "2025-09-02T11:02:31.887+02:00",
257
+ position: 6,
258
+ description: null,
259
+ showcase: true,
260
+ start_date: "2024-07-23",
261
+ group_id: null,
262
+ page_id: "yy4gq34bqqlj",
263
+ group: false,
264
+ only_show_if_degraded: false,
265
+ },
266
+ {
267
+ id: "12145wws376b",
268
+ name: "Bitcoin Gold (BTG)",
269
+ status: "operational",
270
+ created_at: "2025-09-02T10:00:02.412+02:00",
271
+ updated_at: "2025-09-02T10:42:03.566+02:00",
272
+ position: 7,
273
+ description: null,
274
+ showcase: true,
275
+ start_date: "1993-02-18",
276
+ group_id: "5s70mmvpv8xr",
277
+ page_id: "yy4gq34bqqlj",
278
+ group: false,
279
+ only_show_if_degraded: false,
280
+ },
281
+ {
282
+ id: "n27q7wmk80zn",
283
+ name: "Cloud Sync",
284
+ status: "operational",
285
+ created_at: "2025-09-02T10:48:14.879+02:00",
286
+ updated_at: "2025-09-02T11:02:35.534+02:00",
287
+ position: 7,
288
+ description: null,
289
+ showcase: true,
290
+ start_date: "2024-08-07",
291
+ group_id: null,
292
+ page_id: "yy4gq34bqqlj",
293
+ group: false,
294
+ only_show_if_degraded: false,
295
+ },
296
+ {
297
+ id: "bw7br8wq4g3v",
298
+ name: "Cardano (ADA)",
299
+ status: "operational",
300
+ created_at: "2025-09-02T10:00:24.295+02:00",
301
+ updated_at: "2025-09-02T10:42:03.573+02:00",
302
+ position: 8,
303
+ description: null,
304
+ showcase: true,
305
+ start_date: "2023-03-01",
306
+ group_id: "5s70mmvpv8xr",
307
+ page_id: "yy4gq34bqqlj",
308
+ group: false,
309
+ only_show_if_degraded: false,
310
+ },
311
+ {
312
+ id: "q4hqklr2tz1d",
313
+ name: "Swap API",
314
+ status: "major_outage",
315
+ created_at: "2025-09-02T10:48:37.543+02:00",
316
+ updated_at: "2025-09-10T20:56:10.899+02:00",
317
+ position: 8,
318
+ description: null,
319
+ showcase: true,
320
+ start_date: "2020-10-23",
321
+ group_id: null,
322
+ page_id: "yy4gq34bqqlj",
323
+ group: false,
324
+ only_show_if_degraded: false,
325
+ },
326
+ {
327
+ id: "zcjh9tcywq6m",
328
+ name: "Casper (CSPR)",
329
+ status: "operational",
330
+ created_at: "2025-09-02T10:00:48.028+02:00",
331
+ updated_at: "2025-09-02T10:42:03.579+02:00",
332
+ position: 9,
333
+ description: null,
334
+ showcase: true,
335
+ start_date: "2023-08-16",
336
+ group_id: "5s70mmvpv8xr",
337
+ page_id: "yy4gq34bqqlj",
338
+ group: false,
339
+ only_show_if_degraded: false,
340
+ },
341
+ {
342
+ id: "0qf2fs33n3kg",
343
+ name: "Tezos Bakers API",
344
+ status: "operational",
345
+ created_at: "2025-09-02T10:49:37.975+02:00",
346
+ updated_at: "2025-09-02T11:02:22.566+02:00",
347
+ position: 9,
348
+ description: null,
349
+ showcase: true,
350
+ start_date: "1993-02-18",
351
+ group_id: null,
352
+ page_id: "yy4gq34bqqlj",
353
+ group: false,
354
+ only_show_if_degraded: false,
355
+ },
356
+ {
357
+ id: "s67wdgyhnjh1",
358
+ name: "Celo (CELO)",
359
+ status: "operational",
360
+ created_at: "2025-09-02T10:01:15.338+02:00",
361
+ updated_at: "2025-09-02T10:42:03.586+02:00",
362
+ position: 10,
363
+ description: null,
364
+ showcase: true,
365
+ start_date: "2022-07-07",
366
+ group_id: "5s70mmvpv8xr",
367
+ page_id: "yy4gq34bqqlj",
368
+ group: false,
369
+ only_show_if_degraded: false,
370
+ },
371
+ {
372
+ id: "khlb4rsdgz71",
373
+ name: "Trustchain",
374
+ status: "operational",
375
+ created_at: "2025-09-02T10:50:01.071+02:00",
376
+ updated_at: "2025-09-02T11:02:22.573+02:00",
377
+ position: 10,
378
+ description: null,
379
+ showcase: true,
380
+ start_date: "2024-08-07",
381
+ group_id: null,
382
+ page_id: "yy4gq34bqqlj",
383
+ group: false,
384
+ only_show_if_degraded: false,
385
+ },
386
+ {
387
+ id: "cj43s3m8kwzx",
388
+ name: "Cosmos (ATOM)",
389
+ status: "operational",
390
+ created_at: "2025-09-02T10:01:35.470+02:00",
391
+ updated_at: "2025-09-02T10:42:08.207+02:00",
392
+ position: 11,
393
+ description: null,
394
+ showcase: true,
395
+ start_date: "1993-02-18",
396
+ group_id: "5s70mmvpv8xr",
397
+ page_id: "yy4gq34bqqlj",
398
+ group: false,
399
+ only_show_if_degraded: false,
400
+ },
401
+ {
402
+ id: "b95bzk3y8k8y",
403
+ name: "NFT Metadata Service",
404
+ status: "operational",
405
+ created_at: "2025-09-02T10:50:25.010+02:00",
406
+ updated_at: "2025-09-02T11:02:22.580+02:00",
407
+ position: 11,
408
+ description: null,
409
+ showcase: true,
410
+ start_date: "2022-05-26",
411
+ group_id: null,
412
+ page_id: "yy4gq34bqqlj",
413
+ group: false,
414
+ only_show_if_degraded: false,
415
+ },
416
+ {
417
+ id: "czbk7tcl3zw8",
418
+ name: "Cronos (CRO)",
419
+ status: "operational",
420
+ created_at: "2025-09-02T10:02:03.246+02:00",
421
+ updated_at: "2025-09-02T10:42:08.215+02:00",
422
+ position: 12,
423
+ description: null,
424
+ showcase: true,
425
+ start_date: "2022-03-17",
426
+ group_id: "5s70mmvpv8xr",
427
+ page_id: "yy4gq34bqqlj",
428
+ group: false,
429
+ only_show_if_degraded: false,
430
+ },
431
+ {
432
+ id: "lz6n3lkzgdlb",
433
+ name: "Ledger Website",
434
+ status: "operational",
435
+ created_at: "2025-09-02T10:50:45.912+02:00",
436
+ updated_at: "2025-09-02T11:02:22.586+02:00",
437
+ position: 12,
438
+ description: null,
439
+ showcase: true,
440
+ start_date: "2024-04-15",
441
+ group_id: null,
442
+ page_id: "yy4gq34bqqlj",
443
+ group: false,
444
+ only_show_if_degraded: false,
445
+ },
446
+ {
447
+ id: "l7ttjmnntn8c",
448
+ name: "Dash (DASH)",
449
+ status: "operational",
450
+ created_at: "2025-09-02T10:02:23.376+02:00",
451
+ updated_at: "2025-09-02T10:42:08.222+02:00",
452
+ position: 13,
453
+ description: null,
454
+ showcase: true,
455
+ start_date: "1993-02-18",
456
+ group_id: "5s70mmvpv8xr",
457
+ page_id: "yy4gq34bqqlj",
458
+ group: false,
459
+ only_show_if_degraded: false,
460
+ },
461
+ {
462
+ id: "hy67t05tfcjp",
463
+ name: "Ledger Quest",
464
+ status: "operational",
465
+ created_at: "2025-09-02T10:51:04.245+02:00",
466
+ updated_at: "2025-09-02T11:02:22.593+02:00",
467
+ position: 13,
468
+ description: null,
469
+ showcase: true,
470
+ start_date: "2023-04-26",
471
+ group_id: null,
472
+ page_id: "yy4gq34bqqlj",
473
+ group: false,
474
+ only_show_if_degraded: false,
475
+ },
476
+ {
477
+ id: "6g1xhhk7lbz1",
478
+ name: "Decred (DCR)",
479
+ status: "operational",
480
+ created_at: "2025-09-02T10:02:43.503+02:00",
481
+ updated_at: "2025-09-02T10:42:08.228+02:00",
482
+ position: 14,
483
+ description: null,
484
+ showcase: true,
485
+ start_date: "1993-02-18",
486
+ group_id: "5s70mmvpv8xr",
487
+ page_id: "yy4gq34bqqlj",
488
+ group: false,
489
+ only_show_if_degraded: false,
490
+ },
491
+ {
492
+ id: "pxgn88x9z0cd",
493
+ name: "Ledger Recover",
494
+ status: "operational",
495
+ created_at: "2025-09-02T10:51:23.479+02:00",
496
+ updated_at: "2025-09-02T11:02:22.600+02:00",
497
+ position: 14,
498
+ description: null,
499
+ showcase: true,
500
+ start_date: "2024-02-01",
501
+ group_id: null,
502
+ page_id: "yy4gq34bqqlj",
503
+ group: false,
504
+ only_show_if_degraded: false,
505
+ },
506
+ {
507
+ id: "t13zrbrlcx7x",
508
+ name: "Digibyte (DGB)",
509
+ status: "operational",
510
+ created_at: "2025-09-02T10:03:44.004+02:00",
511
+ updated_at: "2025-09-02T10:42:08.234+02:00",
512
+ position: 15,
513
+ description: null,
514
+ showcase: true,
515
+ start_date: "1993-02-18",
516
+ group_id: "5s70mmvpv8xr",
517
+ page_id: "yy4gq34bqqlj",
518
+ group: false,
519
+ only_show_if_degraded: false,
520
+ },
521
+ {
522
+ id: "9lcpyd0kv5dh",
523
+ name: "Loyalty Program",
524
+ status: "operational",
525
+ created_at: "2025-09-02T10:51:49.406+02:00",
526
+ updated_at: "2025-09-02T11:02:22.607+02:00",
527
+ position: 15,
528
+ description: null,
529
+ showcase: true,
530
+ start_date: "2023-02-22",
531
+ group_id: null,
532
+ page_id: "yy4gq34bqqlj",
533
+ group: false,
534
+ only_show_if_degraded: false,
535
+ },
536
+ {
537
+ id: "4cssb6qhnmkf",
538
+ name: "Dogecoin (DOGE)",
539
+ status: "operational",
540
+ created_at: "2025-09-02T10:04:01.757+02:00",
541
+ updated_at: "2025-09-02T10:42:08.241+02:00",
542
+ position: 16,
543
+ description: null,
544
+ showcase: true,
545
+ start_date: "1993-02-18",
546
+ group_id: "5s70mmvpv8xr",
547
+ page_id: "yy4gq34bqqlj",
548
+ group: false,
549
+ only_show_if_degraded: false,
550
+ },
551
+ {
552
+ id: "3wtk28v5y07z",
553
+ name: "Card Program",
554
+ status: "operational",
555
+ created_at: "2025-09-02T10:52:10.330+02:00",
556
+ updated_at: "2025-09-02T11:02:22.615+02:00",
557
+ position: 16,
558
+ description: null,
559
+ showcase: true,
560
+ start_date: "2024-10-16",
561
+ group_id: null,
562
+ page_id: "yy4gq34bqqlj",
563
+ group: false,
564
+ only_show_if_degraded: false,
565
+ },
566
+ {
567
+ id: "sdcxr9z1w6y7",
568
+ name: "Dydx (DYDX)",
569
+ status: "operational",
570
+ created_at: "2025-09-02T10:04:18.303+02:00",
571
+ updated_at: "2025-09-02T10:42:08.248+02:00",
572
+ position: 17,
573
+ description: null,
574
+ showcase: true,
575
+ start_date: "2024-10-14",
576
+ group_id: "5s70mmvpv8xr",
577
+ page_id: "yy4gq34bqqlj",
578
+ group: false,
579
+ only_show_if_degraded: false,
580
+ },
581
+ {
582
+ id: "3jwy52t860kn",
583
+ name: "Elrond (EGLD)",
584
+ status: "operational",
585
+ created_at: "2022-01-06T14:53:59.542+01:00",
586
+ updated_at: "2025-09-02T10:42:08.253+02:00",
587
+ position: 18,
588
+ description: null,
589
+ showcase: true,
590
+ start_date: "2022-01-06",
591
+ group_id: "5s70mmvpv8xr",
592
+ page_id: "yy4gq34bqqlj",
593
+ group: false,
594
+ only_show_if_degraded: false,
595
+ },
596
+ {
597
+ id: "4jf1h2l10467",
598
+ name: "Ethereum (ETH)",
599
+ status: "operational",
600
+ created_at: "2025-09-02T10:04:48.143+02:00",
601
+ updated_at: "2025-09-02T10:42:03.647+02:00",
602
+ position: 19,
603
+ description: null,
604
+ showcase: true,
605
+ start_date: "1993-02-18",
606
+ group_id: "5s70mmvpv8xr",
607
+ page_id: "yy4gq34bqqlj",
608
+ group: false,
609
+ only_show_if_degraded: false,
610
+ },
611
+ {
612
+ id: "b67tffzf8lgl",
613
+ name: "Ethereum Classic (ETC)",
614
+ status: "operational",
615
+ created_at: "2025-09-02T10:05:03.234+02:00",
616
+ updated_at: "2025-09-02T10:42:03.654+02:00",
617
+ position: 20,
618
+ description: null,
619
+ showcase: true,
620
+ start_date: "1993-02-18",
621
+ group_id: "5s70mmvpv8xr",
622
+ page_id: "yy4gq34bqqlj",
623
+ group: false,
624
+ only_show_if_degraded: false,
625
+ },
626
+ {
627
+ id: "dyqm0v8tm6bt",
628
+ name: "Filecoin (FIL)",
629
+ status: "operational",
630
+ created_at: "2025-09-02T10:05:25.567+02:00",
631
+ updated_at: "2025-09-02T10:42:03.661+02:00",
632
+ position: 21,
633
+ description: null,
634
+ showcase: true,
635
+ start_date: "2023-02-23",
636
+ group_id: "5s70mmvpv8xr",
637
+ page_id: "yy4gq34bqqlj",
638
+ group: false,
639
+ only_show_if_degraded: false,
640
+ },
641
+ {
642
+ id: "b0ldvx9ddm3w",
643
+ name: "Hedera (HBAR)",
644
+ status: "operational",
645
+ created_at: "2025-09-02T10:26:04.643+02:00",
646
+ updated_at: "2025-09-02T10:42:03.668+02:00",
647
+ position: 22,
648
+ description: null,
649
+ showcase: true,
650
+ start_date: "2023-02-24",
651
+ group_id: "5s70mmvpv8xr",
652
+ page_id: "yy4gq34bqqlj",
653
+ group: false,
654
+ only_show_if_degraded: false,
655
+ },
656
+ {
657
+ id: "9gmtst59g2ng",
658
+ name: "Horizen (ZEN)",
659
+ status: "operational",
660
+ created_at: "2025-09-02T10:20:13.355+02:00",
661
+ updated_at: "2025-09-02T10:42:03.673+02:00",
662
+ position: 23,
663
+ description: null,
664
+ showcase: true,
665
+ start_date: "1993-02-18",
666
+ group_id: "5s70mmvpv8xr",
667
+ page_id: "yy4gq34bqqlj",
668
+ group: false,
669
+ only_show_if_degraded: false,
670
+ },
671
+ {
672
+ id: "gpjl8xzy0sc2",
673
+ name: "Internet Computer (ICP)",
674
+ status: "operational",
675
+ created_at: "2025-09-02T10:21:05.696+02:00",
676
+ updated_at: "2025-09-02T10:42:03.679+02:00",
677
+ position: 24,
678
+ description: null,
679
+ showcase: true,
680
+ start_date: "2023-10-18",
681
+ group_id: "5s70mmvpv8xr",
682
+ page_id: "yy4gq34bqqlj",
683
+ group: false,
684
+ only_show_if_degraded: false,
685
+ },
686
+ {
687
+ id: "k5m3g5x0xz46",
688
+ name: "Icon (ICX)",
689
+ status: "operational",
690
+ created_at: "2025-09-02T10:21:33.308+02:00",
691
+ updated_at: "2025-09-02T10:42:03.686+02:00",
692
+ position: 25,
693
+ description: null,
694
+ showcase: true,
695
+ start_date: "2025-08-15",
696
+ group_id: "5s70mmvpv8xr",
697
+ page_id: "yy4gq34bqqlj",
698
+ group: false,
699
+ only_show_if_degraded: false,
700
+ },
701
+ {
702
+ id: "lc7pdg9r7z4c",
703
+ name: "Komodo (KMD)",
704
+ status: "operational",
705
+ created_at: "2025-09-02T10:22:01.687+02:00",
706
+ updated_at: "2025-09-02T10:42:03.691+02:00",
707
+ position: 26,
708
+ description: null,
709
+ showcase: true,
710
+ start_date: "1993-02-18",
711
+ group_id: "5s70mmvpv8xr",
712
+ page_id: "yy4gq34bqqlj",
713
+ group: false,
714
+ only_show_if_degraded: false,
715
+ },
716
+ {
717
+ id: "tn81hdc4g9f3",
718
+ name: "Litecoin (LTC)",
719
+ status: "operational",
720
+ created_at: "2025-09-02T10:22:25.343+02:00",
721
+ updated_at: "2025-09-02T10:42:03.697+02:00",
722
+ position: 27,
723
+ description: null,
724
+ showcase: true,
725
+ start_date: "1993-02-18",
726
+ group_id: "5s70mmvpv8xr",
727
+ page_id: "yy4gq34bqqlj",
728
+ group: false,
729
+ only_show_if_degraded: false,
730
+ },
731
+ {
732
+ id: "cptlwkq9lqh3",
733
+ name: "Mina (MINA)",
734
+ status: "operational",
735
+ created_at: "2025-09-05T07:22:11.809+02:00",
736
+ updated_at: "2025-09-05T07:22:36.897+02:00",
737
+ position: 28,
738
+ description: null,
739
+ showcase: true,
740
+ start_date: "2025-09-05",
741
+ group_id: "5s70mmvpv8xr",
742
+ page_id: "yy4gq34bqqlj",
743
+ group: false,
744
+ only_show_if_degraded: false,
745
+ },
746
+ {
747
+ id: "z6pnwrdhr7yj",
748
+ name: "Near Protocol (NEAR)",
749
+ status: "operational",
750
+ created_at: "2025-09-02T10:25:01.211+02:00",
751
+ updated_at: "2025-09-05T07:22:36.904+02:00",
752
+ position: 29,
753
+ description: null,
754
+ showcase: true,
755
+ start_date: "2023-02-14",
756
+ group_id: "5s70mmvpv8xr",
757
+ page_id: "yy4gq34bqqlj",
758
+ group: false,
759
+ only_show_if_degraded: false,
760
+ },
761
+ {
762
+ id: "8ktqk2tjvqhz",
763
+ name: "Peercoin (PPC)",
764
+ status: "operational",
765
+ created_at: "2025-09-02T10:25:26.567+02:00",
766
+ updated_at: "2025-09-05T07:22:36.911+02:00",
767
+ position: 30,
768
+ description: null,
769
+ showcase: true,
770
+ start_date: "1993-02-18",
771
+ group_id: "5s70mmvpv8xr",
772
+ page_id: "yy4gq34bqqlj",
773
+ group: false,
774
+ only_show_if_degraded: false,
775
+ },
776
+ {
777
+ id: "6rr4jzhs02mk",
778
+ name: "Pivx (PIVX)",
779
+ status: "operational",
780
+ created_at: "2025-09-02T10:25:47.209+02:00",
781
+ updated_at: "2025-09-05T07:22:36.917+02:00",
782
+ position: 31,
783
+ description: null,
784
+ showcase: true,
785
+ start_date: "1993-02-18",
786
+ group_id: "5s70mmvpv8xr",
787
+ page_id: "yy4gq34bqqlj",
788
+ group: false,
789
+ only_show_if_degraded: false,
790
+ },
791
+ {
792
+ id: "0st9pnsk96f4",
793
+ name: "Polkadot (DOT)",
794
+ status: "operational",
795
+ created_at: "2025-09-02T10:35:56.880+02:00",
796
+ updated_at: "2025-09-05T07:22:36.924+02:00",
797
+ position: 32,
798
+ description: null,
799
+ showcase: true,
800
+ start_date: "2021-03-04",
801
+ group_id: "5s70mmvpv8xr",
802
+ page_id: "yy4gq34bqqlj",
803
+ group: false,
804
+ only_show_if_degraded: false,
805
+ },
806
+ {
807
+ id: "vqgx6z98jy3r",
808
+ name: "Polygon (MATIC)",
809
+ status: "operational",
810
+ created_at: "2025-09-02T10:36:15.011+02:00",
811
+ updated_at: "2025-09-05T07:22:29.558+02:00",
812
+ position: 33,
813
+ description: null,
814
+ showcase: true,
815
+ start_date: "2022-03-14",
816
+ group_id: "5s70mmvpv8xr",
817
+ page_id: "yy4gq34bqqlj",
818
+ group: false,
819
+ only_show_if_degraded: false,
820
+ },
821
+ {
822
+ id: "84jnzlx50zxm",
823
+ name: "Qtum (QTUM)",
824
+ status: "operational",
825
+ created_at: "2025-09-02T10:36:38.500+02:00",
826
+ updated_at: "2025-09-05T07:22:29.564+02:00",
827
+ position: 34,
828
+ description: null,
829
+ showcase: true,
830
+ start_date: "1993-02-18",
831
+ group_id: "5s70mmvpv8xr",
832
+ page_id: "yy4gq34bqqlj",
833
+ group: false,
834
+ only_show_if_degraded: false,
835
+ },
836
+ {
837
+ id: "88qh2fjk7j44",
838
+ name: "Ripple (XRP)",
839
+ status: "operational",
840
+ created_at: "2025-09-02T10:36:58.097+02:00",
841
+ updated_at: "2025-09-05T07:22:29.570+02:00",
842
+ position: 35,
843
+ description: null,
844
+ showcase: true,
845
+ start_date: "1993-02-18",
846
+ group_id: "5s70mmvpv8xr",
847
+ page_id: "yy4gq34bqqlj",
848
+ group: false,
849
+ only_show_if_degraded: false,
850
+ },
851
+ {
852
+ id: "x3912wqzm4vf",
853
+ name: "Solana (SOL)",
854
+ status: "operational",
855
+ created_at: "2025-09-02T10:37:16.125+02:00",
856
+ updated_at: "2025-09-05T07:22:29.576+02:00",
857
+ position: 36,
858
+ description: null,
859
+ showcase: true,
860
+ start_date: "2022-03-17",
861
+ group_id: "5s70mmvpv8xr",
862
+ page_id: "yy4gq34bqqlj",
863
+ group: false,
864
+ only_show_if_degraded: false,
865
+ },
866
+ {
867
+ id: "82kb5k0pk9kd",
868
+ name: "Stacks (STX)",
869
+ status: "operational",
870
+ created_at: "2025-09-02T10:37:35.455+02:00",
871
+ updated_at: "2025-09-05T07:22:29.582+02:00",
872
+ position: 37,
873
+ description: null,
874
+ showcase: true,
875
+ start_date: "2024-01-23",
876
+ group_id: "5s70mmvpv8xr",
877
+ page_id: "yy4gq34bqqlj",
878
+ group: false,
879
+ only_show_if_degraded: false,
880
+ },
881
+ {
882
+ id: "92cm8zq4yhkz",
883
+ name: "Stellar (XLM)",
884
+ status: "operational",
885
+ created_at: "2025-09-02T10:37:57.268+02:00",
886
+ updated_at: "2025-09-05T07:22:29.588+02:00",
887
+ position: 38,
888
+ description: null,
889
+ showcase: true,
890
+ start_date: "1993-02-18",
891
+ group_id: "5s70mmvpv8xr",
892
+ page_id: "yy4gq34bqqlj",
893
+ group: false,
894
+ only_show_if_degraded: false,
895
+ },
896
+ {
897
+ id: "3w3zp7swcxzy",
898
+ name: "Tezos (XTZ)",
899
+ status: "operational",
900
+ created_at: "2025-09-02T10:38:17.234+02:00",
901
+ updated_at: "2025-09-05T07:22:29.594+02:00",
902
+ position: 39,
903
+ description: null,
904
+ showcase: true,
905
+ start_date: "1993-02-18",
906
+ group_id: "5s70mmvpv8xr",
907
+ page_id: "yy4gq34bqqlj",
908
+ group: false,
909
+ only_show_if_degraded: false,
910
+ },
911
+ {
912
+ id: "ndtzqkb7qr08",
913
+ name: "Toncoin (TON)",
914
+ status: "operational",
915
+ created_at: "2025-09-02T10:38:38.658+02:00",
916
+ updated_at: "2025-09-05T07:22:29.600+02:00",
917
+ position: 40,
918
+ description: null,
919
+ showcase: true,
920
+ start_date: "2024-07-02",
921
+ group_id: "5s70mmvpv8xr",
922
+ page_id: "yy4gq34bqqlj",
923
+ group: false,
924
+ only_show_if_degraded: false,
925
+ },
926
+ {
927
+ id: "xg3chp61pxc5",
928
+ name: "Tron (TRX)",
929
+ status: "operational",
930
+ created_at: "2025-09-02T10:38:55.682+02:00",
931
+ updated_at: "2025-09-05T07:22:29.606+02:00",
932
+ position: 41,
933
+ description: null,
934
+ showcase: true,
935
+ start_date: "1993-02-18",
936
+ group_id: "5s70mmvpv8xr",
937
+ page_id: "yy4gq34bqqlj",
938
+ group: false,
939
+ only_show_if_degraded: false,
940
+ },
941
+ {
942
+ id: "jbgcls2w6ckx",
943
+ name: "Vechain (VET)",
944
+ status: "operational",
945
+ created_at: "2025-09-02T10:39:15.170+02:00",
946
+ updated_at: "2025-09-05T07:22:29.612+02:00",
947
+ position: 42,
948
+ description: null,
949
+ showcase: true,
950
+ start_date: "2024-04-05",
951
+ group_id: "5s70mmvpv8xr",
952
+ page_id: "yy4gq34bqqlj",
953
+ group: false,
954
+ only_show_if_degraded: false,
955
+ },
956
+ {
957
+ id: "vn32g8447jvn",
958
+ name: "Zcash (ZEC)",
959
+ status: "operational",
960
+ created_at: "2025-09-02T10:39:33.635+02:00",
961
+ updated_at: "2025-09-05T07:22:29.619+02:00",
962
+ position: 43,
963
+ description: null,
964
+ showcase: true,
965
+ start_date: "1993-02-18",
966
+ group_id: "5s70mmvpv8xr",
967
+ page_id: "yy4gq34bqqlj",
968
+ group: false,
969
+ only_show_if_degraded: false,
970
+ },
971
+ ],
972
+ incidents: [
973
+ {
974
+ id: "868mk5nvzppj",
975
+ name: "Binance (BNB) Mainnet Degraded Service",
976
+ status: "investigating",
977
+ created_at: "2025-09-10T20:53:35.341+02:00",
978
+ updated_at: "2025-09-10T21:02:07.676+02:00",
979
+ monitoring_at: null,
980
+ resolved_at: null,
981
+ impact: "major",
982
+ shortlink: "https://stspg.io/189q3mqbz94v",
983
+ started_at: "2025-09-10T20:53:35.334+02:00",
984
+ page_id: "yy4gq34bqqlj",
985
+ incident_updates: [
986
+ {
987
+ id: "yj304qwlg949",
988
+ status: "investigating",
989
+ body: "We are experiencing technical issues with the Binance Mainnet within Ledger Live. This may impact your ability to send transactions, add accounts and view your balances or transaction history. Our team is actively working to resolve the issue. For urgent transactions, please refer to \u003ca href='https://support.ledger.com/hc/en-us/articles/16750092252701-What-to-do-in-case-of-network-service-disruption?support=true'\u003ethis article\u003c/a\u003e for alternative methods.",
990
+ incident_id: "868mk5nvzppj",
991
+ created_at: "2025-09-10T20:53:35.409+02:00",
992
+ updated_at: "2025-09-10T20:53:35.409+02:00",
993
+ display_at: "2025-09-10T20:53:35.409+02:00",
994
+ affected_components: [
995
+ {
996
+ code: "44l3sqlg0wy2",
997
+ name: "Ledger Explorers - Binance (BNB)",
998
+ old_status: "operational",
999
+ new_status: "partial_outage",
1000
+ },
1001
+ ],
1002
+ deliver_notifications: false,
1003
+ custom_tweet: null,
1004
+ tweet_id: null,
1005
+ },
1006
+ ],
1007
+ components: [
1008
+ {
1009
+ id: "44l3sqlg0wy2",
1010
+ name: "Binance (BNB)",
1011
+ status: "partial_outage",
1012
+ created_at: "2025-09-02T09:18:56.985+02:00",
1013
+ updated_at: "2025-09-10T20:53:35.370+02:00",
1014
+ position: 4,
1015
+ description: null,
1016
+ showcase: true,
1017
+ start_date: "2021-08-12",
1018
+ group_id: "5s70mmvpv8xr",
1019
+ page_id: "yy4gq34bqqlj",
1020
+ group: false,
1021
+ only_show_if_degraded: false,
1022
+ },
1023
+ ],
1024
+ reminder_intervals: "[]",
1025
+ },
1026
+ {
1027
+ id: "p6j6npc1gq1f",
1028
+ name: "Service Countervalue API 5xx response rate.",
1029
+ status: "investigating",
1030
+ created_at: "2025-09-10T21:00:46.633+02:00",
1031
+ updated_at: "2025-09-10T21:00:46.702+02:00",
1032
+ monitoring_at: null,
1033
+ resolved_at: null,
1034
+ impact: "critical",
1035
+ shortlink: "https://stspg.io/90tcq6214v92",
1036
+ started_at: "2025-09-10T21:00:46.629+02:00",
1037
+ page_id: "yy4gq34bqqlj",
1038
+ incident_updates: [
1039
+ {
1040
+ id: "rb75fs794d2c",
1041
+ status: "investigating",
1042
+ body: "We have detected an issue with Ledger services for service Countervalue API. This is being investigated by the team.",
1043
+ incident_id: "p6j6npc1gq1f",
1044
+ created_at: "2025-09-10T21:00:46.699+02:00",
1045
+ updated_at: "2025-09-10T21:00:46.699+02:00",
1046
+ display_at: "2025-09-10T21:00:46.699+02:00",
1047
+ affected_components: [
1048
+ {
1049
+ code: "n7rjhchg79ry",
1050
+ name: "Countervalue API",
1051
+ old_status: "operational",
1052
+ new_status: "major_outage",
1053
+ },
1054
+ ],
1055
+ deliver_notifications: false,
1056
+ custom_tweet: null,
1057
+ tweet_id: null,
1058
+ },
1059
+ ],
1060
+ components: [
1061
+ {
1062
+ id: "n7rjhchg79ry",
1063
+ name: "Countervalue API",
1064
+ status: "major_outage",
1065
+ created_at: "2025-09-02T10:47:28.814+02:00",
1066
+ updated_at: "2025-09-10T21:00:46.659+02:00",
1067
+ position: 5,
1068
+ description: null,
1069
+ showcase: true,
1070
+ start_date: "1993-02-18",
1071
+ group_id: null,
1072
+ page_id: "yy4gq34bqqlj",
1073
+ group: false,
1074
+ only_show_if_degraded: false,
1075
+ },
1076
+ ],
1077
+ reminder_intervals: "[]",
1078
+ },
1079
+ {
1080
+ id: "hjs1ztlqt43j",
1081
+ name: "Service Swap API is down.",
1082
+ status: "investigating",
1083
+ created_at: "2025-09-10T20:56:10.870+02:00",
1084
+ updated_at: "2025-09-10T20:56:10.942+02:00",
1085
+ monitoring_at: null,
1086
+ resolved_at: null,
1087
+ impact: "critical",
1088
+ shortlink: "https://stspg.io/2fdj0ls9ygnx",
1089
+ started_at: "2025-09-10T20:56:10.865+02:00",
1090
+ page_id: "yy4gq34bqqlj",
1091
+ incident_updates: [
1092
+ {
1093
+ id: "2cr4th3gjqw0",
1094
+ status: "investigating",
1095
+ body: "We have detected an issue with service Swap API. This is being investigated by the team.",
1096
+ incident_id: "hjs1ztlqt43j",
1097
+ created_at: "2025-09-10T20:56:10.940+02:00",
1098
+ updated_at: "2025-09-10T20:56:10.940+02:00",
1099
+ display_at: "2025-09-10T20:56:10.940+02:00",
1100
+ affected_components: [
1101
+ {
1102
+ code: "q4hqklr2tz1d",
1103
+ name: "Swap API",
1104
+ old_status: "operational",
1105
+ new_status: "major_outage",
1106
+ },
1107
+ ],
1108
+ deliver_notifications: false,
1109
+ custom_tweet: null,
1110
+ tweet_id: null,
1111
+ },
1112
+ ],
1113
+ components: [
1114
+ {
1115
+ id: "q4hqklr2tz1d",
1116
+ name: "Swap API",
1117
+ status: "major_outage",
1118
+ created_at: "2025-09-02T10:48:37.543+02:00",
1119
+ updated_at: "2025-09-10T20:56:10.899+02:00",
1120
+ position: 8,
1121
+ description: null,
1122
+ showcase: true,
1123
+ start_date: "2020-10-23",
1124
+ group_id: null,
1125
+ page_id: "yy4gq34bqqlj",
1126
+ group: false,
1127
+ only_show_if_degraded: false,
1128
+ },
1129
+ ],
1130
+ reminder_intervals: "[]",
1131
+ },
1132
+ {
1133
+ id: "7s0q14x2b4k0",
1134
+ name: "Aptos (APT) Mainnet Service Disruption",
1135
+ status: "investigating",
1136
+ created_at: "2025-09-10T20:51:48.736+02:00",
1137
+ updated_at: "2025-09-10T20:51:48.829+02:00",
1138
+ monitoring_at: null,
1139
+ resolved_at: null,
1140
+ impact: "critical",
1141
+ shortlink: "https://stspg.io/ygcy6y4jwzg8",
1142
+ started_at: "2025-09-10T20:51:48.727+02:00",
1143
+ page_id: "yy4gq34bqqlj",
1144
+ incident_updates: [
1145
+ {
1146
+ id: "n51979tww3ml",
1147
+ status: "investigating",
1148
+ body: "We are experiencing technical issues with the Aptos Mainnet within Ledger Live. This may impact your ability to send transactions, add accounts and view your balances or transaction history. Our team is actively working to resolve the issue. For urgent transactions, please refer to \u003ca href='https://support.ledger.com/hc/en-us/articles/16750092252701-What-to-do-in-case-of-network-service-disruption?support=true'\u003ethis article\u003c/a\u003e for alternative methods.",
1149
+ incident_id: "7s0q14x2b4k0",
1150
+ created_at: "2025-09-10T20:51:48.826+02:00",
1151
+ updated_at: "2025-09-10T20:51:48.826+02:00",
1152
+ display_at: "2025-09-10T20:51:48.826+02:00",
1153
+ affected_components: [
1154
+ {
1155
+ code: "d4kh7sr4d2kr",
1156
+ name: "Ledger Explorers - Aptos (APT)",
1157
+ old_status: "operational",
1158
+ new_status: "major_outage",
1159
+ },
1160
+ ],
1161
+ deliver_notifications: false,
1162
+ custom_tweet: null,
1163
+ tweet_id: null,
1164
+ },
1165
+ ],
1166
+ components: [
1167
+ {
1168
+ id: "d4kh7sr4d2kr",
1169
+ name: "Aptos (APT)",
1170
+ status: "major_outage",
1171
+ created_at: "2025-09-02T09:15:20.144+02:00",
1172
+ updated_at: "2025-09-10T20:51:48.774+02:00",
1173
+ position: 2,
1174
+ description: null,
1175
+ showcase: true,
1176
+ start_date: "2024-12-30",
1177
+ group_id: "5s70mmvpv8xr",
1178
+ page_id: "yy4gq34bqqlj",
1179
+ group: false,
1180
+ only_show_if_degraded: false,
1181
+ },
1182
+ ],
1183
+ reminder_intervals: "[]",
1184
+ },
1185
+ ],
1186
+ scheduled_maintenances: [],
1187
+ status: { indicator: "major", description: "Partial System Outage" },
1188
+ };
1189
+ //# sourceMappingURL=ledgerStatus.js.map