-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[TT-1511] added ability to read ABIs from Gethwrappers (#1092)
- Loading branch information
Showing
33 changed files
with
18,383 additions
and
177 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -87,3 +87,6 @@ issues: | |
- wasp/examples/* | ||
- seth/examples_wasp/* | ||
- k8s | ||
- seth/contracts | ||
- seth/examples | ||
- seth/examples_wasp |
31 changes: 31 additions & 0 deletions
31
docker/test_env/cmd/.private_chains/ethereum_network_2ad80558.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
ethereum_version = 'eth2' | ||
consensus_layer = 'prysm' | ||
execution_layer = 'geth' | ||
docker_network_names = ['network-25952094-f1aa-4ee1-8459-f28928cad7c9'] | ||
wait_for_finalization = false | ||
generated_data_host_dir = '/var/folders/q4/975jb0kx3bb2x_yy0_7mf2y00000gn/T/metadata1688318665' | ||
val_keys_dir = '/var/folders/q4/975jb0kx3bb2x_yy0_7mf2y00000gn/T/val_keys2002154029' | ||
node_log_level = 'info' | ||
|
||
[[containers]] | ||
container_name = 'geth-eth2-v1_14_3-22cb547f' | ||
container_type = 'execution_layer' | ||
|
||
[[containers]] | ||
container_name = 'prysm-beacon-chain-6051e27f' | ||
container_type = 'consensus_layer' | ||
|
||
[[containers]] | ||
container_name = 'prysm-validator-975ad786' | ||
container_type = 'consensus_validator' | ||
|
||
[EthereumChainConfig] | ||
seconds_per_slot = 6 | ||
slots_per_epoch = 2 | ||
genesis_delay = 15 | ||
validator_count = 8 | ||
chain_id = 1337 | ||
GenesisTimestamp = 1724770017 | ||
addresses_to_fund = ['0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266'] | ||
|
||
[EthereumChainConfig.HardForkEpochs] |
31 changes: 31 additions & 0 deletions
31
docker/test_env/cmd/.private_chains/ethereum_network_6c196142.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
ethereum_version = 'eth2' | ||
consensus_layer = 'prysm' | ||
execution_layer = 'geth' | ||
docker_network_names = ['network-1c36e593-ba16-41b9-a5e9-c1ac0084175c'] | ||
wait_for_finalization = false | ||
generated_data_host_dir = '/var/folders/q4/975jb0kx3bb2x_yy0_7mf2y00000gn/T/metadata3375294890' | ||
val_keys_dir = '/var/folders/q4/975jb0kx3bb2x_yy0_7mf2y00000gn/T/val_keys3731567686' | ||
node_log_level = 'info' | ||
|
||
[[containers]] | ||
container_name = 'geth-eth2-v1_14_3-d3d721f4' | ||
container_type = 'execution_layer' | ||
|
||
[[containers]] | ||
container_name = 'prysm-beacon-chain-f5ae0a0f' | ||
container_type = 'consensus_layer' | ||
|
||
[[containers]] | ||
container_name = 'prysm-validator-92dea702' | ||
container_type = 'consensus_validator' | ||
|
||
[EthereumChainConfig] | ||
seconds_per_slot = 6 | ||
slots_per_epoch = 2 | ||
genesis_delay = 15 | ||
validator_count = 8 | ||
chain_id = 2337 | ||
GenesisTimestamp = 1724770169 | ||
addresses_to_fund = ['0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266'] | ||
|
||
[EthereumChainConfig.HardForkEpochs] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
run: | ||
concurrency: 4 | ||
timeout: 5m | ||
linters: | ||
enable: | ||
# defaults | ||
- errcheck | ||
- gosimple | ||
- govet | ||
- ineffassign | ||
- staticcheck | ||
- typecheck | ||
- unused | ||
# extra | ||
- exhaustive | ||
- exportloopref | ||
- revive | ||
- goimports | ||
- gosec | ||
- misspell | ||
- errorlint | ||
- contextcheck | ||
linters-settings: | ||
exhaustive: | ||
default-signifies-exhaustive: true | ||
goimports: | ||
local-prefixes: github.com/smartcontractkit/chainlink-testing-framework/seth | ||
gosec: | ||
exclude-generated: true | ||
govet: | ||
# report about shadowed variables | ||
check-shadowing: false | ||
errorlint: | ||
# Allow formatting of errors without %w | ||
errorf: false | ||
revive: | ||
confidence: 0.8 | ||
rules: | ||
- name: blank-imports | ||
- name: context-as-argument | ||
- name: context-keys-type | ||
- name: dot-imports | ||
- name: error-return | ||
- name: error-strings | ||
- name: error-naming | ||
- name: if-return | ||
- name: increment-decrement | ||
# - name: var-naming | ||
- name: var-declaration | ||
- name: package-comments | ||
- name: range | ||
- name: receiver-naming | ||
- name: time-naming | ||
- name: unexported-return | ||
- name: indent-error-flow | ||
- name: errorf | ||
- name: exported | ||
- name: empty-block | ||
- name: superfluous-else | ||
- name: unused-parameter | ||
- name: unreachable-code | ||
- name: redefines-builtin-id | ||
- name: waitgroup-by-value | ||
- name: unconditional-recursion | ||
- name: struct-tag | ||
- name: string-format | ||
- name: string-of-int | ||
- name: range-val-address | ||
- name: range-val-in-closure | ||
- name: modifies-value-receiver | ||
- name: modifies-parameter | ||
- name: identical-branches | ||
- name: get-return | ||
- name: flag-parameter | ||
- name: early-return | ||
- name: defer | ||
- name: constant-logical-expr | ||
- name: confusing-naming | ||
# - name: confusing-results | ||
- name: bool-literal-in-expr | ||
- name: atomic | ||
issues: | ||
exclude-dirs: | ||
- contracts/* | ||
- examples/* | ||
- examples_wasp/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.