Skip to content

Instantly share code, notes, and snippets.

@bryanchriswhite
Created September 13, 2022 07:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bryanchriswhite/034e06a66fcf0c9b010d1c1f32dcccc7 to your computer and use it in GitHub Desktop.
Save bryanchriswhite/034e06a66fcf0c9b010d1c1f32dcccc7 to your computer and use it in GitHub Desktop.
# WARN [handleDelegateWithdrawRewardEvent] (!SKIPPED!) no claim msgs found in tx: BCB1B0915F...
query investigation {
allClaims: distDelegatorClaims {
totalCount
}
txClaims: distDelegatorClaims (filter: {transactionId: {startsWith: "BCB1B9815F"}}) {
totalCount
nodes {
validatorAddress
}
}
txEvents: transactions (filter: {id: {startsWith: "BCB1B9815F"}}) {
totalCount
nodes {
id
status
withdraw_reward_event: events (filter: {type: {equalTo: "withdraw_rewards"}}) {
nodes {
type
attributes
}
}
other_events: events (filter: {type: {notEqualTo: "withdraw_rewards"}}) {
nodes {
type
}
}
messages {
nodes {
typeUrl
json
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment