Skip to main content
⚠️ This is the beta version of the Sui GraphQL schema. The beta schema will replace the alpha GraphQL schema upon its official release.

EndOfEpochTransaction

System transaction that supersedes ChangeEpochTransaction as the new way to run transactions at the end of an epoch. Behaves similarly to ChangeEpochTransaction but can accommodate other optional transactions to run at the end of the epoch.

type EndOfEpochTransaction {
transactions(
first: Int
after: String
last: Int
before: String
): EndOfEpochTransactionKindConnection!
}

Fields

EndOfEpochTransaction.transactions ● EndOfEpochTransactionKindConnection! non-null object

The list of system transactions that are allowed to run at the end of the epoch.

EndOfEpochTransaction.transactions.first ● Int scalar
EndOfEpochTransaction.transactions.after ● String scalar
EndOfEpochTransaction.transactions.last ● Int scalar
EndOfEpochTransaction.transactions.before ● String scalar

Implemented By

TransactionKind union