From 7062a048de71bfad2b55793a41ad0105376e24c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=A2=E3=83=AC=E3=82=AF=E3=82=B5=E3=83=B3=E3=83=80?= =?UTF-8?q?=E3=83=BC=2Eeth?= Date: Tue, 26 Sep 2023 04:27:55 +0900 Subject: [PATCH] refactor: evmNetworkId cleanup --- src/handlers/payout/action.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/handlers/payout/action.ts b/src/handlers/payout/action.ts index bba9036d9..553ad0151 100644 --- a/src/handlers/payout/action.ts +++ b/src/handlers/payout/action.ts @@ -26,7 +26,7 @@ import { isEmpty } from "lodash"; export interface IncentivesCalculationResult { paymentToken: string; rpc: string; - networkId: number; + evmNetworkId: number; privateKey: string; permitMaxPrice: number; baseMultiplier: number; @@ -225,7 +225,7 @@ export const incentivesCalculation = async (): Promise