Ohm
Ohm
Event Store allows users to query events emitted from contracts running on our chain. The following is the config to enable `Event Store` ``` EventStore: DBName: {{.EventStore.DBName}} // Set DB...
I just create a new method `GetContractEvents` in go-loom. It is not done yet. But once it is merged, the following is the example of how to query and decode...
Ref PR: https://github.com/loomnetwork/go-loom/pull/383
> Also it looks like we need to fix up `EthTxPoll` and `EthBlockPoll` in a similar way. `EthTxPoll` and `EthBlockPoll` do not allow users to specify filter though. It just...
Update: this commit https://github.com/ethereum/go-ethereum/commit/223b950944f494a5b4e0957fd9f92c48b09037ad#diff-19b2c4499088b23ccb40eedb26c42e68 won't improve our chain as EVM state is committed only once per block. It also requires a feature flag to activate. So leave it for now.
`Fee`, `NewFee` and `MaxReferralPercentage` are percentage. You can change it from `2598` to `25.98%`.
Can't we just redelegate all delegations on unregistered candidate to the limbo validator?
Can we just set `maxReceipts` to 0?
Currently, we have duplicate `ParseConfig` functions, one in `cmd/loom/common` and another one in `config/config`. We should remove the one in `config/config` and then change this line https://github.com/loomnetwork/loomchain/blob/fe27e028672fe46a779d4dfa2c85979465d305a0/rpc/query_server.go#L158 to call `ParseConfig`...