Skip to content

Commit

Permalink
feat: update ethda config
Browse files Browse the repository at this point in the history
  • Loading branch information
x-wagmi committed Jun 12, 2024
1 parent dc5c32f commit 09530a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cmd/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -353,8 +353,8 @@ func newDataAvailability(c config.Config, st *state.State, etherman *etherman.Cl
if err != nil {
return nil, err
}
case string(dataavailability.ETHDA):
rpcUrl := "https://rpc-devnet2.ethda.io"
case string(dataavailability.EthDA):
rpcUrl := "https://rpc-testnet.ethda.io"
daBackend, err = ethda.New(rpcUrl, pk)
if err != nil {
return nil, err
Expand Down
2 changes: 1 addition & 1 deletion dataavailability/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ type DABackendType string
const (
// DataAvailabilityCommittee is the DAC protocol backend
DataAvailabilityCommittee DABackendType = "DataAvailabilityCommittee"
ETHDA DABackendType = "Ethda"
EthDA DABackendType = "EthDA"
)

0 comments on commit 09530a6

Please sign in to comment.