Skip to main content

Documentation Index

Fetch the complete documentation index at: https://kleros-mintlify-changelog-2026-05-12-1778458371.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

KlerosGovernor executes governance decisions made through off-chain voting (Snapshot). It uses Kleros arbitration to resolve disputes when multiple competing transaction lists are submitted.

How It Works

  1. Submission Period: Anyone can submit a list of transactions to execute, with a deposit
  2. Approval Period: If only one list is submitted, it’s approved automatically. If multiple lists compete, a dispute is created on Kleros Court
  3. Execution: The approved list’s transactions are executed on-chain

Key Methods

submitList(address[] _targets, uint256[] _values, bytes _data, uint256[] _dataLengths, string _description)

Submit a list of transactions for governance execution.

executeTransactionList(uint256 _listID, uint256 _cursor, uint256 _count)

Execute transactions from an approved list. Can be called in parts for gas management.

executeSubmissions()

Trigger the approval process. If one list: approve it. If multiple: create a dispute.

Parameters

ParameterDescription
submissionBaseDepositBase deposit required per list submission
submissionTimeoutDuration of the submission period
executionTimeoutTime window for executing approved transactions
withdrawTimeoutGrace period for withdrawing execution deposits

Events

EventDescription
SessionCreatedNew governance session started
ListSubmittedTransaction list submitted
RulingDispute resolved, winning list determined
View Source