📄Storage and types overview
Contract typings and storage
Base types
type token_id_t is nat
type pool_id_t is nat
type token_pool_idx_t is nat
type fa12_token_t is address
type fa2_token_t is [@layout:comb] record[
token_address : address;
token_id : token_id_t;
]
type token_t is
| Fa12 of fa12_token_t
| Fa2 of fa2_token_t
type tokens_map_t is map(nat, token_t);Staker accumulator - accumulator of QUIPU staking rewards.
Field
Type
Hint
Description
Fee storage - fee rates record
Field
Type
Hint
Description
Token information type - pool underlying token info
Field
Type
Hint
Description
Pool type - DEX pool storage
Field
Type
Hint
Description
Storage - main contract storage
Field
Type
Hint
Description
Full storage type - storage root
Field
Type
Hint
Description
Last updated