Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: integration tests setup #177

Draft
wants to merge 444 commits into
base: main
Choose a base branch
from
Draft

feat: integration tests setup #177

wants to merge 444 commits into from
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Feb 15, 2024

  1. feat: return gasUsed, gasPerPubdata, maxFeePerGas and maxPriorityFeeP…

    …erGas fields for transaction (#109)
    
    # What ❔
    
    Return `gasUsed`, `gasPerPubdata`, `maxFeePerGas` and
    `maxPriorityFeePerGas` fields for transaction.
    
    ## Why ❔
    
    For better UX we want to show gas and fee related fields on UI so we
    need to return these fields from the API first.
    
    ## Checklist
    
    <!-- Check your PR fulfills the following items. -->
    <!-- For draft PRs check the boxes as you complete them. -->
    
    - [X] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [X] Tests for the changes have been added / updated.
    vasyl-ivanchuk authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    0015f13 View commit details
    Browse the repository at this point in the history
  2. feat: add transaction error and revert reason (#110)

    # What ❔
    
    - fetch and store tx error and revert reason;
    - return tx error and revert reason via API;
    - display tx error on UI;
    
    ## Why ❔
    
    - fast way to see what's the reason of transaction failure;
    
    ## Checklist
    
    - [+] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [+] Tests for the changes have been added / updated.
    - [+] Documentation comments have been added / updated.
    Romsters authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    491f99a View commit details
    Browse the repository at this point in the history
  3. fix: add sepolia staging hostname (#111)

    # What ❔
    
    Sepolia staging hostname.
    
    - [X] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    vasyl-ivanchuk authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    05ea503 View commit details
    Browse the repository at this point in the history
  4. chore: readme fixes (#113)

    # What ❔
    
    - remove $ from copy-pasteable commands
    - add sepolia links
    Romsters authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    5b8b417 View commit details
    Browse the repository at this point in the history
  5. feat: show gas fields on UI (#114)

    # What ❔
    
    <img width="441" alt="image"
    src="https://github.com/matter-labs/block-explorer/assets/6553665/b69c7a82-4f3a-4afa-abc5-8b7385a5079d">
    
    ## Why ❔
    
    For better user experience it was requested to show gas fields and
    limits on UI.
    
    ## Checklist
    
    <!-- Check your PR fulfills the following items. -->
    <!-- For draft PRs check the boxes as you complete them. -->
    
    - [X] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [X] Tests for the changes have been added / updated.
    vasyl-ivanchuk authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    f0420a9 View commit details
    Browse the repository at this point in the history
  6. fix: api address contract endpoint to use creatorAddress field instea…

    …d of a separate call (#115)
    
    # What ❔
    
    Api contract endpoint to use `creatorAddress` field instead of a
    separate DB call to fetch txReceipt.
    
    ## Why ❔
    
    We don't need a DB call to fetch contract creator address.
    
    ## Checklist
    
    <!-- Check your PR fulfills the following items. -->
    <!-- For draft PRs check the boxes as you complete them. -->
    
    - [X] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [X] Tests for the changes have been added / updated.
    vasyl-ivanchuk authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    e366f30 View commit details
    Browse the repository at this point in the history
  7. test: update tests for sepolia (#112)

    # What ❔
    
    update ui tests for sepolia
    
    ## Why ❔
    
    keep tests up to date
    
    ## Checklist
    
    
    - [+ ] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [ +] Tests for the changes have been added / updated.
    - [- ] Documentation comments have been added / updated.
    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    bc75ffc View commit details
    Browse the repository at this point in the history
  8. fix: ignore parse log errors (#116)

    # What ❔
    
    - show logs without parsed event if it fails.
    
    ## Why ❔
    
    - currently it shows no logs at all if even one of many logs is failed
    to parse.
    
    This is a quick fix for now. The issue can be reproduced with proxy
    contracts if there are some events emitted which are defined in the
    implementation contract. To properly fix it we should use both proxy and
    implementation ABI.
    Romsters authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    93a290e View commit details
    Browse the repository at this point in the history
  9. feat: re-check tokens to save based on transfers after each block (#118)

    # What ❔
    
    - Save tokens which affected balances after processing every block.
    
    ## Why ❔
    
    - If token initially deployed didn't have all the required attributes we
    need to try to save it again later.
    
    ## Checklist
    
    - [+] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [+] Tests for the changes have been added / updated.
    Romsters authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    b1a3f01 View commit details
    Browse the repository at this point in the history
  10. fix: use liquidity tokens filter only on mainnet (#119)

    # What ❔
    
    Use liquidity tokens filter only on mainnet.
    
    ## Why ❔
    
    To show tokens without liquidity on testnets, local envs and
    hyperchains.
    
    ## Checklist
    
    <!-- Check your PR fulfills the following items. -->
    <!-- For draft PRs check the boxes as you complete them. -->
    
    - [X] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [X] Tests for the changes have been added / updated.
    vasyl-ivanchuk authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    4abbdeb View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    2c43123 View commit details
    Browse the repository at this point in the history
  12. feat: integration tests setup (#45)

    Romsters authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    bfd3e4c View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    c96bdb2 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    da270fc View commit details
    Browse the repository at this point in the history
  15. test: fix path to env

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    c7d1ef9 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    89d813f View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    e874c63 View commit details
    Browse the repository at this point in the history
  18. test: refactoring

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    d0953f1 View commit details
    Browse the repository at this point in the history
  19. test: restructure test solution

    abilevych authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    f28a726 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    558794a View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    2f3cbd9 View commit details
    Browse the repository at this point in the history
  22. Configuration menu
    Copy the full SHA
    73510cd View commit details
    Browse the repository at this point in the history
  23. chore: run lint

    abilevych authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    432eb84 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    e82821c View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    48dc19e View commit details
    Browse the repository at this point in the history
  26. chore: hooks / aligning tests suites

    abilevych authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    d3c46e1 View commit details
    Browse the repository at this point in the history
  27. Configuration menu
    Copy the full SHA
    35dbdd9 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    73d6afa View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    3c10056 View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    234994c View commit details
    Browse the repository at this point in the history
  31. chore: add global hooks

    abilevych authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    54094b0 View commit details
    Browse the repository at this point in the history
  32. chore: fix after lint

    abilevych authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    3c9dd96 View commit details
    Browse the repository at this point in the history
  33. Configuration menu
    Copy the full SHA
    09103da View commit details
    Browse the repository at this point in the history
  34. Configuration menu
    Copy the full SHA
    861c212 View commit details
    Browse the repository at this point in the history
  35. test: test with a cache

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    9f521a5 View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    4c8422b View commit details
    Browse the repository at this point in the history
  37. test: test with a cache

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    2d621d8 View commit details
    Browse the repository at this point in the history
  38. test: refactoring

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    4c75f2e View commit details
    Browse the repository at this point in the history
  39. Configuration menu
    Copy the full SHA
    c44a3c1 View commit details
    Browse the repository at this point in the history
  40. Configuration menu
    Copy the full SHA
    072a65c View commit details
    Browse the repository at this point in the history
  41. test: covering Contract API and Logs API endpoints

    Removed obsolete Wallet import
    amelnytskyi authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    5146686 View commit details
    Browse the repository at this point in the history
  42. test: covering Contract API and Logs API endpoints

    Fixed text suites/cases naming, adjusted beforeAll preconditions, added more checks to Logs TC
    amelnytskyi authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    d871f4e View commit details
    Browse the repository at this point in the history
  43. chore: update the package-lock.json

    abilevych authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    174a99b View commit details
    Browse the repository at this point in the history
  44. Configuration menu
    Copy the full SHA
    536a1e9 View commit details
    Browse the repository at this point in the history
  45. test: covering Contract API and Logs API endpoints

    Removed obsolete Wallet import
    amelnytskyi authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    aa49486 View commit details
    Browse the repository at this point in the history
  46. test: covering Contract API and Logs API endpoints

    Fixed text suites/cases naming, adjusted beforeAll preconditions, added more checks to Logs TC
    amelnytskyi authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    aa3f20f View commit details
    Browse the repository at this point in the history
  47. chore: update the package-lock.json

    abilevych authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    5888733 View commit details
    Browse the repository at this point in the history
  48. Configuration menu
    Copy the full SHA
    7e898a2 View commit details
    Browse the repository at this point in the history
  49. Refactoring of app-e2e.yml

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    2453deb View commit details
    Browse the repository at this point in the history
  50. Configuration menu
    Copy the full SHA
    22cb049 View commit details
    Browse the repository at this point in the history
  51. Configuration menu
    Copy the full SHA
    f08ad77 View commit details
    Browse the repository at this point in the history
  52. test: refactoring

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    ad97b4a View commit details
    Browse the repository at this point in the history
  53. Configuration menu
    Copy the full SHA
    84d5eb4 View commit details
    Browse the repository at this point in the history
  54. Configuration menu
    Copy the full SHA
    b990fa0 View commit details
    Browse the repository at this point in the history
  55. test: eslint refactoring

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    98235e8 View commit details
    Browse the repository at this point in the history
  56. Configuration menu
    Copy the full SHA
    d537d01 View commit details
    Browse the repository at this point in the history
  57. test: refactoring

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    518a037 View commit details
    Browse the repository at this point in the history
  58. test: refactoring

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    70b3ae5 View commit details
    Browse the repository at this point in the history
  59. test: fix unstable api test

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    2ef98d3 View commit details
    Browse the repository at this point in the history
  60. Configuration menu
    Copy the full SHA
    d89dac6 View commit details
    Browse the repository at this point in the history
  61. test: refactoring

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    e8036ea View commit details
    Browse the repository at this point in the history
  62. test: refactoring test name

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    04cf38c View commit details
    Browse the repository at this point in the history
  63. test: refactoring test name

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    d458c83 View commit details
    Browse the repository at this point in the history
  64. Configuration menu
    Copy the full SHA
    29a195a View commit details
    Browse the repository at this point in the history
  65. test: refactoring eslint

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    81be306 View commit details
    Browse the repository at this point in the history
  66. test: refactoring names

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    0fabc5e View commit details
    Browse the repository at this point in the history
  67. test: fix api tests

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    e0c1469 View commit details
    Browse the repository at this point in the history
  68. test: refactoring

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    8bae8a1 View commit details
    Browse the repository at this point in the history
  69. test: refactoring

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    534abb9 View commit details
    Browse the repository at this point in the history
  70. test: refactoring

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    3e707f8 View commit details
    Browse the repository at this point in the history
  71. Configuration menu
    Copy the full SHA
    fe83a3d View commit details
    Browse the repository at this point in the history
  72. test: refactoring eslint

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    d4e2329 View commit details
    Browse the repository at this point in the history
  73. Configuration menu
    Copy the full SHA
    f8def1b View commit details
    Browse the repository at this point in the history
  74. Configuration menu
    Copy the full SHA
    5b8527b View commit details
    Browse the repository at this point in the history
  75. test: fix eslint

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    c50eb52 View commit details
    Browse the repository at this point in the history
  76. Configuration menu
    Copy the full SHA
    d942650 View commit details
    Browse the repository at this point in the history
  77. Configuration menu
    Copy the full SHA
    fcc1786 View commit details
    Browse the repository at this point in the history
  78. test: fix links

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    061b2a6 View commit details
    Browse the repository at this point in the history
  79. test: refactoring

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    a092687 View commit details
    Browse the repository at this point in the history
  80. test: fix portal url

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    79f957c View commit details
    Browse the repository at this point in the history
  81. Configuration menu
    Copy the full SHA
    3b15958 View commit details
    Browse the repository at this point in the history
  82. chore: update the Blocks suite name

    abilevych authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    ad4a29c View commit details
    Browse the repository at this point in the history
  83. test: fix names in tests

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    6c2f3b4 View commit details
    Browse the repository at this point in the history
  84. test: refactoring

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    7266856 View commit details
    Browse the repository at this point in the history
  85. chore: api retry logic for tests

    abilevych authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    5b7c757 View commit details
    Browse the repository at this point in the history
  86. fix: lint issues

    abilevych authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    eccc828 View commit details
    Browse the repository at this point in the history
  87. chore: changed timeouts

    abilevych authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    0f6d373 View commit details
    Browse the repository at this point in the history
  88. Configuration menu
    Copy the full SHA
    220f57c View commit details
    Browse the repository at this point in the history
  89. chore: excluded unstable test

    abilevych authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    3ba69b3 View commit details
    Browse the repository at this point in the history
  90. chore: jest retry option, fix lint

    abilevych authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    71aac3b View commit details
    Browse the repository at this point in the history
  91. Configuration menu
    Copy the full SHA
    f083cab View commit details
    Browse the repository at this point in the history
  92. fix: lint issue

    abilevych authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    d47f898 View commit details
    Browse the repository at this point in the history
  93. chore: exclude gating test

    abilevych authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    eba11e8 View commit details
    Browse the repository at this point in the history
  94. chore: excluded unstable tests

    abilevych authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    f494903 View commit details
    Browse the repository at this point in the history
  95. Configuration menu
    Copy the full SHA
    0e2e2e8 View commit details
    Browse the repository at this point in the history
  96. Configuration menu
    Copy the full SHA
    0c18932 View commit details
    Browse the repository at this point in the history
  97. Configuration menu
    Copy the full SHA
    c5320fc View commit details
    Browse the repository at this point in the history
  98. chore: optimized integration API tests

    abilevych authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    0b4e29b View commit details
    Browse the repository at this point in the history
  99. chore: refactored jest config

    abilevych authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    82341ce View commit details
    Browse the repository at this point in the history
  100. chore: refactoring test retry method

    abilevych authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    6aafa19 View commit details
    Browse the repository at this point in the history
  101. test: covering tokens API endpoints tc1803 (#155)

    # What ❔
    
    Added test for TC id1803 /tokens/{address}/transfers endpoint
    
    ## Why ❔
    
    Expand test coverage - id1803 wasn't covered by autotest
    
    ## Checklist
    
    - [ +] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [ ] Tests for the changes have been added / updated.
    - [ ] Documentation comments have been added / updated.
    amelnytskyi authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    bba6b6c View commit details
    Browse the repository at this point in the history
  102. test: fix readme docker command (#158)

    # What ❔
    
    Fix a typo for deprecated docker command
    
    ## Why ❔
    
    to run command without an error
    
    ## Checklist
    
    
    - [ +] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [ -] Tests for the changes have been added / updated.
    - [ +] Documentation comments have been added / updated.
    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    0259377 View commit details
    Browse the repository at this point in the history
  103. test: covering Batches API and partially covered Transactions (#156)

    covering Batches API
    
    # What ❔
    
    1506 [Transactions] /transactions response returns elements (wasn't
    covered fully)
    1513 [Batches] /batches response returns elements (wasn't covered fully)
    1510 [Transactions] /address/{address}/logs response returns elements
    (wasn't covered fully)
    1656 [Transactions] Verify failed tx (new test)
    1655 [Transactions] Verify deployed the own ERC20 token contract in BE
    (new test)
    
    ## Why ❔
    
    Why are these changes done? - expanding test coverage
    
    ## Checklist
    
    - [ +] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [ +] Tests for the changes have been added / updated.
    - [ n/a] Documentation comments have been added / updated.
    amelnytskyi authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    fde87c4 View commit details
    Browse the repository at this point in the history
  104. feat: new automation tests for accounts API (#163)

    # What ❔
    
    - new API integration tests to cover account API functionality
    
    **_List of test cases for automation:_**
    
    - [x] [[Account API] /api?module=account&action=txlistinternal&address=
    response returns
    elements](https://allure.matterlabs.dev/project/11/test-cases/1852?treeId=22)
    - [x] [[Account API]
    /api?module=account&action=getminedblocks](https://allure.matterlabs.dev/project/11/test-cases/1807?treeId=22)
    - [x] [[Account API] /api?module=account&action=tokentx response returns
    elements](https://allure.matterlabs.dev/project/11/test-cases/1805?treeId=22)
    - [x] [[Account API] /api?module=account&action=txlistinternal response
    returns
    elements](https://allure.matterlabs.dev/project/11/test-cases/1804?treeId=22)
    - [x] [[Account API] /api?module=account&action=tokennfttx response
    returns
    elements](https://allure.matterlabs.dev/project/11/test-cases/1806?treeId=22)
    
    ## Why ❔
    
    - to increase coverage of the automation test suite and cover accounts
    API part
    
    ## Checklist
    
    
    - [ +] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [ +] Tests for the changes have been added / updated.
    - [ -] Documentation comments have been added / updated.
    olehbairak authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    5a6fd69 View commit details
    Browse the repository at this point in the history
  105. test: fixing gating transactions tests (#162)

    # What ❔
    
    Fixed disabled (xdescribe and xit)
    /transactions/{transactionHash}/transfers tests and turned them on back
    
    ## Why ❔
    
    /transactions/{transactionHash}/transfers tests were disabled since they
    were outdated
    
    ## Checklist
    
    
    - [ +] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [ +] Tests for the changes have been added / updated.
    - [ -] Documentation comments have been added / updated.
    amelnytskyi authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    dd7a456 View commit details
    Browse the repository at this point in the history
  106. Configuration menu
    Copy the full SHA
    8b68cd3 View commit details
    Browse the repository at this point in the history
  107. Configuration menu
    Copy the full SHA
    cdef776 View commit details
    Browse the repository at this point in the history
  108. feat: deprecate warning for goerli (#126)

    # What ❔
    
    Deprecate warning for Goerli network:
    <img width="1279" alt="image"
    src="https://github.com/matter-labs/block-explorer/assets/6553665/6f1e0117-3561-4d85-a2a4-dd8fc53b695a">
    
    
    ## Why ❔
    
    To warn users that we are ending support of Goerli testnet.
    
    ## Checklist
    
    <!-- Check your PR fulfills the following items. -->
    <!-- For draft PRs check the boxes as you complete them. -->
    
    - [X] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    vasyl-ivanchuk authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    0aeb85f View commit details
    Browse the repository at this point in the history
  109. Configuration menu
    Copy the full SHA
    467a359 View commit details
    Browse the repository at this point in the history
  110. Configuration menu
    Copy the full SHA
    6ef25c7 View commit details
    Browse the repository at this point in the history
  111. fix: header height when warning message is shown (#132)

    # What ❔
    
    Fix header height when warning message is shown.
    vasyl-ivanchuk authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    1f5cfdd View commit details
    Browse the repository at this point in the history
  112. fix: remove mainnet warning (#133)

    # What ❔
    
    Remove warning message for mainnet since we don't need it anymore.
    vasyl-ivanchuk authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    2931487 View commit details
    Browse the repository at this point in the history
  113. fix: don't save tokens whose symbols contain only special characters (#…

    …134)
    
    Do not try to save tokens whose symbols contain only special characters.
    
    Because it violates the token DB constraint.
    
    <!-- Check your PR fulfills the following items. -->
    <!-- For draft PRs check the boxes as you complete them. -->
    
    - [X] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [X] Tests for the changes have been added / updated.
    vasyl-ivanchuk authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    072650f View commit details
    Browse the repository at this point in the history
  114. fix: don't do prefetch request for tx search (#135)

    Remove prefetch reuest when search by tx hash.
    
    To be able to see search for tx that are in blockchain but hasn't been
    indexed yet.
    
    <!-- Check your PR fulfills the following items. -->
    <!-- For draft PRs check the boxes as you complete them. -->
    
    - [X] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    vasyl-ivanchuk authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    1fb36ba View commit details
    Browse the repository at this point in the history
  115. Configuration menu
    Copy the full SHA
    2b4e832 View commit details
    Browse the repository at this point in the history
  116. Configuration menu
    Copy the full SHA
    658105b View commit details
    Browse the repository at this point in the history
  117. Configuration menu
    Copy the full SHA
    4f4787b View commit details
    Browse the repository at this point in the history
  118. fix: add mainnet warning (tmp) (#139)

    # What ❔
    
    Add mainnet warning
    
    - [X] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [X] Tests for the changes have been added / updated.
    vasyl-ivanchuk authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    766bbbc View commit details
    Browse the repository at this point in the history
  119. feat: use multiple db transactions for blocks processing, use websock…

    …ets for RPC calls (#140)
    Romsters authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    1f415fb View commit details
    Browse the repository at this point in the history
  120. feat: automatic system alerts (#141)

    Romsters authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    a4f04ee View commit details
    Browse the repository at this point in the history
  121. Configuration menu
    Copy the full SHA
    022881a View commit details
    Browse the repository at this point in the history
  122. chore: fix dev discussions link (#143)

    # What ❔
    - Updates dev discussions link
    <!-- What are the changes this PR brings about? -->
    <!-- Example: This PR adds a PR template to the repo. -->
    <!-- (For bigger PRs adding more context is appreciated) -->
    
    ## Why ❔
    - We updated the link
    <!-- Why are these changes done? What goal do they contribute to? What
    are the principles behind them? -->
    <!-- Example: PR templates ensure PR reviewers, observers, and future
    iterators are in context about the evolution of repos. -->
    
    ## Checklist
    
    <!-- Check your PR fulfills the following items. -->
    <!-- For draft PRs check the boxes as you complete them. -->
    
    - [ ] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [ ] Tests for the changes have been added / updated.
    - [ ] Documentation comments have been added / updated.
    
    Co-authored-by: Vasyl Ivanchuk <[email protected]>
    2 people authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    c025fb1 View commit details
    Browse the repository at this point in the history
  123. test: add allure public reports (#68)

    updated workflow to make public allure reports
    
    current reports provide a link to a private url
    
    <!-- Check your PR fulfills the following items. -->
    <!-- For draft PRs check the boxes as you complete them. -->
    
    - [ + ] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [ n/a ] Tests for the changes have been added / updated.
    - [ n/a ] Documentation comments have been added / updated.
    
    ---------
    
    Co-authored-by: Vasyl Ivanchuk <[email protected]>
    pcheremu and vasyl-ivanchuk committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    2dc7bf7 View commit details
    Browse the repository at this point in the history
  124. fix: docs links (#150)

    Fix links to documentation.
    
    The documentation has been updated so we should use new links.
    
    <!-- Check your PR fulfills the following items. -->
    <!-- For draft PRs check the boxes as you complete them. -->
    
    - [X] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [X] Tests for the changes have been added / updated.
    vasyl-ivanchuk authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    c088201 View commit details
    Browse the repository at this point in the history
  125. feat: add data fetcher service (#145)

    # What ❔
    
    Add data fetcher service that can be vertically scaled.
    
    ## Why ❔
    
    Having data fetching vertically scaled we will be able to keep up with
    higher TPS.
    
    ## Checklist
    
    <!-- Check your PR fulfills the following items. -->
    <!-- For draft PRs check the boxes as you complete them. -->
    
    - [X] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [X] Tests for the changes have been added / updated.
    vasyl-ivanchuk authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    2a4fb10 View commit details
    Browse the repository at this point in the history
  126. fix: remove portal from header (#159)

    # What ❔
    
    - Remove Portal link from the top menu
    - Do not show an error reason for the failed transaction if it's empty
    - Docker compose starts services in production and not in development
    mode
    - Add zkVM filter option for solc compilers on the verification page
    
    ## Why ❔
    
    To fix bug reports / implement feature requests.
    
    ## Checklist
    
    <!-- Check your PR fulfills the following items. -->
    <!-- For draft PRs check the boxes as you complete them. -->
    
    - [X] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [X] Tests for the changes have been added / updated.
    
    ---------
    
    Co-authored-by: Oleh Bairak <[email protected]>
    2 people authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    eadefc0 View commit details
    Browse the repository at this point in the history
  127. fix: add data fetcher debug logs (#165)

    # What ❔
    
    Add more Data Fetcher debug logs.
    
    ## Why ❔
    
    For easier troubleshooting.
    
    ## Checklist
    
    <!-- Check your PR fulfills the following items. -->
    <!-- For draft PRs check the boxes as you complete them. -->
    
    - [X] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [X] Tests for the changes have been added / updated.
    vasyl-ivanchuk authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    3bb8694 View commit details
    Browse the repository at this point in the history
  128. test: fix a new line typos

    pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    b314bcb View commit details
    Browse the repository at this point in the history
  129. Configuration menu
    Copy the full SHA
    2a040b8 View commit details
    Browse the repository at this point in the history
  130. Configuration menu
    Copy the full SHA
    8386066 View commit details
    Browse the repository at this point in the history
  131. fix: remove docker version (#169)

    # What ❔
    
    Remove docker version
    
    ## Why ❔
    
    Because it's not necessary to specify it.
    vasyl-ivanchuk authored and pcheremu committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    926e590 View commit details
    Browse the repository at this point in the history
  132. fix: new one

    olehbairak committed Feb 15, 2024
    Configuration menu
    Copy the full SHA
    c549d97 View commit details
    Browse the repository at this point in the history
  133. Configuration menu
    Copy the full SHA
    e80043f View commit details
    Browse the repository at this point in the history
  134. Configuration menu
    Copy the full SHA
    343cf89 View commit details
    Browse the repository at this point in the history
  135. Update copying.feature

    added a new line
    pcheremu authored Feb 15, 2024
    Configuration menu
    Copy the full SHA
    d8d0a70 View commit details
    Browse the repository at this point in the history

Commits on Feb 16, 2024

  1. Configuration menu
    Copy the full SHA
    e3aa291 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2024

  1. fix: new test integration

    olehbairak committed Feb 23, 2024
    Configuration menu
    Copy the full SHA
    c054b5b View commit details
    Browse the repository at this point in the history
  2. fix: new one

    olehbairak committed Feb 23, 2024
    Configuration menu
    Copy the full SHA
    318c013 View commit details
    Browse the repository at this point in the history
  3. fix: new one

    olehbairak committed Feb 23, 2024
    Configuration menu
    Copy the full SHA
    0281351 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    06bffb0 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    36675b0 View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2024

  1. fix: review feedback

    olehbairak committed Feb 27, 2024
    Configuration menu
    Copy the full SHA
    4735b11 View commit details
    Browse the repository at this point in the history
  2. fix: new one

    olehbairak committed Feb 27, 2024
    Configuration menu
    Copy the full SHA
    dd2c1b8 View commit details
    Browse the repository at this point in the history
  3. test: refactor and actualise Transactions tests (#182)

    # What ❔
    
    Added coverage for all 0 items in responses for Transaction endpoints
    
    ## Why ❔
    
    
    ## Checklist
    
    
    - [x] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [x] Tests for the changes have been added / updated.
    - [ ] Documentation comments have been added / updated.
    amelnytskyi authored Feb 27, 2024
    Configuration menu
    Copy the full SHA
    a640ca9 View commit details
    Browse the repository at this point in the history

Commits on Feb 29, 2024

  1. Configuration menu
    Copy the full SHA
    f6d9eed View commit details
    Browse the repository at this point in the history
  2. fix: new entity

    Added new entity
    olehbairak committed Feb 29, 2024
    Configuration menu
    Copy the full SHA
    f92572e View commit details
    Browse the repository at this point in the history
  3. fix: new one

    olehbairak committed Feb 29, 2024
    Configuration menu
    Copy the full SHA
    f3eb795 View commit details
    Browse the repository at this point in the history
  4. fix: new one

    olehbairak committed Feb 29, 2024
    Configuration menu
    Copy the full SHA
    ba073cd View commit details
    Browse the repository at this point in the history
  5. fix: new one

    olehbairak committed Feb 29, 2024
    Configuration menu
    Copy the full SHA
    6d23d22 View commit details
    Browse the repository at this point in the history
  6. fix: new one

    olehbairak committed Feb 29, 2024
    Configuration menu
    Copy the full SHA
    cdab5f2 View commit details
    Browse the repository at this point in the history
  7. fix: new version

    olehbairak committed Feb 29, 2024
    Configuration menu
    Copy the full SHA
    018cc99 View commit details
    Browse the repository at this point in the history
  8. fix: new one

    olehbairak committed Feb 29, 2024
    Configuration menu
    Copy the full SHA
    fe053dc View commit details
    Browse the repository at this point in the history
  9. fix: new one

    olehbairak committed Feb 29, 2024
    Configuration menu
    Copy the full SHA
    40775b2 View commit details
    Browse the repository at this point in the history
  10. fix: fix

    olehbairak committed Feb 29, 2024
    Configuration menu
    Copy the full SHA
    dbf4411 View commit details
    Browse the repository at this point in the history
  11. fix: new one

    olehbairak committed Feb 29, 2024
    Configuration menu
    Copy the full SHA
    382526d View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2024

  1. fix: new one

    olehbairak committed Mar 4, 2024
    Configuration menu
    Copy the full SHA
    c5a86cf View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    4c0040a View commit details
    Browse the repository at this point in the history
  3. test: covering UI tests for Deposit

    Changed timeout value in Deposit UI tests
    Renamed variables to suggested values as per review results
    Removed obsolete console.log
    amelnytskyi committed Mar 4, 2024
    Configuration menu
    Copy the full SHA
    4babcac View commit details
    Browse the repository at this point in the history

Commits on Mar 5, 2024

  1. Configuration menu
    Copy the full SHA
    f628183 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2024

  1. Merge pull request #185 from matter-labs/QA-543-cover-the-Deposit-tests

    test: covering UI tests for Deposit
    abilevych authored Mar 6, 2024
    Configuration menu
    Copy the full SHA
    6b9943a View commit details
    Browse the repository at this point in the history
  2. Update package.json

    Co-authored-by: Roman Petriv <[email protected]>
    pcheremu and Romsters authored Mar 6, 2024
    Configuration menu
    Copy the full SHA
    dd3af36 View commit details
    Browse the repository at this point in the history
  3. Update package.json

    Co-authored-by: Roman Petriv <[email protected]>
    pcheremu and Romsters authored Mar 6, 2024
    Configuration menu
    Copy the full SHA
    87e3104 View commit details
    Browse the repository at this point in the history
  4. Update packages/integration-tests/README.md

    Co-authored-by: Roman Petriv <[email protected]>
    pcheremu and Romsters authored Mar 6, 2024
    Configuration menu
    Copy the full SHA
    fae3657 View commit details
    Browse the repository at this point in the history
  5. Update packages/integration-tests/README.md

    Co-authored-by: Roman Petriv <[email protected]>
    pcheremu and Romsters authored Mar 6, 2024
    Configuration menu
    Copy the full SHA
    2f2d13f View commit details
    Browse the repository at this point in the history
  6. Update packages/integration-tests/src/entities.ts

    Co-authored-by: Roman Petriv <[email protected]>
    pcheremu and Romsters authored Mar 6, 2024
    Configuration menu
    Copy the full SHA
    b31711c View commit details
    Browse the repository at this point in the history
  7. Update packages/integration-tests/src/helper.ts

    Co-authored-by: Roman Petriv <[email protected]>
    pcheremu and Romsters authored Mar 6, 2024
    Configuration menu
    Copy the full SHA
    410e491 View commit details
    Browse the repository at this point in the history
  8. Update packages/integration-tests/src/helper.ts

    Co-authored-by: Roman Petriv <[email protected]>
    pcheremu and Romsters authored Mar 6, 2024
    Configuration menu
    Copy the full SHA
    99a8933 View commit details
    Browse the repository at this point in the history
  9. Update packages/integration-tests/src/entities.ts

    Co-authored-by: Roman Petriv <[email protected]>
    pcheremu and Romsters authored Mar 6, 2024
    Configuration menu
    Copy the full SHA
    4790844 View commit details
    Browse the repository at this point in the history
  10. Update packages/integration-tests/src/entities.ts

    Co-authored-by: Roman Petriv <[email protected]>
    pcheremu and Romsters authored Mar 6, 2024
    Configuration menu
    Copy the full SHA
    4ed7c4f View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2024

  1. test: fix names

    pcheremu committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    64cc6f2 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'integration-tests-signed' into oleh-bairak-qa-653-token…

    …sapi-accounts-api-automate-test-cases-for-contracts-api
    olehbairak authored Mar 7, 2024
    Configuration menu
    Copy the full SHA
    e2445ba View commit details
    Browse the repository at this point in the history
  3. test: fix names

    pcheremu committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    7e43c46 View commit details
    Browse the repository at this point in the history
  4. fix: new one

    olehbairak committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    d03fe86 View commit details
    Browse the repository at this point in the history
  5. Revert "Merge branch 'integration-tests-signed' into oleh-bairak-qa-6…

    …53-tokensapi-accounts-api-automate-test-cases-for-contracts-api"
    
    This reverts commit e2445ba, reversing
    changes made to f628183.
    olehbairak committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    7fa1b56 View commit details
    Browse the repository at this point in the history
  6. test: fix names

    pcheremu committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    a433dc9 View commit details
    Browse the repository at this point in the history
  7. Revert "Revert "Merge branch 'integration-tests-signed' into oleh-bai…

    …rak-qa-653-tokensapi-accounts-api-automate-test-cases-for-contracts-api""
    
    This reverts commit 7fa1b56.
    olehbairak committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    78a146c View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    1380443 View commit details
    Browse the repository at this point in the history
  9. Configuration menu
    Copy the full SHA
    d589cc0 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    aa893c0 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    0ccaf8f View commit details
    Browse the repository at this point in the history
  12. Merge branch 'integration-tests-signed' into oleh-bairak-qa-653-token…

    …sapi-accounts-api-automate-test-cases-for-contracts-api
    olehbairak committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    9ff2fd0 View commit details
    Browse the repository at this point in the history
  13. fix: new version

    olehbairak committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    ac55ca4 View commit details
    Browse the repository at this point in the history
  14. fix: lint error fix

    olehbairak committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    4c350d0 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    b0a38a0 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    a82496a View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    3aa7bd8 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    e4fb462 View commit details
    Browse the repository at this point in the history
  19. test: fix lint

    pcheremu committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    25109d6 View commit details
    Browse the repository at this point in the history
  20. test: updated names

    pcheremu committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    572b272 View commit details
    Browse the repository at this point in the history
  21. test: npm ci with audit

    pcheremu committed Mar 7, 2024
    Configuration menu
    Copy the full SHA
    18205f5 View commit details
    Browse the repository at this point in the history

Commits on Mar 8, 2024

  1. Merge branch 'integration-tests-signed' into oleh-bairak-qa-653-token…

    …sapi-accounts-api-automate-test-cases-for-contracts-api
    olehbairak authored Mar 8, 2024
    Configuration menu
    Copy the full SHA
    0fa8b72 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2024

  1. Configuration menu
    Copy the full SHA
    64323ef View commit details
    Browse the repository at this point in the history
  2. test: create autotest for Accounts tc1854

    Moved writeFile for multiTransfer down to other writeFile calls
    amelnytskyi committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    4e86100 View commit details
    Browse the repository at this point in the history
  3. test: create autotest for Accounts tc1854

    Aligned test with integration-test-signed branch
    amelnytskyi committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    5dc6df0 View commit details
    Browse the repository at this point in the history
  4. test: create autotest for Accounts tc1854

    Fixed failing tc272 by changing deployed bytecode value
    amelnytskyi committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    14cb26f View commit details
    Browse the repository at this point in the history
  5. test: create autotest for Accounts tc1854

    Replacing wait(1) with waitFinalize()
    amelnytskyi committed Mar 11, 2024
    Configuration menu
    Copy the full SHA
    b2fd997 View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2024

  1. Update helper.ts

    olehbairak authored Mar 12, 2024
    Configuration menu
    Copy the full SHA
    bd1e328 View commit details
    Browse the repository at this point in the history
  2. fix: fix for wrong contract bytecode for UI E2E tests (#205)

    # What ❔
    
    Added the correct bytecode for the UI E2E tests.
    
    ## Why ❔
    
    To keep them up-to-date and functional.
    
    ## Checklist
    
    
    
    - [x] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [x] Tests for the changes have been added / updated.
    - [ ] Documentation comments have been added / updated.
    olehbairak authored Mar 12, 2024
    Configuration menu
    Copy the full SHA
    1688bf6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    986d8af View commit details
    Browse the repository at this point in the history
  4. test: create autotests for Withdraw test cases

    Removing obsolete variables
    amelnytskyi committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    a6bf6af View commit details
    Browse the repository at this point in the history
  5. test: create autotests for Withdraw test cases

    Fixed Lint issues/warnings
    amelnytskyi committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    6732d6d View commit details
    Browse the repository at this point in the history
  6. fix: new one after rebase

    olehbairak committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    834384b View commit details
    Browse the repository at this point in the history
  7. fix: new contract for @id272 for contract bytecode check (#206)

    # What ❔
    
    New contract for test to improve stability.
    
    ## Why ❔
    
    previous contract can changes its data during the time 
    
    ## Checklist
    
    
    
    - [x] PR title corresponds to the body of PR (we generate changelog
    entries from PRs).
    - [x] Tests for the changes have been added / updated.
    - [ ] Documentation comments have been added / updated.
    olehbairak authored Mar 12, 2024
    Configuration menu
    Copy the full SHA
    5467a5e View commit details
    Browse the repository at this point in the history
  8. Merge branch 'integration-tests-signed' into oleh-bairak-qa-681-accou…

    …nts-api-deposit-multitransfer-transfer
    olehbairak committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    4e4f6db View commit details
    Browse the repository at this point in the history
  9. fix: new one

    olehbairak committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    9beae69 View commit details
    Browse the repository at this point in the history
  10. fix: new assertion stile

    olehbairak committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    b182f33 View commit details
    Browse the repository at this point in the history
  11. fix: new comments style

    olehbairak committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    f1f1487 View commit details
    Browse the repository at this point in the history
  12. fix: new fix

    olehbairak committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    d2c1356 View commit details
    Browse the repository at this point in the history
  13. fix: new one

    olehbairak committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    5537474 View commit details
    Browse the repository at this point in the history
  14. fix: new one

    olehbairak committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    4f548fc View commit details
    Browse the repository at this point in the history
  15. fix: new one

    olehbairak committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    808c10d View commit details
    Browse the repository at this point in the history

Commits on Mar 13, 2024

  1. Merge branch 'integration-tests-signed' into QA-690-Create-automation…

    …-test-for-Accounts-tc1854
    amelnytskyi authored Mar 13, 2024
    Configuration menu
    Copy the full SHA
    cc0f288 View commit details
    Browse the repository at this point in the history
  2. test: create autotests for Withdraw test cases

    Fixed explicit timeout and changed const txSumETH to enum data type
    amelnytskyi committed Mar 13, 2024
    Configuration menu
    Copy the full SHA
    745ce83 View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2024

  1. fix: type annotation

    olehbairak committed Mar 18, 2024
    Configuration menu
    Copy the full SHA
    1ce2430 View commit details
    Browse the repository at this point in the history
  2. fix: new way

    olehbairak committed Mar 18, 2024
    Configuration menu
    Copy the full SHA
    f80e6e2 View commit details
    Browse the repository at this point in the history
  3. fix: remove extra line

    olehbairak committed Mar 18, 2024
    Configuration menu
    Copy the full SHA
    89b792b View commit details
    Browse the repository at this point in the history
  4. fix: better formatting

    olehbairak committed Mar 18, 2024
    Configuration menu
    Copy the full SHA
    d45f102 View commit details
    Browse the repository at this point in the history

Commits on Mar 19, 2024

  1. fix: element names

    olehbairak committed Mar 19, 2024
    Configuration menu
    Copy the full SHA
    8a520a4 View commit details
    Browse the repository at this point in the history

Commits on Mar 20, 2024

  1. Merge pull request #190 from matter-labs/QA-688-Withdrawal-BE-API-tes…

    …t-cases
    
    test: create autotests for Withdraw test cases
    amelnytskyi authored Mar 20, 2024
    Configuration menu
    Copy the full SHA
    f4442b2 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #191 from matter-labs/QA-690-Create-automation-tes…

    …t-for-Accounts-tc1854
    
    test: create autotest for Accounts tc1854
    amelnytskyi authored Mar 20, 2024
    Configuration menu
    Copy the full SHA
    1fd5261 View commit details
    Browse the repository at this point in the history
  3. Merge branch 'integration-tests-signed' into oleh-bairak-qa-653-token…

    …sapi-accounts-api-automate-test-cases-for-contracts-api
    olehbairak authored Mar 20, 2024
    Configuration menu
    Copy the full SHA
    1c6e8ce View commit details
    Browse the repository at this point in the history

Commits on Mar 21, 2024

  1. Configuration menu
    Copy the full SHA
    177bd6b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    9ba81a6 View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2024

  1. test: create autotest for negative cases Contract API

    Added test cases for tc1966, tc1952, tc1950, tc1949
    amelnytskyi committed Mar 22, 2024
    Configuration menu
    Copy the full SHA
    6b780c9 View commit details
    Browse the repository at this point in the history

Commits on Mar 29, 2024

  1. fix: new variable name

    olehbairak committed Mar 29, 2024
    Configuration menu
    Copy the full SHA
    f39e293 View commit details
    Browse the repository at this point in the history
  2. fix: new one

    olehbairak committed Mar 29, 2024
    Configuration menu
    Copy the full SHA
    21fbfb5 View commit details
    Browse the repository at this point in the history
  3. fix: new one

    olehbairak committed Mar 29, 2024
    Configuration menu
    Copy the full SHA
    6487ac6 View commit details
    Browse the repository at this point in the history
  4. Update copying.feature

    olehbairak authored Mar 29, 2024
    Configuration menu
    Copy the full SHA
    196e204 View commit details
    Browse the repository at this point in the history
  5. fix: new one

    olehbairak committed Mar 29, 2024
    Configuration menu
    Copy the full SHA
    98f183d View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2024

  1. Merge pull request #184 from matter-labs/oleh-bairak-qa-681-accounts-…

    …api-deposit-multitransfer-transfer
    
    test: new automation test for Multitransfer + Transfer
    abilevych authored Apr 5, 2024
    Configuration menu
    Copy the full SHA
    8c45c44 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2024

  1. Merge pull request #170 from matter-labs/oleh-bairak-qa-653-tokensapi…

    …-accounts-api-automate-test-cases-for-contracts-api
    
    feat: new automation scope for tests on Contracts API + Tokens API
    olehbairak authored Apr 8, 2024
    Configuration menu
    Copy the full SHA
    26cf37a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0977d95 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2024

  1. Merge pull request #211 from matter-labs/QA-723-automate-contract-API…

    …-negative-test-cases
    
    test: create autotest for negative cases Contract API
    amelnytskyi authored Apr 22, 2024
    Configuration menu
    Copy the full SHA
    06256a1 View commit details
    Browse the repository at this point in the history

Commits on May 7, 2024

  1. Configuration menu
    Copy the full SHA
    0cde2c2 View commit details
    Browse the repository at this point in the history
  2. test: refactoring

    pcheremu committed May 7, 2024
    Configuration menu
    Copy the full SHA
    7b006b5 View commit details
    Browse the repository at this point in the history
  3. test: refactoring

    pcheremu committed May 7, 2024
    Configuration menu
    Copy the full SHA
    e92f3b3 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'integration-tests-signed' of github.com:matter-labs/blo…

    …ck-explorer into integration-tests-signed
    pcheremu committed May 7, 2024
    Configuration menu
    Copy the full SHA
    6595e5c View commit details
    Browse the repository at this point in the history
  5. test: back eslint cfg

    pcheremu committed May 7, 2024
    Configuration menu
    Copy the full SHA
    3103946 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2024

  1. test: refactoring

    pcheremu committed May 9, 2024
    Configuration menu
    Copy the full SHA
    a3aa5c3 View commit details
    Browse the repository at this point in the history

Commits on May 28, 2024

  1. Configuration menu
    Copy the full SHA
    97590a2 View commit details
    Browse the repository at this point in the history

Commits on May 29, 2024

  1. test: refactoring

    pcheremu committed May 29, 2024
    Configuration menu
    Copy the full SHA
    93c8c6b View commit details
    Browse the repository at this point in the history
  2. test: playwright test

    pcheremu committed May 29, 2024
    Configuration menu
    Copy the full SHA
    df1e10e View commit details
    Browse the repository at this point in the history
  3. test: postinstall

    pcheremu committed May 29, 2024
    Configuration menu
    Copy the full SHA
    fa8b90c View commit details
    Browse the repository at this point in the history
  4. test: postinstall

    pcheremu committed May 29, 2024
    Configuration menu
    Copy the full SHA
    5b47348 View commit details
    Browse the repository at this point in the history
  5. test: postinstall

    pcheremu committed May 29, 2024
    Configuration menu
    Copy the full SHA
    85e5adc View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2024

  1. test: fix outdated packages

    pcheremu committed Jun 13, 2024
    Configuration menu
    Copy the full SHA
    18c742b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    33670f3 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d0ead53 View commit details
    Browse the repository at this point in the history
  4. test: fix ether version

    pcheremu committed Jun 13, 2024
    Configuration menu
    Copy the full SHA
    1f76848 View commit details
    Browse the repository at this point in the history
  5. test: fix ethets

    pcheremu committed Jun 13, 2024
    Configuration menu
    Copy the full SHA
    3dd0c6c View commit details
    Browse the repository at this point in the history