Creates common network decree in the network. Decree will be placed in the `-chain` but it will be apllied in the `-decree-chain` parameter. If they differ, then you have to [[JSON-RPC Request - DECREE ANCHOR|create an anchor]] in the `-decree-chain`. > [!HINT] Important > Only **root nodes** can create and sign decrees. Also, decrees must be placed only in the **zerochain**, even if they are applied in the **mainchain**. ## Request Structure `JSON object:` ```JSON { "method": "decree", "subcommand": ["create","common"], "arguments": { "net": "network_name", "chain": "chain_name", "decree_chain": "decree_chain", "certs": "certs_list", "fee": "net_fee_value", "to_addr": "net_fee_wallet_addr", "new_certs": "new_owners_certs_list", "signs_verify": "value" }, "id": "1" } ``` `Common 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`) `optional` **`decree_chain`** - name of the chain where decree will be applied **`certs`** - list of PoA certificates to sign decree `For fee:` **`fee`** - sets the network fee in datoshi **`to_addr`** - sets the wallet addres for the network fee `New owners certificates:` **`new_certs`** - sets new owners for the network using theirs certificates `Minimal signs required:` **`signs_verify`** - sets the minimum number of owners needed to sign decree ### Curl Example `Request:` ```actionscript curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d ' { "method": "decree", "subcommand": ["create","common"], "arguments": { "net": "riemann", "chain": "zerochain", "decree_chain": "zerochain", "certs": "riemann.root.pvt.0", "signs_verify": "2" }, "id": "1" }' ``` `Response:` ```json { "type": 0, "result": "Datum 0x7933419F0C360011E067FAAB6402DF0FC584FE2A083E54AAE892E959FBF0C169 is placed in datum pool", "id": 1 } ```