Processes all datums for the selected chain of the network. > [!ATTENTION] warning > - If datum data doesn't satisfy consensus requirements, it will be discarded. > - Function "PROC" is available only for the Root Nodes in the zerochain and Master Nodes in the mainchain. > - This command will process transaction with any comission! Parameter minimum_comission will not be taken into account! You can also use enable auto-processing function in general configuration file - **[[Cellframe Node General Config#Section [mempool|mempool section]]**. ## Request Structure `JSON object:` ```JSON { "method": "mempool", "subcommand": ["proc"], "arguments": { "net": "network_name", "chain": "chain_name" }, "id": "1" } ``` `Parameters:` **`net (network_name)`** - name of the Cellframe Network. The list of networks can be found in the `<Config_dir> \ etc \ network` folder or received using - [[Node Command - NET LIST]] **`chain`** - the name of chain (`main` or `zerochain`) ### Curl Example `Request:` ```actionscript curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d ' { "method": "mempool", "subcommand": ["proc"], "arguments": { "net": "foobar", "chain": "main" }, "id": "1" }' ``` `Response:` ```json { "type": 2, "result": [ "The entire mempool has been processed in foobar.main." ], "errors": null, "id": 1 } ```