Skip to content

Commit

Permalink
fixing config response to omit tenderly api and key
Browse files Browse the repository at this point in the history
  • Loading branch information
nikhilkumar1612 committed Feb 5, 2025
1 parent d9ac381 commit 560110f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/executor/src/modules/skandha.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ export class Skandha {
vglMarkupPercent: this.networkConfig.vglMarkupPercent,
blockscoutUrl: this.networkConfig.blockscoutUrl,
blockscoutApiKeys: this.networkConfig.blockscoutApiKeys.length,
tenderlyApiUrl: this.networkConfig.tenderlyApiUrl,
tenderlyKey: this.networkConfig.tenderlyKey,
tenderlyApiUrl: this.networkConfig.tenderlyApiUrl ? true : false,
tenderlyKey: this.networkConfig.tenderlyKey ? true : false,
};
}

Expand Down
4 changes: 2 additions & 2 deletions packages/types/src/api/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,8 +101,8 @@ export type GetConfigResponse = {
vglMarkupPercent: number;
blockscoutUrl: string;
blockscoutApiKeys: number;
tenderlyApiUrl: string;
tenderlyKey: string;
tenderlyApiUrl: boolean; // true if set
tenderlyKey: boolean; // true if set
};

export type SupportedEntryPoints = string[];
Expand Down

0 comments on commit 560110f

Please sign in to comment.