config

package
v0.4.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 22, 2021 License: MIT Imports: 12 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// TradeListeningPortKey is the port where the gRPC Trader interface will listen on
	TradeListeningPortKey = "TRADE_LISTENING_PORT"
	// OperatorListeningPortKey is the port where the gRPC Operator interface will listen on
	OperatorListeningPortKey = "OPERATOR_LISTENING_PORT"
	// ExplorerEndpointKey is the endpoint where the Electrs (for Liquid) REST API is listening
	ExplorerEndpointKey = "EXPLORER_ENDPOINT"
	// ExplorerRequestTimeoutKey are the milliseconds to wait for HTTP responses before timeouts
	ExplorerRequestTimeoutKey = "EXPLORER_REQUEST_TIMEOUT"
	// DatadirKey is the local data directory to store the internal state of daemon
	DatadirKey = "DATA_DIR_PATH"
	// LogLevelKey are the different logging levels. For reference on the values https://godoc.org/github.com/sirupsen/logrus#Level
	LogLevelKey = "LOG_LEVEL"
	// DefaultFeeKey is the default swap fee when creating a market
	DefaultFeeKey = "DEFAULT_FEE"
	// NetworkKey is the network to use. Either "liquid" or "regtest"
	NetworkKey = "NETWORK"
	// BaseAssetKey is the default asset hash to be used as base asset for all markets. Default is LBTC
	BaseAssetKey = "BASE_ASSET"
	// CrawlIntervalKey is the interval in milliseconds to be used when watching the blockchain via the explorer
	CrawlIntervalKey = "CRAWL_INTERVAL"
	// FeeAccountBalanceThresholdKey is the treshold of LBTC balance (in satoshis) for the fee account, after wich we alert the operator that it cannot subsidize anymore swaps
	FeeAccountBalanceThresholdKey = "FEE_ACCOUNT_BALANCE_THRESHOLD"
	// TradeExpiryTimeKey is the duration in seconds of lock on unspents we reserve for accpeted trades, before eventually double spending it
	TradeExpiryTimeKey = "TRADE_EXPIRY_TIME"
	// PriceSlippageKey is the percentage of the slipage for accepting trades compared to current spot price
	PriceSlippageKey = "PRICE_SLIPPAGE"
	// TradeTLSKeyKey is the path of the the TLS key for the Trade interface
	TradeTLSKeyKey = "SSL_KEY"
	// TradeTLSCertKey is the path of the the TLS certificate for the Trade interface
	TradeTLSCertKey = "SSL_CERT"
	// MnemonicKey is the mnemonic of the master private key of the daemon's wallet
	MnemonicKey = "MNEMONIC"
	// EnableProfilerKey nables profiler that can be used to investigate performance issues
	EnableProfilerKey = "ENABLE_PROFILER"
	// StatsIntervalKey defines interval for printing basic tdex statistics
	StatsIntervalKey = "STATS_INTERVAL"
	// CrawlLimitKey represents number of requests per second that crawler
	//makes to explorer
	CrawlLimitKey = "CRAWL_LIMIT"
	// CrawlTokenBurst represents number of bursts tokens permitted from
	//crawler to explorer
	CrawlTokenBurst = "CRAWL_TOKEN"
	// NoMacaroonsKey is used to start the daemon without using macaroons auth
	// service.
	NoMacaroonsKey = "NO_MACAROONS"
	// OperatorExtraIP is used to add an extra ip address to the self-signed TLS
	// certificate for the Operator gRPC interface.
	OperatorExtraIP = "OPERATOR_EXTRA_IP"
	// OperatorExtraDomain is used to add an extra domain to the self signed TLS
	// certificate for the Operator gRPC interface. This is useful to add the
	// onion endpoint in case the daemon is served as a TOR hidden service for
	// example.
	OperatorExtraDomain = "OPERATOR_EXTRA_DOMAIN"

	DbLocation        = "db"
	TLSLocation       = "tls"
	MacaroonsLocation = "macaroons"
	ProfilerLocation  = "stats"

	MinDefaultPercentageFee = 0.01
	MaxDefaultPercentageFee = float64(99)
)

Variables

This section is empty.

Functions

func GetBool

func GetBool(key string) bool

GetBool ...

func GetDatadir added in v0.4.0

func GetDatadir() string

TODO: attach network name to datadir

func GetDuration

func GetDuration(key string) time.Duration

GetDuration ...

func GetExplorer added in v0.2.0

func GetExplorer() (explorer.Service, error)

GetExplorer returns the explorer service to be used by the daemon.

func GetFloat

func GetFloat(key string) float64

GetFloat ...

func GetInt

func GetInt(key string) int

GetInt ...

func GetMnemonic

func GetMnemonic() []string

GetMnemonic returns the current set mnemonic

func GetNetwork

func GetNetwork() *network.Network

GetNetwork ...

func GetString

func GetString(key string) string

GetString ...

func IsSet added in v0.2.0

func IsSet(key string) bool

IsSet returns whether the give key is set

func Set

func Set(key string, value interface{})

Set a value for the given key

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL