description: Technical details about Datatoken functions
---
# Datatoken Interface Tech Details
`Datatoken contract interface` is like the superhero that kicks off the action-packed adventure of contract calls! It's here to save the day by empowering us to unleash the mighty powers of dispensers, fixed rate exchanges, and initializing orders. For this page, we present the utilitary functions that embark you on the Ocean journey.
Through datatoken, you can deploy a new dispenser schema which is used for creating free assets, because its behaviour is similar with a faucet. ⛲
It is implemented in DatatokenBase, inherited by Datatoken2, so it can be called within both instances.
**Parameters**
*`tx_dict` - is the configuration `dictionary` for that specific transaction. Usually for `development` we include just the `from` wallet, but for remote networks, you can provide gas fees, required confirmations for that block etc. For more info, check [Brownie docs](https://eth-brownie.readthedocs.io/en/stable/).
*`max_tokens` - maximum amount of tokens to dispense in wei. The default is a large number.
*`max_balance` - maximum balance of requester in wei. The default is a large number.
*`with_mint` - boolean, `true` if we want to allow the dispenser to be a minter as default value
**Returns**
`str`
Return value is a hex string which denotes the transaction hash of dispenser deployment.