Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix cli commands and some graphql in 0.23 rel #1112

Open
wants to merge 4 commits into
base: release-v0.23.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/networks/arbitrum-sepolia.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ The Graph Network's testnet is on Arbitrum Sepolia (eip155:421614). Sepolia netw
| Component | Release |
| ------------------ | ------------------------------------------------------------------------------------ |
| contracts | [5.3.3](https://github.com/graphprotocol/contracts/releases/tag/v5.3.3) |
| indexer-agent | [0.23.2](https://github.com/graphprotocol/indexer/releases/tag/v0.23.2) |
| indexer-cli | [0.23.2](https://github.com/graphprotocol/indexer/releases/tag/v0.23.2) |
| indexer-agent | [0.23.3](https://github.com/graphprotocol/indexer/releases/tag/v0.23.3) |
| indexer-cli | [0.23.3](https://github.com/graphprotocol/indexer/releases/tag/v0.23.3) |
| indexer-service-rs | [1.0.0](https://github.com/graphprotocol/indexer-rs/releases/tag/v1.0.0) |
| tap-agent | [1.0.0](https://github.com/graphprotocol/indexer-rs/releases/tag/v1.0.0) |
| graph-node | [0.35.1](https://github.com/graphprotocol/graph-node/releases/tag/v0.35.1) |
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "0.23.2"
"version": "0.23.3"
}
4 changes: 2 additions & 2 deletions packages/indexer-agent/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphprotocol/indexer-agent",
"version": "0.23.2",
"version": "0.23.3",
"description": "Indexer agent",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down Expand Up @@ -29,7 +29,7 @@
},
"dependencies": {
"@graphprotocol/common-ts": "2.0.11",
"@graphprotocol/indexer-common": "^0.23.2",
"@graphprotocol/indexer-common": "^0.23.3",
"@thi.ng/heaps": "^1.3.1",
"axios": "0.26.1",
"bs58": "5.0.0",
Expand Down
7 changes: 3 additions & 4 deletions packages/indexer-agent/src/agent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -669,7 +669,7 @@ export class Agent {
eligibleAllocations: Allocation[],
): Promise<void> {
const logger = this.logger.child({ function: 'reconcileDeployments' })
logger.debug('Reconcile deployments')
logger.debug('Reconcile deployments', { targetDeployments })
// ----------------------------------------------------------------------------------------
// Ensure the network subgraph deployment is _always_ indexed
// ----------------------------------------------------------------------------------------
Expand Down Expand Up @@ -915,7 +915,7 @@ export class Agent {
network.specification.indexerOptions.allocationManagementMode ===
AllocationManagementMode.MANUAL
) {
this.logger.trace(
this.logger.debug(
`Skipping allocation reconciliation since AllocationManagementMode = 'manual'`,
{
protocolNetwork: network.specification.networkIdentifier,
Expand Down Expand Up @@ -948,7 +948,6 @@ export class Agent {
// Do nothing if there are already approved actions in the queue awaiting execution
const approvedActions = await operator.fetchActions({
status: ActionStatus.APPROVED,
protocolNetwork: network.specification.networkIdentifier,
})
if (approvedActions.length > 0) {
this.logger.info(
Expand All @@ -964,7 +963,7 @@ export class Agent {
const activeAllocations: Allocation[] =
await network.networkMonitor.allocations(AllocationStatus.ACTIVE)

this.logger.trace(`Reconcile allocation actions`, {
this.logger.debug(`Reconcile allocation actions`, {
protocolNetwork: network.specification.networkIdentifier,
epoch,
maxAllocationEpochs,
Expand Down
4 changes: 2 additions & 2 deletions packages/indexer-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@graphprotocol/indexer-cli",
"version": "0.23.2",
"version": "0.23.3",
"description": "Indexer CLI for The Graph Network",
"main": "./dist/cli.js",
"files": [
Expand All @@ -27,7 +27,7 @@
},
"dependencies": {
"@graphprotocol/common-ts": "2.0.11",
"@graphprotocol/indexer-common": "^0.23.2",
"@graphprotocol/indexer-common": "^0.23.3",
"@iarna/toml": "2.2.5",
"@thi.ng/iterators": "5.1.74",
"@urql/core": "3.1.0",
Expand Down
3 changes: 0 additions & 3 deletions packages/indexer-cli/src/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import {
nullPassThrough,
OrderDirection,
parseBoolean,
validateNetworkIdentifier,
} from '@graphprotocol/indexer-common'
import { validatePOI, validateRequiredParams } from './command-helpers'
import gql from 'graphql-tag'
Expand Down Expand Up @@ -207,7 +206,6 @@ const ACTION_PARAMS_PARSERS: Record<keyof ActionUpdateInput, (x: never) => any>
type: x => validateActionType(x),
status: x => validateActionStatus(x),
reason: nullPassThrough,
protocolNetwork: x => validateNetworkIdentifier(x),
}

/**
Expand Down Expand Up @@ -389,7 +387,6 @@ export async function fetchActions(
first: $first
) {
id
protocolNetwork
type
allocationID
deploymentID
Expand Down
43 changes: 4 additions & 39 deletions packages/indexer-cli/src/allocations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import {
CloseAllocationResult,
CreateAllocationResult,
ReallocateAllocationResult,
resolveChainAlias,
} from '@graphprotocol/indexer-common'

export interface IndexerAllocation {
Expand All @@ -29,7 +28,6 @@ export interface IndexerAllocation {
indexingRewards: BigNumber
queryFeesCollected: BigNumber
status: string
protocolNetwork: string
}

const ALLOCATION_CONVERTERS_FROM_GRAPHQL: Record<
Expand All @@ -53,7 +51,6 @@ const ALLOCATION_CONVERTERS_FROM_GRAPHQL: Record<
indexingRewards: nullPassThrough((x: string) => BigNumber.from(x)),
queryFeesCollected: nullPassThrough((x: string) => BigNumber.from(x)),
status: x => x,
protocolNetwork: x => x,
}

const ALLOCATION_FORMATTERS: Record<
Expand All @@ -76,7 +73,6 @@ const ALLOCATION_FORMATTERS: Record<
indexingRewards: x => utils.commify(formatGRT(x)),
queryFeesCollected: x => utils.commify(formatGRT(x)),
status: x => x,
protocolNetwork: resolveChainAlias,
}

/**
Expand Down Expand Up @@ -175,35 +171,30 @@ export const createAllocation = async (
deployment: string,
amount: BigNumber,
indexNode: string | undefined,
protocolNetwork: string,
): Promise<CreateAllocationResult> => {
const result = await client
.mutation(
gql`
mutation createAllocation(
$deployment: String!
$amount: String!
$protocolNetwork: String!
$indexNode: String
) {
createAllocation(
deployment: $deployment
amount: $amount
protocolNetwork: $protocolNetwork
indexNode: $indexNode
) {
allocation
deployment
allocatedTokens
protocolNetwork
}
}
`,
{
deployment,
amount: amount.toString(),
indexNode,
protocolNetwork,
},
)
.toPromise()
Expand All @@ -220,36 +211,23 @@ export const closeAllocation = async (
allocationID: string,
poi: string | undefined,
force: boolean,
protocolNetwork: string,
): Promise<CloseAllocationResult> => {
const result = await client
.mutation(
gql`
mutation closeAllocation(
$allocation: String!
$poi: String
$force: Boolean
$protocolNetwork: String!
) {
closeAllocation(
allocation: $allocation
poi: $poi
force: $force
protocolNetwork: $protocolNetwork
) {
mutation closeAllocation($allocation: String!, $poi: String, $force: Boolean) {
closeAllocation(allocation: $allocation, poi: $poi, force: $force) {
allocation
allocatedTokens
indexingRewards
receiptsWorthCollecting
protocolNetwork
}
}
`,
{
allocation: allocationID,
poi,
force,
protocolNetwork,
},
)
.toPromise()
Expand All @@ -267,7 +245,6 @@ export const reallocateAllocation = async (
poi: string | undefined,
amount: BigNumber,
force: boolean,
protocolNetwork: string,
): Promise<ReallocateAllocationResult> => {
const result = await client
.mutation(
Expand All @@ -277,21 +254,18 @@ export const reallocateAllocation = async (
$poi: String
$amount: String!
$force: Boolean
$protocolNetwork: String!
) {
reallocateAllocation(
allocation: $allocation
poi: $poi
amount: $amount
force: $force
protocolNetwork: $protocolNetwork
) {
closedAllocation
indexingRewardsCollected
receiptsWorthCollecting
createdAllocation
createdAllocationStake
protocolNetwork
}
}
`,
Expand All @@ -300,7 +274,6 @@ export const reallocateAllocation = async (
poi,
amount: amount.toString(),
force,
protocolNetwork,
},
)
.toPromise()
Expand All @@ -315,24 +288,16 @@ export const reallocateAllocation = async (
export const submitCollectReceiptsJob = async (
client: IndexerManagementClient,
allocationID: string,
protocolNetwork: string,
): Promise<void> => {
const result = await client
.mutation(
gql`
mutation submitCollectReceiptsJob(
$allocation: String!
$protocolNetwork: String!
) {
submitCollectReceiptsJob(
allocation: $allocation
protocolNetwork: $protocolNetwork
)
mutation submitCollectReceiptsJob($allocation: String!) {
submitCollectReceiptsJob(allocation: $allocation)
}
`,
{
allocation: allocationID,
protocolNetwork,
},
)
.toPromise()
Expand Down
8 changes: 1 addition & 7 deletions packages/indexer-cli/src/commands/indexer/actions/approve.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
parseOutputFormat,
} from '../../../command-helpers'
import { approveActions, fetchActions } from '../../../actions'
import { ActionStatus, resolveChainAlias } from '@graphprotocol/indexer-common'
import { ActionStatus } from '@graphprotocol/indexer-common'

const HELP = `
${chalk.bold('graph indexer actions approve')} [options] [<actionID1> ...]
Expand Down Expand Up @@ -58,7 +58,6 @@ module.exports = {
if (actionIDs.join() == 'queued') {
const queuedActions = await fetchActions(client, {
status: ActionStatus.QUEUED,
protocolNetwork: 'deprecated',
})

numericActionIDs = queuedActions.map(action => action.id)
Expand Down Expand Up @@ -93,15 +92,10 @@ module.exports = {
const queuedAction = await approveActions(client, numericActionIDs)

// Format Actions 'protocolNetwork' field to display human-friendly chain aliases instead of CAIP2-IDs
queuedAction.forEach(
action => (action.protocolNetwork = resolveChainAlias(action.protocolNetwork)),
)

actionSpinner.succeed(`Actions approved`)
printObjectOrArray(print, outputFormat, queuedAction, [
'id',
'type',
'protocolNetwork',
'deploymentID',
'allocationID',
'amount',
Expand Down
7 changes: 0 additions & 7 deletions packages/indexer-cli/src/commands/indexer/actions/cancel.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { GluegunToolbox } from 'gluegun'
import chalk from 'chalk'
import { resolveChainAlias } from '@graphprotocol/indexer-common'
import { loadValidatedConfig } from '../../../config'
import { createIndexerManagementClient } from '../../../client'
import { fixParameters, printObjectOrArray } from '../../../command-helpers'
Expand Down Expand Up @@ -67,14 +66,8 @@ module.exports = {

actionSpinner.succeed(`Actions canceled`)

// Format Actions 'protocolNetwork' field to display human-friendly chain aliases instead of CAIP2-IDs
queuedAction.forEach(
action => (action.protocolNetwork = resolveChainAlias(action.protocolNetwork)),
)

printObjectOrArray(print, outputFormat, queuedAction, [
'id',
'protocolNetwork',
'type',
'deploymentID',
'allocationID',
Expand Down
7 changes: 0 additions & 7 deletions packages/indexer-cli/src/commands/indexer/actions/execute.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { GluegunToolbox } from 'gluegun'
import chalk from 'chalk'
import { resolveChainAlias } from '@graphprotocol/indexer-common'
import { loadValidatedConfig } from '../../../config'
import { createIndexerManagementClient } from '../../../client'
import { fixParameters, printObjectOrArray } from '../../../command-helpers'
Expand Down Expand Up @@ -60,14 +59,8 @@ module.exports = {

spinner.succeed(`Executed approved actions`)

// Format Actions 'protocolNetwork' field to display human-friendly chain aliases instead of CAIP2-IDs
executedActions.forEach(
action => (action.protocolNetwork = resolveChainAlias(action.protocolNetwork)),
)

printObjectOrArray(print, outputFormat, executedActions, [
'id',
'protocolNetwork',
'status',
'type',
'deploymentID',
Expand Down
1 change: 0 additions & 1 deletion packages/indexer-cli/src/commands/indexer/actions/queue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ module.exports = {

printObjectOrArray(print, outputFormat, queuedAction, [
'id',
'protocolNetwork',
'type',
'deploymentID',
'allocationID',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ module.exports = {
const displayProperties: (keyof Action)[] = [
'id',
'type',
'protocolNetwork',
'deploymentID',
'allocationID',
'amount',
Expand Down
Loading
Loading