UNPKG

@yubing744/rooch-sdk

Version:
8 lines (6 loc) 239 B
// Copyright (c) RoochNetwork // SPDX-License-Identifier: Apache-2.0 import { Seq } from '../generated/runtime/serde/mod' export function uint8Array2SeqNumber(bytes: Uint8Array): Seq<number> { return Array.from(bytes, (byte) => byte) }