> ## Documentation Index
> Fetch the complete documentation index at: https://kleros-mintlify-6ebc7975.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Cross-Chain Evidence Standard

> Cross-chain evidence standard: submitting and indexing evidence events on the arbitrable's foreign chain when KlerosCore lives on Arbitrum One.

When disputes are created cross-chain (e.g., Arbitrable on Ethereum, KlerosCore on Arbitrum), evidence can be submitted from the foreign chain. The evidence events are emitted on the foreign chain and indexed by the court frontend.

## Mechanism

Evidence submission for cross-chain disputes follows the same format as same-chain evidence, but the events are emitted on the foreign chain where the Arbitrable contract lives. The court frontend indexes evidence events from both the home chain and supported foreign chains.

## Submitting Evidence Cross-Chain

```solidity theme={null}
// On the foreign chain, through the Arbitrable contract
arbitrableContract.submitEvidence(disputeID, evidenceURI);
```

The evidence URI points to IPFS-hosted evidence JSON following the standard [Evidence Format](/reference/data-formats/evidence-format).
