|
@@ -22,6 +22,78 @@ type BountyCreatedEvent implements Event @entity {
|
|
|
bounty: Bounty!
|
|
|
}
|
|
|
|
|
|
+type BountyCanceledEvent implements Event @entity {
|
|
|
+ ### GENERIC DATA ###
|
|
|
+
|
|
|
+ "(network}-{blockNumber}-{indexInBlock}"
|
|
|
+ id: ID!
|
|
|
+
|
|
|
+ "Hash of the extrinsic which caused the event to be emitted"
|
|
|
+ inExtrinsic: String
|
|
|
+
|
|
|
+ "Blocknumber of the block in which the event was emitted."
|
|
|
+ inBlock: Int!
|
|
|
+
|
|
|
+ "Network the block was produced in"
|
|
|
+ network: Network!
|
|
|
+
|
|
|
+ "Index of event in block from which it was emitted."
|
|
|
+ indexInBlock: Int!
|
|
|
+
|
|
|
+ ### SPECIFIC DATA ###
|
|
|
+
|
|
|
+ "Related bounty"
|
|
|
+ bounty: Bounty!
|
|
|
+}
|
|
|
+
|
|
|
+type BountyVetoedEvent implements Event @entity {
|
|
|
+ ### GENERIC DATA ###
|
|
|
+
|
|
|
+ "(network}-{blockNumber}-{indexInBlock}"
|
|
|
+ id: ID!
|
|
|
+
|
|
|
+ "Hash of the extrinsic which caused the event to be emitted"
|
|
|
+ inExtrinsic: String
|
|
|
+
|
|
|
+ "Blocknumber of the block in which the event was emitted."
|
|
|
+ inBlock: Int!
|
|
|
+
|
|
|
+ "Network the block was produced in"
|
|
|
+ network: Network!
|
|
|
+
|
|
|
+ "Index of event in block from which it was emitted."
|
|
|
+ indexInBlock: Int!
|
|
|
+
|
|
|
+ ### SPECIFIC DATA ###
|
|
|
+
|
|
|
+ "Related bounty"
|
|
|
+ bounty: Bounty!
|
|
|
+}
|
|
|
+
|
|
|
+type BountyFundedEvent implements Event @entity {
|
|
|
+ ### GENERIC DATA ###
|
|
|
+
|
|
|
+ "(network}-{blockNumber}-{indexInBlock}"
|
|
|
+ id: ID!
|
|
|
+
|
|
|
+ "Hash of the extrinsic which caused the event to be emitted"
|
|
|
+ inExtrinsic: String
|
|
|
+
|
|
|
+ "Blocknumber of the block in which the event was emitted."
|
|
|
+ inBlock: Int!
|
|
|
+
|
|
|
+ "Network the block was produced in"
|
|
|
+ network: Network!
|
|
|
+
|
|
|
+ "Index of event in block from which it was emitted."
|
|
|
+ indexInBlock: Int!
|
|
|
+
|
|
|
+ ### SPECIFIC DATA ###
|
|
|
+
|
|
|
+ "Related bounty contribution"
|
|
|
+ contribution: BountyContribution!
|
|
|
+}
|
|
|
+
|
|
|
type BountyMaxFundingReachedEvent implements Event @entity {
|
|
|
### GENERIC DATA ###
|
|
|
|
|
@@ -44,6 +116,81 @@ type BountyMaxFundingReachedEvent implements Event @entity {
|
|
|
|
|
|
"Related bounty"
|
|
|
bounty: Bounty!
|
|
|
+
|
|
|
+ "Related bounty contribution"
|
|
|
+ contribution: BountyContribution!
|
|
|
+}
|
|
|
+
|
|
|
+type BountyFundingWithdrawalEvent implements Event @entity {
|
|
|
+ ### GENERIC DATA ###
|
|
|
+
|
|
|
+ "(network}-{blockNumber}-{indexInBlock}"
|
|
|
+ id: ID!
|
|
|
+
|
|
|
+ "Hash of the extrinsic which caused the event to be emitted"
|
|
|
+ inExtrinsic: String
|
|
|
+
|
|
|
+ "Blocknumber of the block in which the event was emitted."
|
|
|
+ inBlock: Int!
|
|
|
+
|
|
|
+ "Network the block was produced in"
|
|
|
+ network: Network!
|
|
|
+
|
|
|
+ "Index of event in block from which it was emitted."
|
|
|
+ indexInBlock: Int!
|
|
|
+
|
|
|
+ ### SPECIFIC DATA ###
|
|
|
+
|
|
|
+ "Related bounty contribution"
|
|
|
+ contribution: BountyContribution!
|
|
|
+}
|
|
|
+
|
|
|
+type BountyCreatorCherryWithdrawalEvent implements Event @entity {
|
|
|
+ ### GENERIC DATA ###
|
|
|
+
|
|
|
+ "(network}-{blockNumber}-{indexInBlock}"
|
|
|
+ id: ID!
|
|
|
+
|
|
|
+ "Hash of the extrinsic which caused the event to be emitted"
|
|
|
+ inExtrinsic: String
|
|
|
+
|
|
|
+ "Blocknumber of the block in which the event was emitted."
|
|
|
+ inBlock: Int!
|
|
|
+
|
|
|
+ "Network the block was produced in"
|
|
|
+ network: Network!
|
|
|
+
|
|
|
+ "Index of event in block from which it was emitted."
|
|
|
+ indexInBlock: Int!
|
|
|
+
|
|
|
+ ### SPECIFIC DATA ###
|
|
|
+
|
|
|
+ "Related bounty"
|
|
|
+ bounty: Bounty!
|
|
|
+}
|
|
|
+
|
|
|
+type BountyRemovedEvent implements Event @entity {
|
|
|
+ ### GENERIC DATA ###
|
|
|
+
|
|
|
+ "(network}-{blockNumber}-{indexInBlock}"
|
|
|
+ id: ID!
|
|
|
+
|
|
|
+ "Hash of the extrinsic which caused the event to be emitted"
|
|
|
+ inExtrinsic: String
|
|
|
+
|
|
|
+ "Blocknumber of the block in which the event was emitted."
|
|
|
+ inBlock: Int!
|
|
|
+
|
|
|
+ "Network the block was produced in"
|
|
|
+ network: Network!
|
|
|
+
|
|
|
+ "Index of event in block from which it was emitted."
|
|
|
+ indexInBlock: Int!
|
|
|
+
|
|
|
+ ### SPECIFIC DATA ###
|
|
|
+
|
|
|
+ "Related bounty"
|
|
|
+ bounty: Bounty!
|
|
|
}
|
|
|
|
|
|
type WorkEntryAnnouncedEvent implements Event @entity {
|
|
@@ -70,6 +217,54 @@ type WorkEntryAnnouncedEvent implements Event @entity {
|
|
|
entry: BountyEntry!
|
|
|
}
|
|
|
|
|
|
+type WorkEntryWithdrawnEvent implements Event @entity {
|
|
|
+ ### GENERIC DATA ###
|
|
|
+
|
|
|
+ "(network}-{blockNumber}-{indexInBlock}"
|
|
|
+ id: ID!
|
|
|
+
|
|
|
+ "Hash of the extrinsic which caused the event to be emitted"
|
|
|
+ inExtrinsic: String
|
|
|
+
|
|
|
+ "Blocknumber of the block in which the event was emitted."
|
|
|
+ inBlock: Int!
|
|
|
+
|
|
|
+ "Network the block was produced in"
|
|
|
+ network: Network!
|
|
|
+
|
|
|
+ "Index of event in block from which it was emitted."
|
|
|
+ indexInBlock: Int!
|
|
|
+
|
|
|
+ ### SPECIFIC DATA ###
|
|
|
+
|
|
|
+ "Related work entry"
|
|
|
+ entry: BountyEntry!
|
|
|
+}
|
|
|
+
|
|
|
+type WorkEntrySlashedEvent implements Event @entity {
|
|
|
+ ### GENERIC DATA ###
|
|
|
+
|
|
|
+ "(network}-{blockNumber}-{indexInBlock}"
|
|
|
+ id: ID!
|
|
|
+
|
|
|
+ "Hash of the extrinsic which caused the event to be emitted"
|
|
|
+ inExtrinsic: String
|
|
|
+
|
|
|
+ "Blocknumber of the block in which the event was emitted."
|
|
|
+ inBlock: Int!
|
|
|
+
|
|
|
+ "Network the block was produced in"
|
|
|
+ network: Network!
|
|
|
+
|
|
|
+ "Index of event in block from which it was emitted."
|
|
|
+ indexInBlock: Int!
|
|
|
+
|
|
|
+ ### SPECIFIC DATA ###
|
|
|
+
|
|
|
+ "Related work entry"
|
|
|
+ entry: BountyEntry!
|
|
|
+}
|
|
|
+
|
|
|
type WorkSubmittedEvent implements Event @entity {
|
|
|
### GENERIC DATA ###
|
|
|
|
|
@@ -99,3 +294,51 @@ type WorkSubmittedEvent implements Event @entity {
|
|
|
"Description which contains the work itself as a URL, a BLOB, or just text"
|
|
|
description: String!
|
|
|
}
|
|
|
+
|
|
|
+type OracleJudgmentSubmittedEvent implements Event @entity {
|
|
|
+ ### GENERIC DATA ###
|
|
|
+
|
|
|
+ "(network}-{blockNumber}-{indexInBlock}"
|
|
|
+ id: ID!
|
|
|
+
|
|
|
+ "Hash of the extrinsic which caused the event to be emitted"
|
|
|
+ inExtrinsic: String
|
|
|
+
|
|
|
+ "Blocknumber of the block in which the event was emitted."
|
|
|
+ inBlock: Int!
|
|
|
+
|
|
|
+ "Network the block was produced in"
|
|
|
+ network: Network!
|
|
|
+
|
|
|
+ "Index of event in block from which it was emitted."
|
|
|
+ indexInBlock: Int!
|
|
|
+
|
|
|
+ ### SPECIFIC DATA ###
|
|
|
+
|
|
|
+ "Related bounty"
|
|
|
+ bounty: Bounty!
|
|
|
+}
|
|
|
+
|
|
|
+type WorkEntrantFundsWithdrawnEvent implements Event @entity {
|
|
|
+ ### GENERIC DATA ###
|
|
|
+
|
|
|
+ "(network}-{blockNumber}-{indexInBlock}"
|
|
|
+ id: ID!
|
|
|
+
|
|
|
+ "Hash of the extrinsic which caused the event to be emitted"
|
|
|
+ inExtrinsic: String
|
|
|
+
|
|
|
+ "Blocknumber of the block in which the event was emitted."
|
|
|
+ inBlock: Int!
|
|
|
+
|
|
|
+ "Network the block was produced in"
|
|
|
+ network: Network!
|
|
|
+
|
|
|
+ "Index of event in block from which it was emitted."
|
|
|
+ indexInBlock: Int!
|
|
|
+
|
|
|
+ ### SPECIFIC DATA ###
|
|
|
+
|
|
|
+ "Related work entry"
|
|
|
+ entry: BountyEntry!
|
|
|
+}
|