---
title: "Transactions"
description: "Understand the EVM submission and protocol transaction that make up an Intelligent Contract call in GenLayer."
source: https://docs.genlayer.com/understand-genlayer-protocol/core-concepts/transactions
last_updated: 2026-08-19
---

# Transactions

An Intelligent Contract interaction begins as an EVM transaction on GenLayer Chain and creates a protocol transaction managed by the consensus contracts. These are related records with different purposes and finality.

```mermaid
%%{init: {"flowchart": {"curve": "basis", "nodeSpacing": 38, "rankSpacing": 44, "htmlLabels": true}}}%%
flowchart TB
    E(["1 · Sign<br/>EVM request"]) --> G["2 · Queue<br/>GenLayer transaction"]
    G --> V["3 · Execute<br/>and reach consensus"]
    V --> F(["4 · Finalize<br/>contract state"])

    classDef request fill:#F7F8FC,stroke:#8B95A7,color:#202536,stroke-width:1.5px;
    classDef consensus fill:#EFEDFF,stroke:#6D5DF5,color:#251E63,stroke-width:2px;
    classDef success fill:#E9F8F0,stroke:#23966B,color:#123F30,stroke-width:2px;
    class E request;
    class G,V consensus;
    class F success;
    linkStyle default stroke:#7C879C,stroke-width:1.8px;
```

## EVM transaction

The caller signs an Ethereum-compatible transaction addressed to an Intelligent Contract's Ghost or to a consensus deployment function. Inclusion of this transaction confirms that GenLayer Chain received the request. Standard EVM fields include the sender, destination, nonce, value, gas parameters, and encoded calldata.

Ordinary GEN transfers and calls to Solidity contracts can complete entirely on this EVM layer. They do not enter Optimistic Democracy unless they create an Intelligent Contract transaction.

## GenLayer transaction

The consensus contracts assign an Intelligent Contract request its transaction ID and lifecycle state. The record includes:

- the original EVM initiator, immediate sender, and Intelligent Contract recipient;
- encoded contract call or deployment data;
- the activator, committee, leader, and round history;
- execution commitments, equivalence-block outputs, and votes;
- phase timestamps, fee accounting, and appeal bonds; and
- the current protocol status and decided execution result.

The protocol transaction can remain in consensus after the EVM submission is mined. Applications that require the Intelligent Contract outcome must follow the GenLayer transaction until `Finalized`.

## Ordering

Each Intelligent Contract has its own pending and decided queues. Transactions for the same recipient move through the active proposal and voting phases sequentially because later calls can depend on earlier state. Transactions to different recipients can progress independently.

Messages emitted by Intelligent Contracts also create transactions and preserve their dependency on the parent transaction's state and fee allocation.

  - [Transaction types](/understand-genlayer-protocol/core-concepts/transactions/types-of-transactions)
  - [Transaction execution](/understand-genlayer-protocol/core-concepts/transactions/transaction-execution)
  - [Transaction statuses](/understand-genlayer-protocol/core-concepts/transactions/transaction-statuses)
  - [Encoding and signing](/understand-genlayer-protocol/core-concepts/transactions/transaction-encoding-serialization-and-signing)

For the current receipt schema, see [`gen_getTransactionReceipt`](/api-references/genlayer-node/gen/gen_getTransactionReceipt).
