Subgraphs
Spoke Entities
enum IntentStatus {
NONE
ADDED # signifies added to the message queue
DISPATCHED # signifies the batch containing the message has been sent
SETTLED # signifies settlement has arrived on spoke domain for intent
SETTLED_AND_MANUALLY_EXECUTED # settlement has arrived & calldata executed
}type OriginIntent @entity {
id: Bytes! # intent id
queueIdx: BigInt!
message: Message
settlement: SpokeSettlement
status: IntentStatus!
initiator: Bytes!
receiver: Bytes!
inputAsset: Bytes!
outputAsset: Bytes!
maxFee: BigInt!
origin: BigInt!
nonce: BigInt!
timestamp: BigInt!
ttl: BigInt!
amount: BigInt!
destinations: [BigInt!]
data: Bytes!
# Add Intent Transaction
addEvent: IntentAddEvent!
}Hub Entities
Solver
Last updated

