Storage and types overview

fa2_type

FieldTypeDescription

token

address

Token's address

id

token_id_type (nat)

Token's identifier

type fa2_type           is [@layout:comb] record [
  token                   : address;
  id                      : token_id_type;
]

storage_type - main contract storage

FieldTypeDescription

minters

set(address)

Set of registered by admin minters

qsgov

QuipuSwap Governance token info (address and token ID)

admin

address

Administrator of the contract

pending_admin

address

Pending administrator that should accept his new administrator role (if it is possible)

type storage_type       is [@layout:comb] record [
  minters                 : set(address);
  qsgov                   : fa2_type;
  admin                   : address;
  pending_admin           : address;
]

Last updated