Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ impl MigrationTrait for Migration {

COMMENT ON COLUMN "sources"."raw_deployed_bytecode" IS 'The result of local compilation. May be used for searching for full matches';

COMMENT ON TABLE "verified_contracts" IS 'The table contains historic data that are not required for the verificaiton in general, but what we still would like to store as it may be useful for further processing. Contains information about contracts being verified via
COMMENT ON TABLE "verified_contracts" IS 'The table contains historic data that are not required for the verification in general, but what we still would like to store as it may be useful for further processing. Contains information about contracts being verified via
the service.';

ALTER TABLE "source_files" ADD FOREIGN KEY ("source_id") REFERENCES "sources" ("id");
Expand Down
2 changes: 1 addition & 1 deletion eth-bytecode-db/eth-bytecode-db/tests/test_search.rs
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ async fn test_partial_search_bytecodes() {
let partial_matches =
eth_bytecode_db_find_contract(db.as_ref(), BytecodeType::CreationInput, data)
.await
.expect("unkown contract should not give error");
.expect("unknown contract should not give error");
assert!(
partial_matches.is_empty(),
"found some contact, but bytecode is unknow"
Expand Down
2 changes: 1 addition & 1 deletion user-ops-indexer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ found [here](../docs/common-envs.md).
| `USER_OPS_INDEXER__INDEXER__ENTRYPOINTS__V07_ENTRY_POINT` | | Entrypoint v0.7 contract address | `0x0000000071727De22E5E9d8BAf0edAc6f37da032` |
| `USER_OPS_INDEXER__INDEXER__REALTIME__ENABLED` | | Enable forward realtime indexing of user operations from the `latest` block | `true` |
| `USER_OPS_INDEXER__INDEXER__REALTIME__POLLING_INTERVAL` | | Polling interval for forward realtime indexing of user operations from the `latest` block, when using an HTTP RPC node | `6` |
| `USER_OPS_INDEXER__INDEXER__REALTIME__POLLING_BLOCK_RANGE` | | Extra block range offset for polling in reatime indexing to recover from small re-orgs. | `6` |
| `USER_OPS_INDEXER__INDEXER__REALTIME__POLLING_BLOCK_RANGE` | | Extra block range offset for polling in realtime indexing to recover from small re-orgs. | `6` |
| `USER_OPS_INDEXER__INDEXER__REALTIME__MAX_BLOCK_RANGE` | | Max block range for single polling request in realtime indexing. | `10000` |
| `USER_OPS_INDEXER__INDEXER__PAST_RPC_LOGS_INDEXER__ENABLED` | | Enable one-time reindex of missed user operations from recent blocks | `false` |
| `USER_OPS_INDEXER__INDEXER__PAST_RPC_LOGS_INDEXER__BLOCK_RANGE` | | Block range width for missed user operations reindex. Will re-index events from a given number of blocks prior the `latest` block | `0` |
Expand Down