I'm using Midnight and learning compact. I'm hoping to get some clarification on the persistentHash
function (export declare function persistentHash<a>(rt_type: CompactType<a>, value: a): Uint8Array;
) , especially for rt_type
Is this possible to do the same hashing in Compact on the client side? Can persistentHash
be used to do the same thing?
export enum Role {
Owner,
None
};
const roleHash = persistent_hash<Vector<1, Role>>([Role.Owner]);
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743757864a4502086.html
评论列表(0条)