You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 25, 2024. It is now read-only.
In EOSIO ABI generation, std::vector<TYPE> is generally translated into TYPE[] that means contiguous repeat of TYPE, but std::vector specialization for uint8_t, int8_t, char, unsigned char are treated special by being translated into bytes that accepts hex string and convert it into byte sequence.
Since c++17, new type std::byte is supported for storing & accessing byte. Let's translate std::vector<std::byte> into bytes also.