Skip to content
  1. Jun 26, 2023
  2. Jun 13, 2023
  3. May 29, 2023
  4. May 26, 2023
    • Dominique's avatar
      Update pjs deps & fixes (#1285) · 110b01ad
      Dominique authored
      - Updated pjs api deps.
      - Updated code of `isFrozen` so that we support both past & future runtimes.
      - Removed one test from latest-e2e-tests of kusama because this pallet was removed.
      - Updated docs related to the `isFrozen` change.
      110b01ad
  5. May 08, 2023
  6. May 05, 2023
  7. May 01, 2023
  8. Apr 19, 2023
  9. Apr 12, 2023
    • Tarik Gul's avatar
      fix!: update polkadot-js, and adjust for breaking changes... · 89648821
      Tarik Gul authored
      
      fix!: update polkadot-js, and adjust for breaking changes (`/accounts/{accountId}/balance-info`) (#1255)
      
      * chore(deps): update polkadot-js
      
      * Fix polkadot primitive candidate type cast in paras headers endpoint
      
      * Update polkadot-js
      
      * fix the accounts endpoint
      
      * Fix tests, and cleanup responses
      
      * Update polkadot historical e2e-tests
      
      * Update kusama historical e2e-tests
      
      * Update westend historical e2e-tests
      
      * Update statemine historical e2e tests
      
      * Add inline docs
      
      * Update docs
      
      * lint
      
      * Update docs/src/openapi-v1.yaml
      
      Co-authored-by: default avatarCameron Marshall <[email protected]>
      
      * rebuild docs
      
      ---------
      
      Co-authored-by: default avatarCameron Marshall <[email protected]>
      89648821
  10. Apr 11, 2023
  11. Apr 06, 2023
  12. Apr 04, 2023
  13. Mar 23, 2023
  14. Mar 15, 2023
  15. Mar 13, 2023
    • Cameron Marshall's avatar
      feat: add pallets/dispatchables endpoint (#1209) · b685ac24
      Cameron Marshall authored
      * test pallet dispatch call
      
      * update fetchDispatchables service
      
      * add e2e tests for dispatchables endpoint
      update docs
      
      * update getDispatchablesItemMeta
      
      * update dispatchables unit tests
      
      * update abstractpalletservice
      
      * update docs, fix mispells
      
      * update docs and remove log
      b685ac24
  16. Mar 01, 2023
    • Cameron Marshall's avatar
      feat: add pallets/consts endpoint (#1210) · 97c1ca63
      Cameron Marshall authored
      * add endpoint for pallet constants
      add unit and e2e tests
      
      * update docs for consts endpoint
      
      * merged master
      added statemint consts e2e tests
      
      * update abstractpalletservice
      
      * add newline in response mocks
      
      * yarn lint
      
      * update docs
      97c1ca63
  17. Feb 28, 2023
  18. Feb 14, 2023
  19. Feb 13, 2023
    • Cameron Marshall's avatar
      feat: add pallets/events endpoint (#1204) · 289d804c
      Cameron Marshall authored
      * add events pallet events endpoint
      add unit tests
      add e2e test
      
      * update docs for pallet events endpoint
      
      * add statemint e2e tests for pallet events endpoint
      
      * update events references
      
      * remove duplicate IPalletEventsParam reference
      
      * lint
      
      * add events check to getPalletMetadataType
      add unhappy path check to fetchEventItem unit tests
      
      * merge master
      
      * update abstratpalletservice types
      refactored events items assignment
      
      * update error message to reflect more accurately when the pallet metadata has no items to query of a specific field type
      
      * debug historicApi pallets
      
      * update check for isValidPalletName to use the pallet meta data instead of the historicApi
      
      * update error log for when a pallet id is not recognized
      
      * yarn lint
      289d804c
  20. Feb 07, 2023
  21. Feb 01, 2023
  22. Jan 30, 2023
  23. Jan 25, 2023
  24. Jan 24, 2023
    • Dominique's avatar
      feat: add `/pallets/staking/validators` endpoint (#1045) · 70e0a367
      Dominique authored
      
      
      * Added the `validators` endpoint
      - Controller, service, response type
      - Returns all validators addresses and their corresponding status (active / waiting)
      
      * Validators Info per block
      - Added the `at` query param
      - Modified the Service accordingly
      
      * yarn lint
      
      * Changes `array` to `Set` (James Super Tip)
      - Changed the data structure used to save the validators in the active set from an `array` to a `Set` (based on James suggestion)
      - Changed also the used functions accordingly.
      - Merged in one loop the check of which validator is in the active set and the population of the returned array.
      
      * Lint & Update docs
      - yarn lint
      - Added validators endpoint to the docs
      - Corrected other parts of the docs mentioned by the swagger as errors.
      
      * Added in latest e2e tests the validators endpoint
      
      * Changes from Tarik s comments
      
      * Adjustments in the docstring
      
      * Update src/services/pallets/PalletsStakingValidatorsService.ts
      
      Co-authored-by: default avatarTarik Gul <[email protected]>
      
      * yarn lint:fix
      
      Co-authored-by: default avatarTarik Gul <[email protected]>
      70e0a367
    • Tarik Gul's avatar
      docs: remove try it out option in docs (#1191) · 22f8fd47
      Tarik Gul authored
      22f8fd47
  25. Jan 23, 2023
    • Cameron Marshall's avatar
      feat: add /pallets/errors (#1176) · 65a08814
      Cameron Marshall authored
      * add controller and service for errors
      
      * add pallet errors endpoint
      
      * removed unused error query param
      
      * fix newline in response json
      
      * add abstract pallet service
      
      * add AbstractPallerService
      
      * remove dev log
      
      * change access modifier in abstract pallets
      
      * change fn name
      
      * add errors pallet to kusama
      
      * remove unused import
      remove newline
      
      * remove lower casing of pallet name in fetchErrors
      update latest polkadot e2e tests with PhragmentElection Pallet
      
      * update parsedPalletName
      65a08814
  26. Jan 18, 2023
  27. Jan 16, 2023
    • Cameron Marshall's avatar
      feat: add nomination pools support (#1095) · 7534b1e9
      Cameron Marshall authored
      * nomination pools
      
      * chore(deps): updated polkadot-js deps
      
      * feat: support for nomination pools
      
      * update tests
      
      * update nomination pool service
      
      * update test
      
      * remove historicApi as param
      
      * removed historicApi param from nomination pool info service
      
      * lint
      
      * update param info
      
      * update metadata arg, remove legacy docs
      
      * update open-api yml
      
      * update open api refs
      
      * add nomination pools controller to kusama and polkadot controllers
      
      * add comments to nomination pool service fns
      
      * add nomination pool latest e2e test
      7534b1e9
  28. Jan 10, 2023
    • Tarik Gul's avatar
      feat: add `/paras/head/included-candidates` and `/paras/head/backed-candidates` (#1166) · eb4add7a
      Tarik Gul authored
      * feat: add /paras/head
      
      * backed candidates endpoint
      
      * finalize the backed-candidate logic
      
      * fix grumble with return type
      
      * fix types and complete /paras/head logic
      
      * cleanup
      
      * add test for parasHead, and add at field for responses
      
      * add test for backed candidates
      
      * add docs
      
      * add inline docs
      
      * rework the endpoints
      
      * update docs
      
      * remove mute mock data
      
      * update endpoint descriptions
      
      * leases to heads
      
      * adjust inline comment
      
      * add the endpoints to the latest e2e tests
      
      * fix spacing
      eb4add7a
    • Tarik Gul's avatar
      chore(release): 14.2.3 (#1182) · 6070552b
      Tarik Gul authored
      v14.2.3
      6070552b
  29. Jan 06, 2023
  30. Dec 27, 2022
  31. Dec 22, 2022
  32. Dec 14, 2022
  33. Dec 07, 2022
  34. Nov 24, 2022