Skip to content

Commit 09530a6

Browse files
committed
feat: update ethda config
1 parent dc5c32f commit 09530a6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cmd/run.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,8 +353,8 @@ func newDataAvailability(c config.Config, st *state.State, etherman *etherman.Cl
353353
if err != nil {
354354
return nil, err
355355
}
356-
case string(dataavailability.ETHDA):
357-
rpcUrl := "https://rpc-devnet2.ethda.io"
356+
case string(dataavailability.EthDA):
357+
rpcUrl := "https://rpc-testnet.ethda.io"
358358
daBackend, err = ethda.New(rpcUrl, pk)
359359
if err != nil {
360360
return nil, err

dataavailability/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ type DABackendType string
66
const (
77
// DataAvailabilityCommittee is the DAC protocol backend
88
DataAvailabilityCommittee DABackendType = "DataAvailabilityCommittee"
9-
ETHDA DABackendType = "Ethda"
9+
EthDA DABackendType = "EthDA"
1010
)

0 commit comments

Comments
 (0)