Skip to content

Commit

Permalink
fix: fixed namespaceID parsing from toml (#373)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtsitrin committed Jun 27, 2023
1 parent 216740a commit b38719a
Show file tree
Hide file tree
Showing 3 changed files with 66 additions and 25 deletions.
32 changes: 10 additions & 22 deletions da/celestia/celestia.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,6 @@ import (
pb "github.com/dymensionxyz/dymint/types/pb/dymint"
)

const (
defaultTxPollingRetryDelay = 20 * time.Second
defaultSubmitRetryDelay = 10 * time.Second
defaultTxPollingAttempts = 5
)

type CNCClientI interface {
SubmitPFD(ctx context.Context, namespaceID [8]byte, blob []byte, fee int64, gasLimit uint64) (*cnc.TxResponse, error)
NamespacedShares(ctx context.Context, namespaceID [8]byte, height uint64) ([][]byte, error)
Expand All @@ -50,16 +44,6 @@ type DataAvailabilityLayerClient struct {
var _ da.DataAvailabilityLayerClient = &DataAvailabilityLayerClient{}
var _ da.BatchRetriever = &DataAvailabilityLayerClient{}

// Config stores Celestia DALC configuration parameters.
type Config struct {
BaseURL string `json:"base_url"`
AppNodeURL string `json:"app_node_url"`
Timeout time.Duration `json:"timeout"`
Fee int64 `json:"fee"`
GasLimit uint64 `json:"gas_limit"`
NamespaceID [8]byte `json:"namespace_id"`
}

// WithCNCClient sets CNC client.
func WithCNCClient(client CNCClientI) da.Option {
return func(daLayerClient da.DataAvailabilityLayerClient) {
Expand Down Expand Up @@ -99,16 +83,20 @@ func WithSubmitRetryDelay(delay time.Duration) da.Option {
func (c *DataAvailabilityLayerClient) Init(config []byte, pubsubServer *pubsub.Server, kvStore store.KVStore, logger log.Logger, options ...da.Option) error {
c.logger = logger

if len(config) > 0 {
err := json.Unmarshal(config, &c.config)
if err != nil {
return err
}
if len(config) <= 0 {
return errors.New("config is empty")
}
err := json.Unmarshal(config, &c.config)
if err != nil {
return err
}
err = (&c.config).InitNamespaceID()
if err != nil {
return err
}

c.pubsubServer = pubsubServer
// Set defaults
var err error
c.txPollingRetryDelay = defaultTxPollingRetryDelay
c.txPollingAttempts = defaultTxPollingAttempts
c.submitRetryDelay = defaultSubmitRetryDelay
Expand Down
43 changes: 43 additions & 0 deletions da/celestia/config.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
package celestia

import (
"encoding/hex"
"time"
)

const (
defaultTxPollingRetryDelay = 20 * time.Second
defaultSubmitRetryDelay = 10 * time.Second
defaultTxPollingAttempts = 5
)

// Config stores Celestia DALC configuration parameters.
type Config struct {
BaseURL string `json:"base_url"`
AppNodeURL string `json:"app_node_url"`
Timeout time.Duration `json:"timeout"`
Fee int64 `json:"fee"`
GasLimit uint64 `json:"gas_limit"`
NamespaceIDStr string `json:"namespace_id"`
NamespaceID [8]byte `json:"-"`
}

var CelestiaDefaultConfig = Config{
BaseURL: "http://127.0.0.1:26659",
AppNodeURL: "",
Timeout: 30 * time.Second,
Fee: 20000,
GasLimit: 20000000,
NamespaceIDStr: "000000000000ffff",
NamespaceID: [8]byte{0, 0, 0, 0, 0, 0, 255, 255},
}

func (c *Config) InitNamespaceID() error {
// Decode NamespaceID from string to byte array
namespaceBytes, err := hex.DecodeString(c.NamespaceIDStr)
if err != nil {
return err
}
copy(c.NamespaceID[:], namespaceBytes)
return nil
}
16 changes: 13 additions & 3 deletions da/da_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,26 @@ func TestLifecycle(t *testing.T) {
t.Skip("TODO")
}
t.Run(dalc, func(t *testing.T) {
doTestLifecycle(t, registry.GetClient(dalc))
doTestLifecycle(t, dalc)
})
}
}

func doTestLifecycle(t *testing.T, dalc da.DataAvailabilityLayerClient) {
func doTestLifecycle(t *testing.T, daType string) {
var err error
require := require.New(t)
pubsubServer := pubsub.NewServer()
pubsubServer.Start()
err := dalc.Init([]byte{}, pubsubServer, nil, test.NewLogger(t))

dacfg := []byte{}
dalc := registry.GetClient(daType)

if daType == "celestia" {
dacfg, err = json.Marshal(celestia.CelestiaDefaultConfig)
require.NoError(err)
}

err = dalc.Init(dacfg, pubsubServer, nil, test.NewLogger(t))
require.NoError(err)

err = dalc.Start()
Expand Down

0 comments on commit b38719a

Please sign in to comment.