@iyonger/aptos-web3-bip44.js
Version:
Web3 SDK For Aptos
13 lines (10 loc) • 320 B
text/typescript
// Copyright (c) Aptos
// SPDX-License-Identifier: Apache-2.0
export type Seq<T> = T[];
export type Uint8 = number;
export type Uint16 = number;
export type Uint32 = number;
export type Uint64 = bigint;
export type Uint128 = bigint;
export type AnyNumber = bigint | number;
export type Bytes = Uint8Array;