@iyonger/aptos-web3-bip44.js
Version:
Web3 SDK For Aptos
13 lines (11 loc) • 316 B
text/typescript
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
/**
* A string containing a 128-bit unsigned integer.
*
* We represent u128 values as a string to ensure compatibility with languages such
* as JavaScript that do not parse u64s in JSON natively.
*
*/
export type U128 = string;