Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: some debugging tools #144

Merged
merged 3 commits into from
Feb 2, 2024
Merged
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
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "1.0.32-alpha",
"version": "1.0.33-alpha",
"stream": "true",
"command": {
"version": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "root",
"private": true,
"version": "1.0.32-alpha",
"version": "1.0.33-alpha",
"engines": {
"node": ">=18.0.0"
},
Expand Down
8 changes: 4 additions & 4 deletions packages/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "api",
"version": "1.0.32-alpha",
"version": "1.0.33-alpha",
"description": "The API module of Etherspot bundler client",
"author": "Etherspot",
"homepage": "https://https://github.com/etherspot/skandha#readme",
Expand Down Expand Up @@ -35,13 +35,13 @@
"class-transformer": "0.5.1",
"class-validator": "0.14.0",
"ethers": "5.7.2",
"executor": "^1.0.32-alpha",
"executor": "^1.0.33-alpha",
"fastify": "4.14.1",
"monitoring": "^1.0.32-alpha",
"monitoring": "^1.0.33-alpha",
"pino": "8.11.0",
"pino-pretty": "10.0.0",
"reflect-metadata": "0.1.13",
"types": "^1.0.32-alpha"
"types": "^1.0.33-alpha"
},
"devDependencies": {
"@types/connect": "3.4.35"
Expand Down
22 changes: 18 additions & 4 deletions packages/api/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,11 +84,20 @@ export class ApiApp {
const redirectApi = new RedirectAPI(executor.networkName, this.config);
const skandhaApi = new SkandhaAPI(executor.eth, executor.skandha);

const handleRpc = async (ip: string, request: any): Promise<any> => {
const handleRpc = async (
ip: string,
request: any,
auth: string | undefined
): Promise<any> => {
let result: any;
const { method, params, jsonrpc, id } = request;
// ADMIN METHODS
if (this.testingMode || ip === "localhost" || ip === "127.0.0.1") {
if (
this.testingMode ||
ip === "localhost" ||
ip === "127.0.0.1" ||
(process.env.ADMIN_KEY && auth === process.env.SKANDHA_ADMIN_KEY)
) {
switch (method) {
case BundlerRPCMethods.debug_bundler_setBundlingMode:
result = await debugApi.setBundlingMode(params[0]);
Expand All @@ -107,6 +116,9 @@ export class ApiApp {
case BundlerRPCMethods.debug_bundler_dumpMempool:
result = await debugApi.dumpMempool(/* params[0] */);
break;
case BundlerRPCMethods.debug_bundler_dumpMempoolRaw:
result = await debugApi.dumpMempoolRaw(/* params[0] */);
break;
case BundlerRPCMethods.debug_bundler_setReputation:
result = await debugApi.setReputation({
reputations: params[0],
Expand Down Expand Up @@ -219,10 +231,12 @@ export class ApiApp {
if (Array.isArray(req.body)) {
response = [];
for (const request of req.body) {
response.push(await handleRpc(req.ip, request));
response.push(
await handleRpc(req.ip, request, req.headers.authorization)
);
}
} else {
response = await handleRpc(req.ip, req.body);
response = await handleRpc(req.ip, req.body, req.headers.authorization);
}
return res.status(HttpStatus.OK).send(response);
};
Expand Down
1 change: 1 addition & 0 deletions packages/api/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export const BundlerRPCMethods = {
web3_clientVersion: "web3_clientVersion",
debug_bundler_clearState: "debug_bundler_clearState",
debug_bundler_dumpMempool: "debug_bundler_dumpMempool",
debug_bundler_dumpMempoolRaw: "debug_bundler_dumpMempoolRaw",
debug_bundler_setReputation: "debug_bundler_setReputation",
debug_bundler_dumpReputation: "debug_bundler_dumpReputation",
debug_bundler_setBundlingMode: "debug_bundler_setBundlingMode",
Expand Down
5 changes: 5 additions & 0 deletions packages/api/src/modules/debug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { Debug } from "executor/lib/modules";
import { IsEthereumAddress } from "class-validator";
import { BundlingMode } from "types/lib/api/interfaces";
import { GetStakeStatus } from "executor/lib/interfaces";
import { MempoolEntrySerialized } from "executor/src/entities/interfaces";
import { RpcMethodValidator } from "../utils/RpcMethodValidator";
import {
SetReputationArgs,
Expand Down Expand Up @@ -53,6 +54,10 @@ export class DebugAPI {
return await this.debugModule.dumpMempool();
}

async dumpMempoolRaw(): Promise<MempoolEntrySerialized[]> {
return await this.debugModule.dumpMempoolRaw();
}

/**
* Forces the bundler to build and execute a bundle from the mempool as handleOps() transaction
*/
Expand Down
14 changes: 7 additions & 7 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cli",
"version": "1.0.32-alpha",
"version": "1.0.33-alpha",
"description": "> TODO: description",
"author": "zincoshine <[email protected]>",
"homepage": "https://https://github.com/etherspot/skandha#readme",
Expand Down Expand Up @@ -38,15 +38,15 @@
"@libp2p/peer-id-factory": "2.0.1",
"@libp2p/prometheus-metrics": "1.1.3",
"@multiformats/multiaddr": "12.1.3",
"api": "^1.0.32-alpha",
"db": "^1.0.32-alpha",
"executor": "^1.0.32-alpha",
"api": "^1.0.33-alpha",
"db": "^1.0.33-alpha",
"executor": "^1.0.33-alpha",
"find-up": "5.0.0",
"got": "12.5.3",
"js-yaml": "4.1.0",
"monitoring": "^1.0.32-alpha",
"node": "^1.0.32-alpha",
"types": "^1.0.32-alpha",
"monitoring": "^1.0.33-alpha",
"node": "^1.0.33-alpha",
"types": "^1.0.33-alpha",
"yargs": "17.6.2"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/db/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "db",
"version": "1.0.32-alpha",
"version": "1.0.33-alpha",
"description": "The DB module of Etherspot bundler client",
"author": "Etherspot",
"homepage": "https://github.com/etherspot/etherspot-bundler#readme",
Expand Down Expand Up @@ -33,7 +33,7 @@
"dependencies": {
"@chainsafe/ssz": "0.10.1",
"@farcaster/rocksdb": "5.5.0",
"types": "^1.0.32-alpha"
"types": "^1.0.33-alpha"
},
"devDependencies": {
"@types/rocksdb": "3.0.1",
Expand Down
8 changes: 4 additions & 4 deletions packages/executor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "executor",
"version": "1.0.32-alpha",
"version": "1.0.33-alpha",
"description": "The Relayer module of Etherspot bundler client",
"author": "Etherspot",
"homepage": "https://https://github.com/etherspot/skandha#readme",
Expand Down Expand Up @@ -34,8 +34,8 @@
"@flashbots/ethers-provider-bundle": "0.6.2",
"async-mutex": "0.4.0",
"ethers": "5.7.2",
"monitoring": "^1.0.32-alpha",
"params": "^1.0.32-alpha",
"types": "^1.0.32-alpha"
"monitoring": "^1.0.33-alpha",
"params": "^1.0.33-alpha",
"types": "^1.0.33-alpha"
}
}
14 changes: 13 additions & 1 deletion packages/executor/src/modules/debug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ import {
ReputationService,
} from "../services";
import { BundlingMode, GetStakeStatus, NetworkConfig } from "../interfaces";
import { ReputationEntryDump } from "../entities/interfaces";
import {
MempoolEntrySerialized,
ReputationEntryDump,
} from "../entities/interfaces";
import { getAddr } from "../utils";
import { SetReputationArgs, SetMempoolArgs } from "./interfaces";
/*
Expand Down Expand Up @@ -71,6 +74,15 @@ export class Debug {
.map((entry) => entry.userOp);
}

/**
* Dumps the current UserOperations mempool
* array - Array of UserOperations currently in the mempool
*/
async dumpMempoolRaw(): Promise<MempoolEntrySerialized[]> {
const entries = await this.mempoolService.dump();
return entries.map((entry) => entry);
}

/**
* Forces the bundler to build and execute a bundle from the mempool as handleOps() transaction
*/
Expand Down
8 changes: 8 additions & 0 deletions packages/executor/src/services/BundlingService/service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -327,6 +327,14 @@ export class BundlingService {
async sendNextBundle(): Promise<void> {
await this.mutex.runExclusive(async () => {
let relayersCount = this.relayer.getAvailableRelayersCount();
if (relayersCount == 0) {
if (
(await this.mempoolService.getNewEntriesSorted(this.maxBundleSize))
.length > 0
) {
this.logger.debug("All relayers are busy");
}
}
while (relayersCount-- > 0) {
let entries = await this.mempoolService.getNewEntriesSorted(
this.maxBundleSize
Expand Down
4 changes: 2 additions & 2 deletions packages/monitoring/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "monitoring",
"version": "1.0.32-alpha",
"version": "1.0.33-alpha",
"description": "The Monitoring module of Etherspot bundler client",
"author": "Etherspot",
"homepage": "https://github.com/etherspot/etherspot-bundler#readme",
Expand Down Expand Up @@ -32,6 +32,6 @@
},
"dependencies": {
"prom-client": "^14.2.0",
"types": "^1.0.32-alpha"
"types": "^1.0.33-alpha"
}
}
16 changes: 8 additions & 8 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "node",
"version": "1.0.32-alpha",
"version": "1.0.33-alpha",
"description": "The bundler node module of Etherspot bundler client",
"author": "Etherspot",
"homepage": "https://https://github.com/etherspot/skandha#readme",
Expand Down Expand Up @@ -56,25 +56,25 @@
"@libp2p/tcp": "6.1.0",
"@multiformats/multiaddr": "11.4.0",
"abstract-leveldown": "7.2.0",
"api": "^1.0.32-alpha",
"api": "^1.0.33-alpha",
"datastore-core": "8.0.1",
"db": "^1.0.32-alpha",
"db": "^1.0.33-alpha",
"ethers": "5.7.2",
"executor": "^1.0.32-alpha",
"executor": "^1.0.33-alpha",
"it-filter": "1.0.2",
"it-map": "1.0.5",
"it-sort": "1.0.0",
"it-take": "1.0.1",
"libp2p": "0.42.2",
"monitoring": "^1.0.32-alpha",
"params": "^1.0.32-alpha",
"monitoring": "^1.0.33-alpha",
"params": "^1.0.33-alpha",
"prettier": "2.8.4",
"snappy": "7.2.2",
"snappyjs": "0.7.0",
"stream-to-it": "0.2.4",
"strict-event-emitter-types": "2.0.0",
"types": "^1.0.32-alpha",
"utils": "^1.0.32-alpha",
"types": "^1.0.33-alpha",
"utils": "^1.0.33-alpha",
"varint": "6.0.0",
"xxhash-wasm": "1.0.2"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/params/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "params",
"version": "1.0.32-alpha",
"version": "1.0.33-alpha",
"description": "Various bundler parameters",
"author": "Etherspot",
"homepage": "https://github.com/etherspot/skandha#readme",
Expand All @@ -26,8 +26,8 @@
"@eth-optimism/sdk": "3.0.0",
"@mantleio/sdk": "0.2.1",
"ethers": "5.7.2",
"types": "^1.0.32-alpha",
"utils": "^1.0.32-alpha"
"types": "^1.0.33-alpha",
"utils": "^1.0.33-alpha"
},
"scripts": {
"clean": "rm -rf lib && rm -f *.tsbuildinfo",
Expand Down
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "types",
"version": "1.0.32-alpha",
"version": "1.0.33-alpha",
"description": "The types of Etherspot bundler client",
"author": "Etherspot",
"homepage": "https://https://github.com/etherspot/skandha#readme",
Expand Down
4 changes: 2 additions & 2 deletions packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "utils",
"version": "1.0.32-alpha",
"version": "1.0.33-alpha",
"description": "utils of Etherspot bundler client",
"author": "Etherspot",
"homepage": "https://https://github.com/etherspot/skandha#readme",
Expand Down Expand Up @@ -37,6 +37,6 @@
"case": "^1.6.3",
"pino": "8.11.0",
"pino-pretty": "10.0.0",
"types": "^1.0.32-alpha"
"types": "^1.0.33-alpha"
}
}
Loading