-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix for arb token in multi token paymaster * update cron expression for erc20 oracle update cron * comment and version update
- Loading branch information
1 parent
18ec374
commit 91d6378
Showing
4 changed files
with
40 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,17 @@ | ||
import { BigNumber } from "ethers"; | ||
|
||
export const UnaccountedCost = BigNumber.from("45000").toHexString(); | ||
export const UnaccountedCost = BigNumber.from("45000").toHexString(); | ||
|
||
interface TokenInfo { | ||
decimals: number; | ||
symbol: string; | ||
} | ||
|
||
export const TokenDecimalsAndSymbol: Record<number, Record<string, TokenInfo>> = { | ||
42161: { | ||
"0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE": { | ||
decimals: 18, | ||
symbol: "ETH" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters