forked from 0xPolygonHermez/zkevm-sequence-sender
-
Notifications
You must be signed in to change notification settings - Fork 3
/
local.node.config.toml
34 lines (33 loc) · 1.02 KB
/
local.node.config.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[Log]
Environment = "development" # "production" or "development"
Level = "info"
Outputs = ["stderr"]
[SequenceSender]
WaitPeriodSendSequence = "15s"
LastBatchVirtualizationTimeMaxWaitPeriod = "10s"
MaxTxSizeForL1 = 131072
L2Coinbase = "0xf39fd6e51aad88f6f4ce6ab8827279cfffb92266"
PrivateKey = {Path = "./test/sequencer.keystore", Password = "testonly"}
SequencesTxFileName = "sequencesender.json"
WaitPeriodPurgeTxFile = "60m"
MaxPendingTx = 1
[SequenceSender.StreamClient]
Server = "127.0.0.1:6900"
[SequenceSender.EthTxManager]
FrequencyToMonitorTxs = "1s"
WaitTxToBeMined = "2m"
ConsolidationL1ConfirmationBlocks = 5
FinalizationL1ConfirmationBlocks = 10
WaitReceiptToBeGenerated = "8s"
PrivateKeys = [
{Path = "./test/sequencer.keystore", Password = "testonly"},
]
ForcedGas = 0
GasPriceMarginFactor = 1
MaxGasPriceLimit = 0
PersistenceFilename = "ethtxmanager.json"
[SequenceSender.EthTxManager.Etherman]
URL = "http://127.0.0.1:8545"
MultiGasProvider = false
L1ChainID = 1337
HTTPHeaders = []