Skip to content

Commit

Permalink
mantle calculations
Browse files Browse the repository at this point in the history
  • Loading branch information
mouseless0x committed Oct 16, 2024
1 parent e312a2d commit 8a195bb
Show file tree
Hide file tree
Showing 8 changed files with 569 additions and 322 deletions.
8 changes: 7 additions & 1 deletion src/cli/config/bundler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,13 @@ export const bundlerArgsSchema = z.object({
})

export const compatibilityArgsSchema = z.object({
"chain-type": z.enum(["default", "op-stack", "arbitrum", "hedera"]),
"chain-type": z.enum([
"default",
"op-stack",
"arbitrum",
"hedera",
"mantle"
]),
"legacy-transactions": z.boolean(),
"api-version": z
.string()
Expand Down
2 changes: 1 addition & 1 deletion src/cli/config/options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ export const compatibilityOptions: CliCommandOptions<ICompatibilityArgsInput> =
description:
"Indicates weather the chain is a OP stack chain, arbitrum chain, or default EVM chain",
type: "string",
choices: ["default", "op-stack", "arbitrum", "hedera"],
choices: ["default", "op-stack", "arbitrum", "hedera", "mantle"],
default: "default"
},
"legacy-transactions": {
Expand Down
Loading

0 comments on commit 8a195bb

Please sign in to comment.