UNPKG

libnexa-ts

Version:

A pure and powerful Nexa SDK library.

19 lines (14 loc) 434 B
import type { Network } from "../core/network/network"; export type EndianType = "big" | "little"; /** * Any type that can be used where a numeric value is needed. */ export type Numeric = number | bigint; /** * Any type that can be used where a big number is needed. */ export type BigNumberish = string | Numeric; /** * Any type that can be used where a network is needed. */ export type Networkish = string | Network;