Let func "call" such as: int call((int -> int) f, int x) { return f(x); } But I need to store "f" on smc deployment stage, as initial state. How can I store ...
one year ago
int concat(int x, int y, int y_len) {
return (x << y_len) ^ y;
}