Creates a token declaration datum and places it in the mempool.
`Command syntax:`
```actionscript
token_decl
-net <net_name>
-chain <chain_name>
-token <token_ticker>
-total_supply <total_supply>
-signs_total <sign_total>
-signs_emission <signs_for_emission>
-decimals <18>
-certs <certs_list>
```
`Options:`
```actionscript
-net - name of the Cellframe Network. The list of networks can be found in the <Config_dir> \ etc \ network folder or received by The Cellframe-Node-CLI using command - net list
-chain - name of the chain where token was declared
-token - ticker (name) of the token
-total_supply - maximum sum of all token emissions (in datoshi)
-signs_total - quantity of authorized token signatures
-signs_emission - quantity of authorized token signatures required fot it's emission
-decimals - number accuration after comma (18 by default)
-certs - certificates which is used to sign token (you can use any certificate)
```
### CLI Example
`Command:`
```actionscript
cellframe-node-cli token_decl
-net foobar
-chain zero
-token LLL
-total_supply 1000.0e+18
-signs_total 1
-signs_emission 1
-decimals 18
-certs foobar.root.pvt.0
```
`Response:`
```actionscript
Datum 0xFE3C0D5CEBAB54957121C01C12017164E516D60709B6BE10BC7EE98758BF4429 with token ZZZ is placed in datum pool
```
### JSON-RPC Example
![[JSON-RPC Request - TOKEN DECL]]