WASM does not natively care about integer signage, so uint64 end up being represented as int64 and the bytecode will do thee arithmetic to compensate... which means that often an EOS name like propose will show up as a negative constant in the bytecode.
It would be helpful if the name encoding helper would support this.
WASM does not natively care about integer signage, so
uint64
end up being represented asint64
and the bytecode will do thee arithmetic to compensate... which means that often an EOS name likepropose
will show up as a negative constant in the bytecode.It would be helpful if the name encoding helper would support this.