ποΈDAO Storages of parameters and members
DAO Parameter Storage
How it works
enum ParameterType {
NONE,
ADDRESS,
UINT,
STRING,
BYTES,
BOOL
}
struct Parameter {
string name;
bytes value;
ParameterType solidityType;
}Limitations and Considerations
Last updated