supra-l1-sdk-core
Version:
Core of the Supra-L1-SDK
13 lines (11 loc) • 324 B
text/typescript
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
/**
* All bytes (Vec<u8>) data is represented as hex-encoded string prefixed with `0x` and fulfilled with
* two hex digits per byte.
*
* Unlike the `Address` type, HexEncodedBytes will not trim any zeros.
*
*/
export type HexEncodedBytes = string;