#include <trz/deserialize.h>
extern uint64_t entrypoint(const uint8_t *input) {
TrzAccountInfo ka[2];
TrzParameters params = (TrzParameters) { .ka = ka };
if (!trz_deserialize(input, ¶ms, TRZ_ARRAY_SIZE(ka))) {
return ERROR_INVALID_ARGUMENT;
}
return SUCCESS;
}