Files
node/vms/xvm/config.go
T
Hanzo AI 8cf6c53246 xvm: preserve nanosecond Duration wire format for v2
xvm.Config embeds network.Config which has time.Duration fields. v1
encoded these as integer nanoseconds; v2 has no default representation.
Pass jsonv1.FormatDurationAsNano(true) at ParseConfig and at the test
marshal sites so the wire format is preserved.
2026-06-06 23:06:41 -07:00

38 lines
942 B
Go

// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
// See the file LICENSE for licensing terms.
package xvm
import (
"github.com/go-json-experiment/json"
jsonv1 "github.com/go-json-experiment/json/v1"
"github.com/luxfi/node/vms/xvm/config"
"github.com/luxfi/node/vms/xvm/network"
)
var DefaultConfig = Config{
Network: network.DefaultConfig,
ChecksumsEnabled: true,
Config: config.Config{
TxFee: 1000, // 1000 nanoLux base transaction fee
CreateAssetTxFee: 10000, // 10000 nanoLux for asset creation
},
}
type Config struct {
Network network.Config `json:"network"`
ChecksumsEnabled bool `json:"checksumsEnabled"`
config.Config
}
func ParseConfig(configBytes []byte) (Config, error) {
if len(configBytes) == 0 {
return DefaultConfig, nil
}
cfg := DefaultConfig
err := json.Unmarshal(configBytes, &cfg, jsonv1.FormatDurationAsNano(true))
return cfg, err
}