125 lines
4.2 KiB
Go
125 lines
4.2 KiB
Go
package params
|
|
|
|
import "github.com/ethereum/go-ethereum/p2p/discv5"
|
|
|
|
const (
|
|
// ClientIdentifier is client identifier to advertise over the network
|
|
ClientIdentifier = "StatusIM"
|
|
|
|
// DataDir is default data directory used by statusd executable
|
|
DataDir = "statusd-data"
|
|
|
|
// StatusDatabase path relative to DataDir.
|
|
StatusDatabase = "status-db"
|
|
|
|
// KeyStoreDir is default directory where private keys are stored, relative to DataDir
|
|
KeyStoreDir = "keystore"
|
|
|
|
// IPCFile is filename of exposed IPC RPC Server
|
|
IPCFile = "geth.ipc"
|
|
|
|
// RPCEnabledDefault is the default state of whether the http rpc server is supposed
|
|
// to be started along with a node.
|
|
RPCEnabledDefault = false
|
|
|
|
// HTTPHost is host interface for the HTTP RPC server
|
|
HTTPHost = "localhost"
|
|
|
|
// HTTPPort is HTTP RPC port (replaced in unit tests)
|
|
HTTPPort = 8545
|
|
|
|
// ListenAddr is an IP address and port of this node (e.g. 127.0.0.1:30303).
|
|
ListenAddr = ":0"
|
|
|
|
// APIModules is a list of modules to expose via HTTP and `CallRPC()` binding.
|
|
// We also expose all handlers registered with `rpc.Client.RegisterHandler` to `CallRPC()` binding.
|
|
APIModules = "eth,net,web3,peer"
|
|
|
|
// SendTransactionMethodName defines the name for a giving transaction.
|
|
SendTransactionMethodName = "eth_sendTransaction"
|
|
|
|
// AccountsMethodName defines the name for listing the currently signed accounts.
|
|
AccountsMethodName = "eth_accounts"
|
|
|
|
// PersonalSignMethodName defines the name for `personal.sign` API.
|
|
PersonalSignMethodName = "personal_sign"
|
|
|
|
// PersonalRecoverMethodName defines the name for `personal.recover` API.
|
|
PersonalRecoverMethodName = "personal_ecRecover"
|
|
|
|
// MaxPeers is the maximum number of global peers
|
|
MaxPeers = 25
|
|
|
|
// MaxPendingPeers is the maximum number of peers that can be pending in the
|
|
// handshake phase, counted separately for inbound and outbound connections.
|
|
MaxPendingPeers = 0
|
|
|
|
// DefaultGas default amount of gas used for transactions
|
|
DefaultGas = 180000
|
|
|
|
// DefaultFileDescriptorLimit is fd limit that database can use
|
|
DefaultFileDescriptorLimit = uint64(2048)
|
|
|
|
// DatabaseCache is memory (in MBs) allocated to internal caching (min 16MB / database forced)
|
|
DatabaseCache = 16
|
|
|
|
// LogFile defines where to write logs to
|
|
LogFile = ""
|
|
|
|
// LogLevel defines the minimum log level to report
|
|
LogLevel = "ERROR"
|
|
|
|
// LogLevelSuccinct defines the log level when only errors are reported.
|
|
// Useful when the default INFO level becomes too verbose.
|
|
LogLevelSuccinct = "ERROR"
|
|
|
|
// LogToStderr defines whether logged info should also be output to os.Stderr
|
|
LogToStderr = true
|
|
|
|
// WhisperDataDir is directory where Whisper data is stored, relative to DataDir
|
|
WhisperDataDir = "wnode"
|
|
|
|
// WhisperMinimumPoW amount of work for Whisper message to be added to sending queue
|
|
WhisperMinimumPoW = 0.001
|
|
|
|
// WhisperTTL is time to live for messages, in seconds
|
|
WhisperTTL = 120
|
|
|
|
// FirebaseNotificationTriggerURL is URL where FCM notification requests are sent to
|
|
FirebaseNotificationTriggerURL = "https://fcm.googleapis.com/fcm/send"
|
|
|
|
// MainnetEthereumNetworkURL is URL where the upstream ethereum network is loaded to
|
|
// allow us avoid syncing node.
|
|
MainnetEthereumNetworkURL = "https://mainnet.infura.io/nKmXgiFgc2KqtoQ8BCGJ"
|
|
|
|
// RopstenEthereumNetworkURL is URL where the upstream ethereum network is loaded to
|
|
// allow us avoid syncing node.
|
|
RopstenEthereumNetworkURL = "https://ropsten.infura.io/nKmXgiFgc2KqtoQ8BCGJ"
|
|
|
|
// RinkebyEthereumNetworkURL is URL where the upstream ethereum network is loaded to
|
|
// allow us avoid syncing node.
|
|
RinkebyEthereumNetworkURL = "https://rinkeby.infura.io/nKmXgiFgc2KqtoQ8BCGJ"
|
|
|
|
// MainNetworkID is id of the main network
|
|
MainNetworkID = 1
|
|
|
|
// RopstenNetworkID is id of a test network (on PoW)
|
|
RopstenNetworkID = 3
|
|
|
|
// RinkebyNetworkID is id of a test network (on PoA)
|
|
RinkebyNetworkID = 4
|
|
|
|
// StatusChainNetworkID is id of a test network (private chain)
|
|
StatusChainNetworkID = 777
|
|
|
|
// WhisperDiscv5Topic used to register and search for whisper peers using discovery v5.
|
|
WhisperDiscv5Topic = discv5.Topic("whisper")
|
|
)
|
|
|
|
var (
|
|
// WhisperDiscv5Limits declares min and max limits for peers with whisper topic.
|
|
WhisperDiscv5Limits = Limits{2, 2}
|
|
// LesDiscoveryLimits default limits used if LES and discovery are enabled.
|
|
LesDiscoveryLimits = Limits{2, 2}
|
|
)
|