Skip to content

Commit

Permalink
remove toml tags
Browse files Browse the repository at this point in the history
  • Loading branch information
AnieeG committed Sep 18, 2024
1 parent 2381add commit 1425b3e
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 18 deletions.
30 changes: 15 additions & 15 deletions integration-tests/deployment/multiclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,31 +36,31 @@ type MultiClient struct {
}

type RPC struct {
RPCName string `toml:"rpc_name"`
HTTPURL string `toml:"http_url"`
WSURL string `toml:"ws_url"`
RPCName string
HTTPURL string
WSURL string
}

type Config struct {
EnvConfig EnvConfig `toml:"env_config"`
EnvConfig EnvConfig
}

type EnvConfig struct {
TestWalletKey string `toml:"test_wallet_key"`
KmsDeployerKeyId string `toml:"kms_deployer_key_id"`
KmsDeployerKeyRegion string `toml:"kms_deployer_key_region"`
AwsProfileName string `toml:"aws_profile_name"`
EvmNetworks []EvmNetwork `toml:"evm_networks"`
TestWalletKey string
KmsDeployerKeyId string
KmsDeployerKeyRegion string
AwsProfileName string
EvmNetworks []EvmNetwork
// Seth-related
GethWrappersDirs []string `toml:"geth_wrappers_dirs"`
SethConfigFile string `toml:"seth_config_file"`
GethWrappersDirs []string
SethConfigFile string
}

type EvmNetwork struct {
ChainID uint64 `toml:"chain_id"`
EtherscanAPIKey string `toml:"etherscan_api_key"`
EtherscanUrl string `toml:"etherscan_url"`
RPCs []RPC `toml:"rpcs"`
ChainID uint64
EtherscanAPIKey string
EtherscanUrl string
RPCs []RPC
}

func initRpcClients(rpcs []RPC) (*ethclient.Client, []*ethclient.Client) {
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ require (
github.com/Khan/genqlient v0.7.0
github.com/Masterminds/semver/v3 v3.2.1
github.com/avast/retry-go/v4 v4.6.0
github.com/aws/aws-sdk-go v1.45.25
github.com/barkimedes/go-deepcopy v0.0.0-20220514131651-17c30cfc62df
github.com/chaos-mesh/chaos-mesh/api v0.0.0-20240821051457-da69c6d9617a
github.com/cli/go-gh/v2 v2.0.0
Expand Down Expand Up @@ -107,7 +108,6 @@ require (
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
github.com/avast/retry-go v3.0.0+incompatible // indirect
github.com/awalterschulze/gographviz v2.0.3+incompatible // indirect
github.com/aws/aws-sdk-go v1.45.25 // indirect
github.com/aws/aws-sdk-go-v2 v1.30.4 // indirect
github.com/aws/aws-sdk-go-v2/config v1.27.28 // indirect
github.com/aws/aws-sdk-go-v2/credentials v1.17.28 // indirect
Expand Down
3 changes: 1 addition & 2 deletions integration-tests/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1443,8 +1443,7 @@ github.com/smartcontractkit/chainlink-testing-framework/lib v1.50.5 h1:Owb1MQZn0
github.com/smartcontractkit/chainlink-testing-framework/lib v1.50.5/go.mod h1:hS4yNF94C1lkS9gvtFXW8Km8K9NzGeR20aNfkqo5qbE=
github.com/smartcontractkit/chainlink-testing-framework/lib/grafana v1.50.0 h1:VIxK8u0Jd0Q/VuhmsNm6Bls6Tb31H/sA3A/rbc5hnhg=
github.com/smartcontractkit/chainlink-testing-framework/lib/grafana v1.50.0/go.mod h1:lyAu+oMXdNUzEDScj2DXB2IueY+SDXPPfyl/kb63tMM=
github.com/smartcontractkit/chainlink-testing-framework/seth v1.50.1 h1:2OxnPfvjC+zs0ZokSsRTRnJrEGJ4NVJwZgfroS1lPHs=
github.com/smartcontractkit/chainlink-testing-framework/seth v1.50.1/go.mod h1:afY3QmNgeR/VI1pRbGH8g3YXGy7C2RrFOwUzEFvL3L8=
github.com/smartcontractkit/chainlink-testing-framework/seth v1.50.4-0.20240912161944-13ade8436072 h1:/wGR8PUytZBze4DPnhzF+V7IVl/EslDmDC2SsamXjqw=
github.com/smartcontractkit/chainlink-testing-framework/seth v1.50.4-0.20240912161944-13ade8436072/go.mod h1:afY3QmNgeR/VI1pRbGH8g3YXGy7C2RrFOwUzEFvL3L8=
github.com/smartcontractkit/chainlink-testing-framework/wasp v1.50.0 h1:gfhfTn7HkbUHNooSF3c9vzQyN8meWJVGt6G/pNUbpYk=
github.com/smartcontractkit/chainlink-testing-framework/wasp v1.50.0/go.mod h1:tqajhpUJA/9OaMCLitghBXjAgqYO4i27St0F4TUO3+M=
Expand Down

0 comments on commit 1425b3e

Please sign in to comment.