Epoch
Represents the period of time for which a rollup claim is made, encapsulating a batch of inputs and its corresponding outputs
type Epoch {
id: ID!
index: Int!
input(
index: Int!
): Input!
inputs(
first: Int
last: Int
after: String
before: String
where: InputFilter
): InputConnection!
vouchers(
first: Int
last: Int
after: String
before: String
where: VoucherFilter
): VoucherConnection!
notices(
first: Int
last: Int
after: String
before: String
where: NoticeFilter
): NoticeConnection!
reports(
first: Int
last: Int
after: String
before: String
where: ReportFilter
): ReportConnection!
}
Fields
id
(ID!
)
Epoch identifier
index
(Int!
)
Epoch index
input
(Input!
)
Get input from this particular epoch given the input's index
inputs
(InputConnection!
)
Get inputs from this particular epoch with support for pagination (filtering not implemented at the moment)
vouchers
(VoucherConnection!
)
Get vouchers from this particular epoch with support for pagination (filtering not implemented at the moment)
notices
(NoticeConnection!
)
Get notices from this particular input with support for pagination (filtering not implemented at the moment)
reports
(ReportConnection!
)
Get reports from this particular epoch with support for pagination (filtering not implemented at the moment)