diff --git a/documentation/en/default-lotus-config.toml b/documentation/en/default-lotus-config.toml index b8f744b9c1..d856f0e65c 100644 --- a/documentation/en/default-lotus-config.toml +++ b/documentation/en/default-lotus-config.toml @@ -226,7 +226,7 @@ # # type: bool # env var: LOTUS_FEVM_ENABLEETHRPC - #EnableEthRPC = false + #EnableEthRPC = true # EthTraceFilterMaxResults sets the maximum results returned per request by trace_filter # @@ -260,7 +260,7 @@ # # type: bool # env var: LOTUS_EVENTS_ENABLEACTOREVENTSAPI - #EnableActorEventsAPI = false + #EnableActorEventsAPI = true # FilterTTL specifies the time to live for actor event filters. Filters that haven't been accessed longer than # this time become eligible for automatic deletion. Filters consume resources, so if they are unused they @@ -306,7 +306,7 @@ # # type: bool # env var: LOTUS_CHAININDEXER_DISABLEINDEXER - #DisableIndexer = true + #DisableIndexer = false # GCRetentionEpochs specifies the number of epochs for which data is retained in the Indexer. # The garbage collection (GC) process removes data older than this retention period. diff --git a/node/config/def.go b/node/config/def.go index 5cb6935833..7cf8a29e7a 100644 --- a/node/config/def.go +++ b/node/config/def.go @@ -83,20 +83,20 @@ func DefaultFullNode() *FullNode { }, }, Fevm: FevmConfig{ - EnableEthRPC: false, + EnableEthRPC: true, EthTraceFilterMaxResults: 500, EthBlkCacheSize: 500, }, Events: EventsConfig{ DisableRealTimeFilterAPI: false, - EnableActorEventsAPI: false, + EnableActorEventsAPI: true, FilterTTL: Duration(time.Hour * 1), MaxFilters: 100, MaxFilterResults: 10000, MaxFilterHeightRange: 2880, // conservative limit of one day }, ChainIndexer: ChainIndexerConfig{ - DisableIndexer: true, + DisableIndexer: false, GCRetentionEpochs: 0, ReconcileEmptyIndex: false, MaxReconcileTipsets: 3 * builtin.EpochsInDay,