📄Storage and types overview
Base types
Storage - main contract storage
Field | Type | Hint | Description |
---|---|---|---|
dev_store |
| ||
init_price |
| Amount of QUIPU tokens to be charged when deploy of DEX called. | |
burn_rate |
| Persent of QUIPU charges to be sent to zero address. | |
pools_count |
| Counter | Amount of pools created by current contract. |
pool_to_address |
| Bytes - packed by | Mapping that allows finding pool address by packed bytes of record with fields |
quipu_token |
| QUIPU token address and token ID | |
quipu_rewards |
| Collected QUIPU tokens from deploy (without sent to zero address). | |
whitelist |
| set of addresses that allowed to deploy without QUIPU charges. |
Full storage type - storage root
Field | Type | Hint | Description |
---|---|---|---|
storage |
| Main configuration and contract values of factory | |
admin_lambdas |
| Administrative lambda-methods storage | |
dex_lambdas |
| DEX stable swap protocol lambda-methods storage | |
token_lambdas |
| FA2 lambda-methods storage | |
init_func |
| lambda function for deploying new DEX |
Last updated