Skip to content

Commit bf87260

Browse files
committed
Add GNS, GraphToken and Staking to YARGS cli
1 parent e009189 commit bf87260

File tree

10 files changed

+883
-278
lines changed

10 files changed

+883
-278
lines changed

scripts/cli/commands/contracts/contracts.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
import yargs, { Argv } from 'yargs'
22

33
import { curationCommand } from './curation'
4-
import { serviceRegistryCommand } from './service-registry'
4+
import { serviceRegistryCommand } from './serviceRegistry'
55
import { ensCommand } from './ens'
66
import { ethereumDIDRegistryCommand } from './ethereumDIDRegistry'
7+
import { gnsCommand } from './gns'
8+
import { graphTokenCommand } from './graphToken'
9+
import { stakingCommand } from './staking'
710

811
import { CLIArgs } from '../../env'
912

@@ -16,6 +19,9 @@ export const contractsCommand = {
1619
.command(serviceRegistryCommand)
1720
.command(ensCommand)
1821
.command(ethereumDIDRegistryCommand)
22+
.command(gnsCommand)
23+
.command(graphTokenCommand)
24+
.command(stakingCommand)
1925
},
2026
handler: (argv: CLIArgs): void => {
2127
yargs.showHelp()

0 commit comments

Comments
 (0)