mukan-consensus/spec/p2p/legacy-docs/messages/mempool.md
Mukan Erkin Törük ef24c0b67e
Some checks are pending
docker-build-cometbft / vars (push) Waiting to run
docker-build-cometbft / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-cometbft / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-cometbft / merge-images (push) Blocked by required conditions
docker-build-e2e-node / vars (push) Waiting to run
docker-build-e2e-node / build-images (amd64, ubuntu-24.04) (push) Blocked by required conditions
docker-build-e2e-node / build-images (arm64, ubuntu-24.04-arm) (push) Blocked by required conditions
docker-build-e2e-node / merge-images (push) Blocked by required conditions
initial: sovereign Mukan Network fork
2026-05-11 03:18:27 +03:00

33 lines
1.1 KiB
Markdown

---
order: 4
---
# Mempool
## Channel
Mempool has one channel. The channel identifier is listed below.
| Name | Number |
|----------------|--------|
| MempoolChannel | 48 |
## Message Types
There is currently only one message that Mempool broadcasts and receives over
the p2p gossip network (via the reactor): `TxsMessage`
### Txs
A list of transactions. These transactions have been checked against the application for validity. This does not mean that the transactions are valid, it is up to the application to check this.
| Name | Type | Description | Field Number |
|------|----------------|----------------------|--------------|
| txs | repeated bytes | List of transactions | 1 |
### Message
Message is a [`oneof` protobuf type](https://developers.google.com/protocol-buffers/docs/proto#oneof). The one of consists of one message [`Txs`](#txs).
| Name | Type | Description | Field Number |
|------|-------------|-----------------------|--------------|
| txs | [Txs](#txs) | List of transactions | 1 |