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
IDs provided by subsquid are long a hard to read, they are composed of mutiple parts separated by dash and each part is zero padded to specific length. Each ID also contains corresponding block hash prefix. The IDs are very subsquid specific so it is not crucial do show them. Instead it would be good to simplify each ID by removing leading zeroes and block hash prefix. So e.g. extrinsinc's ID 0015508835-000001-ae1d7 will become 15508835-1.
The simplified IDs should be used in URLs as well which makes it harder to search entities, because we have to build the original ID first, which is not possible fully because of block hash prefix, but still we can restore a IDs beginning and search by id_startsWith
Notice there are IDs of "sub"-calls like this one 0015508867-000003-71ac3-000001 which doesn't have the block hash prefix at the end so it maked search more complicated but id_endsWith filter helps.
The text was updated successfully, but these errors were encountered:
IDs provided by subsquid are long a hard to read, they are composed of mutiple parts separated by dash and each part is zero padded to specific length. Each ID also contains corresponding block hash prefix. The IDs are very subsquid specific so it is not crucial do show them. Instead it would be good to simplify each ID by removing leading zeroes and block hash prefix. So e.g. extrinsinc's ID
0015508835-000001-ae1d7
will become15508835-1
.The simplified IDs should be used in URLs as well which makes it harder to search entities, because we have to build the original ID first, which is not possible fully because of block hash prefix, but still we can restore a IDs beginning and search by
id_startsWith
Notice there are IDs of "sub"-calls like this one
0015508867-000003-71ac3-000001
which doesn't have the block hash prefix at the end so it maked search more complicated butid_endsWith
filter helps.The text was updated successfully, but these errors were encountered: