31 lines
742 B
Go
31 lines
742 B
Go
package requests
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/status-im/status-go/eth-node/types"
|
|
"github.com/status-im/status-go/protocol/common"
|
|
)
|
|
|
|
type SetCommunityShard struct {
|
|
CommunityID types.HexBytes `json:"communityId"`
|
|
Shard *common.Shard `json:"shard,omitempty"`
|
|
PrivateKey *types.HexBytes `json:"privateKey,omitempty"`
|
|
}
|
|
|
|
func (s *SetCommunityShard) Validate() error {
|
|
if s == nil {
|
|
return errors.New("invalid request")
|
|
}
|
|
if s.Shard != nil {
|
|
// TODO: for now only MainStatusShard(16) is accepted
|
|
if s.Shard.Cluster != common.MainStatusShardCluster {
|
|
return errors.New("invalid shard cluster")
|
|
}
|
|
if s.Shard.Index > 1023 {
|
|
return errors.New("invalid shard index. Only 0-1023 is allowed")
|
|
}
|
|
}
|
|
return nil
|
|
}
|