1. Mar 15, 2023
  2. 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
  3. Mar 09, 2023
  4. Mar 08, 2023
  5. Mar 02, 2023
    • Alexander Samusev's avatar
      [CI] refactor benchmark (#1235) · fe67380d
      Alexander Samusev authored
      * [WIP][CI] refactor benchmark
      
      * change image for benches
      
      * disable job
      
      * fix docker image
      
      * fix ws var
      
      * fwd output to file
      
      * fix var
      
      * rm bench for kusama and westend
      
      * set log-level info
      
      * mv benchmarks to artifacts
      
      * publish results to prom
      
      * fix typo, add some echoes
      
      * substitute curly brackets
      
      * fix naming
      
      * return pipeline
      
      * rename build jobs
      fe67380d
  6. 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
  7. Feb 28, 2023
  8. Feb 27, 2023
  9. Feb 21, 2023
  10. Feb 16, 2023
  11. Feb 14, 2023
  12. Feb 13, 2023
    • Tarik Gul's avatar
      chore: add e2e-tests to single lint configuration (#1226) · f546abca
      Tarik Gul authored
      * chore: add e2e-tests to linting
      
      * cleanup package.json
      f546abca
    • Tarik Gul's avatar
      chore(deps): update pjs, add small e2e-config (#1225) · 80f4e2cc
      Tarik Gul authored
      * chore(deps: update pjs, add small e2e-config)
      
      * lint
      80f4e2cc
    • 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
  13. Feb 12, 2023
    • Tarik Gul's avatar
      perf: rework benchmarks (#1044) · 31898647
      Tarik Gul authored
      * perf: rework benchmarks
      
      * abstract everything into a utils folder
      
      * fix spacing
      
      * fix file structure naming to camelcase
      
      * add accounts balance benchmarks
      
      * expand the benches readme
      
      * add benches for accoutns vesting info
      
      * add accounts validate to the benchmarks
      
      * add accounts staking endpoints
      
      * add pallets staking progress
      
      * add pallets storage
      
      * add readme
      
      * add pallets palletid storage storageId endpoint
      
      * add paras endpoint
      
      * add /paras/leases/current
      
      * added /paras/auctions/current
      
      * add /paras/crowdloans
      
      * add `/paras/{paraId}/crowdloans-info`
      
      * add /paras/{paraId}/leas-info
      
      * update readme
      
      * fix logging
      
      * change returned logging
      
      * add comment to sidecar script api
      
      * switch scripts to use a different launchProcess response
      
      * fix e2e-helpers statusresponse
      
      * fix stdout and stderr
      
      * add script to package.json
      
      * cleanup script
      
      * add WRK_TIME_LENGTH
      
      * fix grumble
      
      * fix grumbles
      
      * delete benchmarks.txt
      
      * add benchmarks.txt to gitignore
      
      * cleanup consoles
      
      * start docs
      
      * cleanup code
      
      * finish benchmark docs
      
      * cleanup script
      
      * add accounts convert to benchmarks
      
      * rename blocks
      
      * add blocks header
      
      * add blocks extrinsics
      
      * add blocks head
      
      * add blocks head header
      
      * add node network
      
      * add node transaction pool
      
      * add node version
      
      * add nomination pools
      
      * add runtime spec
      
      * add transaction material
      
      * add pallets staking validators
      
      * add pallets errors
      
      * add pallets errors errorItem
      
      * allow linting of scripts, and lint the scripts directory
      
      * set parser types for e2e scripts
      
      * update readme
      
      * add license
      
      * update benchmarks readme
      
      * fix grumble
      31898647
  14. Feb 09, 2023
  15. Feb 08, 2023
  16. Feb 07, 2023
  17. Feb 01, 2023
  18. Jan 30, 2023
  19. Jan 25, 2023
  20. Jan 24, 2023
    • Tarik Gul's avatar
      1585605d
    • 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
  21. Jan 23, 2023
  22. Jan 19, 2023
  23. Jan 18, 2023