Set Token
Select View Methods
manager()
getModules()
getPositions()
/**
* The base definition of a SetToken Position
*
* @param component Address of token in the Position
* @param module If not in default state, the address of associated module
* @param unit Each unit is the # of components per 10^18 of a SetToken
* @param positionState The type of position denoted as a uint8
* @param data Arbitrary data
*/
struct Position {
address component;
address module;
int256 unit;
uint8 positionState;
bytes data;
}getComponents()
getDefaultPositionRealUnit()
getExternalPositionRealUnit()
getTotalComponentRealUnits()
Last updated