# Dummy tokenomics contract This contract is an attempt to implement a simple "dummy" tokenomics inside the Desmos chain by using a smart contract and sudo messages. ![dummy-tokenomics-flow](docs/dummy-tokenomics-flow.png) ## Store, instantiate and Interact with the contract on Desmos chain ### Store the contract (if not stored before) ```bash desmos tx wasm store --chain-id --from --gas 1050000 ``` ### Instantiate the contract First you need to get the `code_id` of the previously stored contract. You can check it from the `tx_response` or alternatively by executing the following query: ```bash desmos query wasm list-code ``` Response's example: ```bash code_infos: - creator: desmos1k8u92hx3k33a5vgppkyzq6m4frxx7ewnlkyjrh data_hash: 151EF9413F16C8953EE18FE527692B5DEA142EBF02027C3564852AC874844B7A id: 1 pagination: {} ``` After getting the contract's id you can now instatiate it by doing: ```bash desmos tx wasm instantiate '{"token_denom": ""}' --label --from --chain-id --amount ```