Skip to content

Commit

Permalink
[TT-1128] remove evm client usages (#13568)
Browse files Browse the repository at this point in the history
* remove EVMClient, ContractDeployer, etc

* remove actions_seth, move them to actions

* fix imports

* decouple docker env builder from evm client creation

* fix vrfv2/plus and lp tests

* fix log poller smoke tests

* remove Seth-related methods moved to CTF

* add fund return to docker tests

* add missing fund returns + cosmetic changes

* update seth readme
  • Loading branch information
Tofel authored Jun 19, 2024
1 parent 29b7a0c commit c8c9010
Show file tree
Hide file tree
Showing 75 changed files with 3,123 additions and 12,834 deletions.
2 changes: 1 addition & 1 deletion integration-tests/LOG_POLLER.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ Various checks inside the tests have hardcoded timeouts, which might not be suit
Sample snippet:
```
gom.Eventually(func(g gomega.Gomega) {
logCountMatches, err := clNodesHaveExpectedLogCount(startBlock, endBlock, testEnv.EVMClient.GetChainID(), totalLogsEmitted, expectedFilters, l, coreLogger, testEnv.ClCluster)
logCountMatches, err := ClNodesHaveExpectedLogCount(startBlock, endBlock int64, chainID *big.Int, expectedLogCount int, expectedFilters []ExpectedFilter, l zerolog.Logger, coreLogger core_logger.SugaredLogger, nodes *test_env.ClCluster) (bool, error) {
if err != nil {
l.Warn().Err(err).Msg("Error checking if CL nodes have expected log count. Retrying...")
}
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/README_SETH.md
Original file line number Diff line number Diff line change
Expand Up @@ -461,4 +461,4 @@ Currently, Seth doesn't support splitting non-native tokens between keys. If you
3. **Prepare payload for Multicall contract** that will call `transfer` function on the token contract for each key.
4. **Execute Multicall contract** with the payload prepared in the previous step.

You can find sample code for doing that for LINK token in [actions_seth](./actions/seth/actions.go) file as `SendLinkFundsToDeploymentAddresses()` method.
You can find sample code for doing that for LINK token in [actions](./actions/actions.go) file as `SendLinkFundsToDeploymentAddresses()` method.
Loading

0 comments on commit c8c9010

Please sign in to comment.