decodeSet
export function decodeSet<T>(
bytes: BytesLike,
itemDecoder: IndexedDecoder<T> | Decodeable<T>
): T[]
Like a list, but with an optional 258 tag See: https://github.com/Emurgo/cardano-serialization-lib/releases/tag/13.0.0
Type parameters
T
T extends any
Arguments
1. bytes
bytes: BytesLike
2. itemDecoder
itemDecoder: IndexedDecoder<T> | Decodeable<T>
Returns
T[]