Skip to content

Commit

Permalink
fix: deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
benjlevesque committed Dec 7, 2023
1 parent ae933ee commit a971019
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
7 changes: 0 additions & 7 deletions cli/commands/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,6 @@ export const builder = (y: yargs.Argv) =>
desc: "TheGraph token",
type: "string",
})
.option("version", {
desc:
"The subgraph version label, used by non-hosted service graph nodes",
type: "string",
demandOption: true,
})
.check(({ all, network }) => {
if (all && network)
throw new Error("Cannot specify both -all and positional `network`");
Expand All @@ -42,7 +36,6 @@ export const handler = ({
network,
token,
all,
version,
}: Awaited<ReturnType<typeof builder>["argv"]>) => {
const networkList = all ? networks : network || [];
const options = token
Expand Down
3 changes: 2 additions & 1 deletion cli/networks.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,6 @@
"moonbeam",
"tombchain",
"core",
"zksync-era"
"zksync-era",
"sepolia"
]

0 comments on commit a971019

Please sign in to comment.