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 17, 2024
1 parent 8719a9f commit b2f0a14
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 @@ -360,8 +360,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 b2f0a14

Please sign in to comment.