pdp2121
pdp2121
A linter should be added/implemented (in CI/CD as well) to identify potential errors, bugs, and add customized rules to prevent errors like [this](https://github.com/XRPLF/xrpl-dev-portal/issues/2651) from happening.
Replace manual types with xrpl.js types. For example: https://github.com/ripple/explorer/blob/f0d7385ed0506f7987aa157e7e257a45d9dd8324/src/containers/shared/components/Transaction/types.ts#L55-L70 should be replaced with `BaseTransaction`. Similar things applied to fields such as: https://github.com/ripple/explorer/blob/f0d7385ed0506f7987aa157e7e257a45d9dd8324/src/containers/shared/components/Transaction/DIDDelete/types.ts#L4-L6
## High Level Overview of Change This PR is trying to achieve the following: - Add voting (for fee voting) and uptime (similar to the existing page) for validators page....
The placeholder text on the search bar is changed with the introduction of token search (see [this PR](https://github.com/ripple/explorer/pull/1056)). The translations for this text will need to be updated so that...
The navigation menu on mobile view does not close when redirect to a new page from a search at the moment: 
Some comments regarding semantics in this pull request will need to be fixed: https://github.com/ripple/explorer/pull/1056
## Summary Obsolete indicator is only available in `feature` RPC response via `vetoed`, which is unavailable in non-admin mode. Another boolean field (e.g `obsolete`/`retired`) should be added to `feature` response...
## Context `ledger` RPC responses with `transactions` and `expand` options enabled are structurally different between APIv1 and APIv2 in the `transactions` array: For example: v1: ``` "transactions": [ { "validated":...
Since xrpl.js only offers Websocket client, it might be worth thinking about adding JSON-RPC client support (like xrpl-py) in the future to give developers transport flexibility rather than forcing WebSocket...
This PR includes newly generated scaffolding models and tests based on the [rippled-api-spec release v0.1.0-b1](https://github.com/ripple/rippled-api-spec/releases/tag/v0.1.0-b1). # First Release of OpenAPI Codegen Integration for xrpl-py ## Overview This pull request represents...