Сreates an emission datum and places it in the mempool.
## Request Structure
`JSON object:`
```JSON
{
"method": "token_emit",
"subcommand": ["token_emit"],
"arguments": {
"net": "network_name",
"chain_emission": "chain_name",
"emission_value": "datum_hash",
"addr": "addr",
"token": "token_ticker",
"certs": "certs_list"
},
"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_emission`** - the name of chain (`main` or `zerochain`) `optional`
**`emission_value`** - total emission supply in datoshi
**`addr`** - address of the wallet for emission
**`token`** - name of the token
**`certs`** - list of certificates to sign the emission datum
### Curl Example
`Request:`
```actionscript
curl --unix-socket /opt/cellframe-node/var/run/node_cli -X POST http://localhost/connect -d '
{
"method": "token_emit",
"subcommand": ["token_emit"],
"arguments": {
"net": "riemann",
"chain_emission": "zerochain",
"token": "CRINGE",
"emission_value": "1000.0e+18 ",
"addr": "o9z3wUTSTicckJuoznovQRfNbRKv2viuHsUtmmJFockaWLtuCx2BTU7SBMfJRCFwpLo7UnkMkdpX5VsTFBHoRFQzfQpow2S6Ddc713aE",
"certs": "riemann.bridge.pvt.0"
},
"id": "1"
}'
```
`Response:`
```json
{
"type": 2,
"result": [
{
"errors": [
{
"code": 0,
"message": "Datum 0x7217FA1B7254B2EBA0107BE5BBA1FA41223AB4DCD79F8CD457510126EFD9713C with 256bit emission is placed in datum pool"
}
]
}
],
"id": 1
}
```